Home
last modified time | relevance | path

Searched refs:MIN_VALUE (Results 1 – 25 of 407) sorted by relevance

12345678910>>...17

/aosp12/art/test/567-checker-builder-intrinsics/src/
H A DTestCompare.java322 expectEquals(0, compareBytes(Byte.MIN_VALUE, Byte.MIN_VALUE)); in testCompareBytes()
357 expectEquals(0, compareShorts(Short.MIN_VALUE, Short.MIN_VALUE)); in testCompareShorts()
415 expectEquals(0, compareInts(Integer.MIN_VALUE, Integer.MIN_VALUE)); in testCompareInts()
441 expectEquals(-1, compareLongs(Long.MIN_VALUE, Long.MIN_VALUE + 1L)); in testCompareLongs()
450 expectEquals(0, compareLongs(Long.MIN_VALUE, Long.MIN_VALUE)); in testCompareLongs()
478 for (long i = Long.MIN_VALUE; i <= Long.MIN_VALUE + 11L; i++) { in testCompareLongs()
503 expectEquals(1, compareByteShort(Byte.MIN_VALUE, Short.MIN_VALUE)); in testCompareByteShort()
565 expectEquals(1, compareByteInt(Byte.MIN_VALUE, Integer.MIN_VALUE)); in testCompareByteInt()
587 expectEquals(-1, compareShortByte(Short.MIN_VALUE, Byte.MIN_VALUE)); in testCompareShortByte()
663 expectEquals(1, compareShortInt(Short.MIN_VALUE, Integer.MIN_VALUE)); in testCompareShortInt()
[all …]
H A DTestSignum.java122 expectEquals(-1, signByte((byte)Byte.MIN_VALUE)); in testSignByte()
132 expectEquals(-1, signShort((short)Short.MIN_VALUE)); in testSignShort()
149 expectEquals(-1, signInt(Integer.MIN_VALUE)); in testSignInt()
166 expectEquals(-1, signLong(Long.MIN_VALUE)); in testSignLong()
188 for (long i = Long.MIN_VALUE; i <= Long.MIN_VALUE + 11L; i++) { in testSignLong()
/aosp12/art/test/432-optimizing-cmp/src/
H A DMain.java30 expectLt(Long.MIN_VALUE, Long.MAX_VALUE); in cmpLong()
31 expectGt(Long.MAX_VALUE, Long.MIN_VALUE); in cmpLong()
39 expectEquals(0, smaliCmpLong(Long.MIN_VALUE, Long.MIN_VALUE)); in cmpLong()
50 expectLt(Float.MIN_VALUE, Float.MAX_VALUE); in cmpFloat()
51 expectGt(Float.MAX_VALUE, Float.MIN_VALUE); in cmpFloat()
64 expectEquals(0, smaliCmpGtFloat(Float.MIN_VALUE, Float.MIN_VALUE)); in cmpFloat()
78 expectEquals(0, smaliCmpLtFloat(Float.MIN_VALUE, Float.MIN_VALUE)); in cmpFloat()
91 expectLt(Double.MIN_VALUE, Double.MAX_VALUE); in cmpDouble()
92 expectGt(Double.MAX_VALUE, Double.MIN_VALUE); in cmpDouble()
105 expectEquals(0, smaliCmpGtDouble(Double.MIN_VALUE, Double.MIN_VALUE)); in cmpDouble()
[all …]
/aosp12/art/test/561-divrem/src/
H A DMain.java40 assertEquals(1, $noinline$divInt(Integer.MIN_VALUE)); in main()
41 assertEquals(0, $noinline$remInt(Integer.MIN_VALUE)); in main()
49 assertEquals(0, $noinline$divInt(Integer.MIN_VALUE + 1)); in main()
50 assertEquals(Integer.MIN_VALUE + 1, $noinline$remInt(Integer.MIN_VALUE + 1)); in main()
61 assertEquals(1L, $noinline$divLong(Long.MIN_VALUE)); in main()
62 assertEquals(0L, $noinline$remLong(Long.MIN_VALUE)); in main()
71 assertEquals(Long.MIN_VALUE + 1, $noinline$remLong(Long.MIN_VALUE + 1)); in main()
78 return value / Integer.MIN_VALUE; in $noinline$divInt()
85 return value % Integer.MIN_VALUE; in $noinline$remInt()
92 return value / Long.MIN_VALUE; in $noinline$divLong()
[all …]
/aosp12/art/test/436-rem-float/src/
H A DMain.java79 expectApproxEquals(0F, $opt$Rem(Float.MIN_VALUE, 1F)); in remFloat()
92 expectApproxEquals(0F, $opt$Rem(Float.MIN_VALUE, Float.MIN_VALUE)); in remFloat()
99 expectApproxEquals(Float.MIN_VALUE, $opt$Rem(Float.MIN_VALUE, Float.MAX_VALUE)); in remFloat()
100 expectApproxEquals(Float.MIN_VALUE, $opt$Rem(Float.MIN_VALUE, Float.MIN_NORMAL)); in remFloat()
101 expectApproxEquals(Float.MIN_VALUE, $opt$Rem(Float.MIN_VALUE, Float.NEGATIVE_INFINITY)); in remFloat()
102 expectApproxEquals(Float.MIN_VALUE, $opt$Rem(Float.MIN_VALUE, Float.POSITIVE_INFINITY)); in remFloat()
187 expectApproxEquals(0D, $opt$Rem(Double.MIN_VALUE, Double.MIN_VALUE)); in remDouble()
194 expectApproxEquals(Double.MIN_VALUE, $opt$Rem(Double.MIN_VALUE, Double.MAX_VALUE)); in remDouble()
195 expectApproxEquals(Double.MIN_VALUE, $opt$Rem(Double.MIN_VALUE, Double.MIN_NORMAL)); in remDouble()
196 expectApproxEquals(Double.MIN_VALUE, $opt$Rem(Double.MIN_VALUE, Double.NEGATIVE_INFINITY)); in remDouble()
[all …]
/aosp12/art/test/411-optimizing-arith/src/
H A DShiftsTest.java51 expectEquals(Integer.MIN_VALUE, $opt$ShlInt(1, 31)); // overflow in testShlInt()
66 expectEquals(7, $opt$ShlInt(7, Integer.MIN_VALUE)); in testShlInt()
99 expectEquals(7L, $opt$ShlLong(7L, Integer.MIN_VALUE)); in testShlLong()
122 expectEquals(-1, $opt$ShrInt(Integer.MIN_VALUE, 31)); in testShrInt()
134 expectEquals(7, $opt$ShrInt(7, Integer.MIN_VALUE)); in testShrInt()
157 expectEquals(-1L, $opt$ShrLong(Long.MIN_VALUE, 63)); in testShrLong()
170 expectEquals(7L, $opt$ShrLong(7L, Integer.MIN_VALUE)); in testShrLong()
186 expectEquals(1, $opt$UShrInt(Integer.MIN_VALUE, 31)); in testUShrInt()
198 expectEquals(7, $opt$UShrInt(7, Integer.MIN_VALUE)); in testUShrInt()
221 expectEquals(1L, $opt$UShrLong(Long.MIN_VALUE, 63)); in testUShrLong()
[all …]
H A DRemTest.java43 expectEquals(0, $opt$Rem(Integer.MIN_VALUE, 1)); in remInt()
50 expectEquals(0, $opt$Rem(0, Integer.MIN_VALUE)); in remInt()
56 expectDivisionByZero(Integer.MIN_VALUE); in remInt()
78 expectEquals(0L, $opt$Rem(Long.MIN_VALUE, 1L)); in remLong()
80 expectEquals(-1L, $opt$Rem(Long.MIN_VALUE, Long.MAX_VALUE)); in remLong()
85 expectEquals(0L, $opt$Rem(0L, Long.MIN_VALUE)); in remLong()
91 expectDivisionByZero(Long.MIN_VALUE); in remLong()
98 expectEquals(0, $noinline$RemLoaded1(Integer.MIN_VALUE)); in remLong()
105 expectEquals(0, $noinline$RemLoadedN1(Integer.MIN_VALUE)); in remLong()
112 expectEquals(0L, $noinline$RemLoaded1(Long.MIN_VALUE)); in remLong()
[all …]
H A DDivTest.java119 expectEquals(Integer.MIN_VALUE, $opt$Div(Integer.MIN_VALUE, -1)); // overflow in divInt()
120 expectEquals(-1073741824, $opt$Div(Integer.MIN_VALUE, 2)); in divInt()
123 expectEquals(0, $opt$Div(0, Integer.MIN_VALUE)); in divInt()
128 expectDivisionByZero(Integer.MIN_VALUE); in divInt()
142 expectEquals(2147483648L, $opt$Div(Integer.MIN_VALUE, -1L)); in divLong()
143 expectEquals(-1073741824L, $opt$Div(Integer.MIN_VALUE, 2L)); in divLong()
146 expectEquals(Long.MIN_VALUE, $opt$Div(Long.MIN_VALUE, -1L)); // overflow in divLong()
152 expectEquals(0L, $opt$Div(0L, Long.MIN_VALUE)); in divLong()
157 expectDivisionByZero(Long.MIN_VALUE); in divLong()
185 expectEquals(Float.POSITIVE_INFINITY, $opt$Div(Float.MAX_VALUE, Float.MIN_VALUE)); in divFloat()
[all …]
H A DNegTest.java136 assertEquals(-Float.MIN_VALUE, $opt$noinline$NegFloat(Float.MIN_VALUE)); in negFloat()
137 assertEquals(Float.MIN_VALUE, $opt$noinline$NegFloat(-Float.MIN_VALUE)); in negFloat()
161 assertEquals(-Double.MIN_VALUE, $opt$noinline$NegDouble(Double.MIN_VALUE)); in negDouble()
162 assertEquals(Double.MIN_VALUE, $opt$noinline$NegDouble(-Double.MIN_VALUE)); in negDouble()
/aosp12/art/test/082-inline-execute/src/
H A DMain.java472 Assert.assertEquals(Math.abs(Integer.MIN_VALUE), Integer.MIN_VALUE);
483 Assert.assertEquals(Math.abs(Long.MIN_VALUE), Long.MIN_VALUE);
494 Assert.assertEquals(Math.min(Integer.MIN_VALUE, 0), Integer.MIN_VALUE);
514 Assert.assertEquals(Math.min(Long.MIN_VALUE, 0L), Long.MIN_VALUE);
542 Assert.assertEquals(Math.min(Float.MIN_VALUE, Float.MIN_VALUE), Float.MIN_VALUE);
558 Assert.assertEquals(Math.max(Float.MIN_VALUE, 0.0f), Float.MIN_VALUE);
559 Assert.assertEquals(Math.max(Float.MIN_VALUE, Float.MIN_VALUE), Float.MIN_VALUE);
576 Assert.assertEquals(Math.min(Double.MIN_VALUE, Double.MIN_VALUE), Double.MIN_VALUE);
590 Assert.assertEquals(Math.max(Double.MIN_VALUE, 0.0d), Double.MIN_VALUE);
594 Assert.assertEquals(Math.max(Double.MIN_VALUE, Double.MIN_VALUE), Double.MIN_VALUE);
[all …]
/aosp12/art/test/411-checker-hdiv-hrem-pow2/src/
H A DDivTest.java47 expectEquals(0xc0000000, $noinline$IntDivBy2(Integer.MIN_VALUE)); in divInt()
83 expectEquals(0xc0000000, $noinline$IntAbsDivBy2(Integer.MIN_VALUE)); in divInt()
133 expectEquals(0xf8000000, $noinline$IntDivBy16(Integer.MIN_VALUE)); in divInt()
182 expectEquals(1, $noinline$IntDivByIntMin(Integer.MIN_VALUE)); in divInt()
188 expectEquals(1, $noinline$IntAbsDivByIntMin(Integer.MIN_VALUE)); in divInt()
369 int r = v / Integer.MIN_VALUE; in $noinline$IntDivByIntMin()
382 int r = Math.abs(v) / Integer.MIN_VALUE; in $noinline$IntAbsDivByIntMin()
517 expectEquals(1L, $noinline$LongDivByLongMin(Long.MIN_VALUE)); in divLong()
523 expectEquals(1L, $noinline$LongAbsDivByLongMin(Long.MIN_VALUE)); in divLong()
610 long r = v / Long.MIN_VALUE; in $noinline$LongDivByLongMin()
[all …]
H A DRemTest.java42 expectEquals(0, $noinline$IntMod2(Integer.MIN_VALUE)); in remInt()
55 expectEquals(0, $noinline$IntModMinus2(Integer.MIN_VALUE)); in remInt()
68 expectEquals(0, $noinline$IntAbsMod2(Integer.MIN_VALUE)); in remInt()
109 expectEquals(0, $noinline$IntMod16(Integer.MIN_VALUE)); in remInt()
133 expectEquals(0, $noinline$IntAbsMod16(Integer.MIN_VALUE)); in remInt()
498 int r = v % Integer.MIN_VALUE; in $noinline$IntModIntMin()
510 int r = Math.abs(v) % Integer.MIN_VALUE; in $noinline$IntAbsModIntMin()
528 expectEquals(0L, $noinline$LongMod2(Long.MIN_VALUE)); in remLong()
587 expectEquals(0L, $noinline$LongMod16(Long.MIN_VALUE)); in remLong()
795 long r = v % Long.MIN_VALUE; in $noinline$LongModLongMin()
[all …]
/aosp12/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
H A DCredentialsTest.java39 cred = new Credentials(Integer.MIN_VALUE, Integer.MIN_VALUE, Integer.MIN_VALUE); in testCredentials()
40 assertEquals(Integer.MIN_VALUE, cred.getGid()); in testCredentials()
41 assertEquals(Integer.MIN_VALUE, cred.getPid()); in testCredentials()
42 assertEquals(Integer.MIN_VALUE, cred.getUid()); in testCredentials()
/aosp12/art/test/952-invoke-custom/src/
H A DTestReturnValues.java147 return Long.MIN_VALUE; in passThroughCallSite()
210 byte[] values = {Byte.MIN_VALUE, Byte.MAX_VALUE}; in testByteReturnValues()
218 Character.MIN_VALUE, in testCharReturnValues()
230 Double.MIN_VALUE, in testDoubleReturnValues()
244 Float.MIN_VALUE, in testFloatReturnValues()
257 int[] values = {Integer.MIN_VALUE, Integer.MAX_VALUE, Integer.SIZE, -Integer.SIZE}; in testIntReturnValues()
285 Short.MIN_VALUE, Short.MAX_VALUE, (short) Short.SIZE, (short) -Short.SIZE in testShortReturnValues()
293 long l = Long.MIN_VALUE; in testVoidReturnValues()
294 double d = Double.MIN_VALUE; in testVoidReturnValues()
296 assertEquals(Long.MIN_VALUE, l); in testVoidReturnValues()
[all …]
/aosp12/art/test/015-switch/src/
H A DMain.java96 case Integer.MIN_VALUE: in packedSwitch5()
98 case Integer.MIN_VALUE + 1: in packedSwitch5()
108 case Integer.MIN_VALUE: in packedSwitch6()
325 case Integer.MIN_VALUE: in sparseSwitch5()
327 case Integer.MIN_VALUE + 2: in sparseSwitch5()
381 packedSwitch(Integer.MIN_VALUE); in main()
388 packedSwitch2(Integer.MIN_VALUE); in main()
395 packedSwitch3(Integer.MIN_VALUE); in main()
405 for (int i = Integer.MIN_VALUE; i < Integer.MIN_VALUE + 2; i++) { in main()
424 sparseSwitch(Integer.MIN_VALUE); in main()
[all …]
/aosp12/art/test/580-crc32/src/
H A DMain.java75 assertEqual(0xD202EF8DL, CRC32Byte(Integer.MIN_VALUE)); in TestCRC32Update()
276 CRC32BytesUsingUpdateInt(0, -1, Byte.MIN_VALUE, Byte.MAX_VALUE), in TestCRC32UpdateBytes()
277 CRC32ByteArray(new byte[] {0, -1, Byte.MIN_VALUE, Byte.MAX_VALUE})); in TestCRC32UpdateBytes()
279 CRC32BytesUsingUpdateInt(0, -1, Byte.MIN_VALUE, Byte.MAX_VALUE), in TestCRC32UpdateBytes()
280 CRC32ByteArray(new byte[] {0, -1, Byte.MIN_VALUE, Byte.MAX_VALUE}, 0, 4)); in TestCRC32UpdateBytes()
293 CRC32BytesUsingUpdateInt(0, -1, Byte.MIN_VALUE, Byte.MAX_VALUE), in TestCRC32UpdateBytes()
307 CRC32BytesUsingUpdateInt(0, -1, Byte.MIN_VALUE, Byte.MAX_VALUE), in TestCRC32UpdateBytes()
376 CRC32BytesUsingUpdateInt(0, -1, Byte.MIN_VALUE, Byte.MAX_VALUE), in TestCRC32UpdateByteBuffer()
462 CRC32BytesUsingUpdateInt(0, -1, Byte.MIN_VALUE, Byte.MAX_VALUE), in TestCRC32UpdateDirectByteBuffer()
476 CRC32BytesUsingUpdateInt(0, -1, Byte.MIN_VALUE, Byte.MAX_VALUE), in TestCRC32UpdateDirectByteBuffer()
[all …]
/aosp12/frameworks/base/tests/ProtoInputStreamTests/src/com/android/test/protoinputstream/
H A DProtoInputStreamFixed64Test.java123 assertEquals(Integer.MIN_VALUE, results[3]); in testRead()
125 assertEquals(Long.MIN_VALUE, results[5]); in testRead()
136 testReadCompat(Integer.MIN_VALUE); in testReadCompat()
138 testReadCompat(Long.MIN_VALUE); in testReadCompat()
297 assertEquals(Integer.MIN_VALUE, results[3][0]); in testRepeated()
298 assertEquals(Integer.MIN_VALUE, results[3][1]); in testRepeated()
301 assertEquals(Long.MIN_VALUE, results[5][0]); in testRepeated()
302 assertEquals(Long.MIN_VALUE, results[5][1]); in testRepeated()
468 assertEquals(Integer.MIN_VALUE, results[3][0]); in testPacked()
472 assertEquals(Long.MIN_VALUE, results[5][0]); in testPacked()
[all …]
H A DProtoInputStreamInt64Test.java121 assertEquals(Integer.MIN_VALUE, results[3]); in testRead()
123 assertEquals(Long.MIN_VALUE, results[5]); in testRead()
134 testReadCompat(Integer.MIN_VALUE); in testReadCompat()
136 testReadCompat(Long.MIN_VALUE); in testReadCompat()
289 assertEquals(Integer.MIN_VALUE, results[3][0]); in testRepeated()
290 assertEquals(Integer.MIN_VALUE, results[3][1]); in testRepeated()
293 assertEquals(Long.MIN_VALUE, results[5][0]); in testRepeated()
294 assertEquals(Long.MIN_VALUE, results[5][1]); in testRepeated()
466 assertEquals(Integer.MIN_VALUE, results[3][0]); in testPacked()
470 assertEquals(Long.MIN_VALUE, results[5][0]); in testPacked()
[all …]
H A DProtoInputStreamSFixed64Test.java123 assertEquals(Integer.MIN_VALUE, results[3]); in testRead()
125 assertEquals(Long.MIN_VALUE, results[5]); in testRead()
136 testReadCompat(Integer.MIN_VALUE); in testReadCompat()
138 testReadCompat(Long.MIN_VALUE); in testReadCompat()
297 assertEquals(Integer.MIN_VALUE, results[3][0]); in testRepeated()
298 assertEquals(Integer.MIN_VALUE, results[3][1]); in testRepeated()
301 assertEquals(Long.MIN_VALUE, results[5][0]); in testRepeated()
302 assertEquals(Long.MIN_VALUE, results[5][1]); in testRepeated()
468 assertEquals(Integer.MIN_VALUE, results[3][0]); in testPacked()
472 assertEquals(Long.MIN_VALUE, results[5][0]); in testPacked()
[all …]
H A DProtoInputStreamSInt64Test.java118 assertEquals(Integer.MIN_VALUE, results[3]); in testRead()
120 assertEquals(Long.MIN_VALUE, results[5]); in testRead()
131 testReadCompat(Integer.MIN_VALUE); in testReadCompat()
133 testReadCompat(Long.MIN_VALUE); in testReadCompat()
282 assertEquals(Integer.MIN_VALUE, results[3][0]); in testRepeated()
283 assertEquals(Integer.MIN_VALUE, results[3][1]); in testRepeated()
286 assertEquals(Long.MIN_VALUE, results[5][0]); in testRepeated()
287 assertEquals(Long.MIN_VALUE, results[5][1]); in testRepeated()
443 assertEquals(Integer.MIN_VALUE, results[3][0]); in testPacked()
447 assertEquals(Long.MIN_VALUE, results[5][0]); in testPacked()
[all …]
H A DProtoInputStreamUInt64Test.java120 assertEquals(Integer.MIN_VALUE, results[3]); in testRead()
122 assertEquals(Long.MIN_VALUE, results[5]); in testRead()
133 testReadCompat(Integer.MIN_VALUE); in testReadCompat()
135 testReadCompat(Long.MIN_VALUE); in testReadCompat()
287 assertEquals(Integer.MIN_VALUE, results[3][0]); in testRepeated()
288 assertEquals(Integer.MIN_VALUE, results[3][1]); in testRepeated()
291 assertEquals(Long.MIN_VALUE, results[5][0]); in testRepeated()
292 assertEquals(Long.MIN_VALUE, results[5][1]); in testRepeated()
462 assertEquals(Integer.MIN_VALUE, results[3][0]); in testPacked()
466 assertEquals(Long.MIN_VALUE, results[5][0]); in testPacked()
[all …]
/aosp12/art/test/458-checker-instruct-simplification/src/
H A DMain.java2632 assertIntEquals(Integer.MIN_VALUE, $noinline$intToDoubleToInt(Integer.MIN_VALUE)); in main()
2636 assertIntEquals(Byte.MIN_VALUE, $noinline$byteToDoubleToInt(Byte.MIN_VALUE)); in main()
2641 assertIntEquals(Byte.MIN_VALUE, $noinline$byteToDoubleToShort(Byte.MIN_VALUE)); in main()
2644 assertIntEquals(Character.MIN_VALUE, $noinline$charToDoubleToShort(Character.MIN_VALUE)); in main()
2651 assertDoubleEquals(0.0, $noinline$longToIntToDouble(Long.MIN_VALUE)); in main()
2655 assertLongEquals(0L, $noinline$longToIntToLong(Long.MIN_VALUE)); in main()
2658 assertIntEquals(Short.MIN_VALUE, $noinline$shortToCharToShort(Short.MIN_VALUE)); in main()
2661 assertIntEquals(Short.MIN_VALUE, $noinline$shortToLongToInt(Short.MIN_VALUE)); in main()
2665 assertIntEquals(0, $noinline$shortToCharToByte(Short.MIN_VALUE)); in main()
2678 assertIntEquals(0, $noinline$longAnd0xffToByte(Long.MIN_VALUE)); in main()
[all …]
/aosp12/art/test/530-checker-loops2/src/
H A DMain.java204 for (int i = Integer.MIN_VALUE + 10, k = 0; i > Integer.MIN_VALUE; i--) { in justRightDown1()
219 for (int i = Integer.MIN_VALUE + 10; i > Integer.MIN_VALUE; i--) { in justRightDown2()
234 for (int i = Integer.MIN_VALUE + 10, k = 0; i >= Integer.MIN_VALUE + 1; i--) { in justRightDown3()
252 for (int i = Integer.MIN_VALUE + 9, k = 0; i >= Integer.MIN_VALUE; i--) { in justOOBDown()
330 for (int i = Integer.MIN_VALUE + 5; i <= Integer.MIN_VALUE + 10; i++) { in justRightTriangular1()
331 for (int j = Integer.MIN_VALUE + 4; j < i - 5; j++) { in justRightTriangular1()
332 sResult += a[j - (Integer.MIN_VALUE + 4)]; in justRightTriangular1()
345 for (int i = Integer.MIN_VALUE + 5; i <= 10; i++) { in justRightTriangular2()
362 for (int i = Integer.MIN_VALUE + 4; i <= 10; i++) { in justOOBTriangular()
/aosp12/packages/modules/GeoTZ/s2storage/src/test/java/com/android/timezone/location/storage/io/
H A DTypedStreamsTest.java44 tos.writeChar(Character.MIN_VALUE); in writeReadOk()
54 tos.writeByte(Byte.MIN_VALUE); in writeReadOk()
81 assertEquals(Character.MIN_VALUE, tis.readChar()); in writeReadOk()
91 assertEquals(Byte.MIN_VALUE, tis.readSignedByte()); in writeReadOk()
193 assertThrows(IllegalArgumentException.class, () -> tos.writeByte(Byte.MIN_VALUE - 1)); in writeBoundChecks()
196 assertThrows(IllegalArgumentException.class, () -> tos.writeChar(Character.MIN_VALUE - 1)); in writeBoundChecks()
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/hotspot2/
H A DPasspointConfiguration.java200 private int mUpdateIdentifier = Integer.MIN_VALUE;
219 private int mCredentialPriority = Integer.MIN_VALUE;
239 private long mSubscriptionCreationTimeInMillis = Long.MIN_VALUE;
259 private long mSubscriptionExpirationTimeMillis = Long.MIN_VALUE;
320 private long mUsageLimitStartTimeInMillis = Long.MIN_VALUE;
340 private long mUsageLimitDataLimit = Long.MIN_VALUE;
358 private long mUsageLimitTimeLimitInMinutes = Long.MIN_VALUE;
817 mSubscriptionCreationTimeInMillis != Long.MIN_VALUE in toString()
820 mSubscriptionExpirationTimeMillis != Long.MIN_VALUE in toString()
896 if (mUpdateIdentifier == Integer.MIN_VALUE) { in validateForR2()
[all …]

12345678910>>...17