Searched refs:bigValue (Results 1 – 8 of 8) sorted by relevance
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/selects/ |
D | SelectMemoryLeakStressTest.kt | 21 val bigValue = bigValue() // new instance in <lambda>() constant 24 println("Capture big value into this lambda: $bigValue") in <lambda>() 42 val bigValue = bigValue() // new instance in <lambda>() constant 45 println("Capture big value into this lambda: $bigValue") in <lambda>() 58 private fun bigValue(): ByteArray = ByteArray(4096) in <lambda>() method in kotlinx.coroutines.selects.SelectMemoryLeakStressTest
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
D | ASN1ObjectIdentifier.java | 95 BigInteger bigValue = null; in ASN1ObjectIdentifier() local 137 if (bigValue == null) in ASN1ObjectIdentifier() 139 bigValue = BigInteger.valueOf(value); in ASN1ObjectIdentifier() 141 bigValue = bigValue.or(BigInteger.valueOf(b & 0x7f)); in ASN1ObjectIdentifier() 147 bigValue = bigValue.subtract(BigInteger.valueOf(80)); in ASN1ObjectIdentifier() 152 objId.append(bigValue); in ASN1ObjectIdentifier() 153 bigValue = null; in ASN1ObjectIdentifier() 158 bigValue = bigValue.shiftLeft(7); in ASN1ObjectIdentifier()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/ |
D | ASN1ObjectIdentifier.java | 97 BigInteger bigValue = null; in ASN1ObjectIdentifier() local 139 if (bigValue == null) in ASN1ObjectIdentifier() 141 bigValue = BigInteger.valueOf(value); in ASN1ObjectIdentifier() 143 bigValue = bigValue.or(BigInteger.valueOf(b & 0x7f)); in ASN1ObjectIdentifier() 149 bigValue = bigValue.subtract(BigInteger.valueOf(80)); in ASN1ObjectIdentifier() 154 objId.append(bigValue); in ASN1ObjectIdentifier() 155 bigValue = null; in ASN1ObjectIdentifier() 160 bigValue = bigValue.shiftLeft(7); in ASN1ObjectIdentifier()
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/ |
D | ASN1ObjectIdentifier.java | 97 BigInteger bigValue = null; in ASN1ObjectIdentifier() local 139 if (bigValue == null) in ASN1ObjectIdentifier() 141 bigValue = BigInteger.valueOf(value); in ASN1ObjectIdentifier() 143 bigValue = bigValue.or(BigInteger.valueOf(b & 0x7f)); in ASN1ObjectIdentifier() 149 bigValue = bigValue.subtract(BigInteger.valueOf(80)); in ASN1ObjectIdentifier() 154 objId.append(bigValue); in ASN1ObjectIdentifier() 155 bigValue = null; in ASN1ObjectIdentifier() 160 bigValue = bigValue.shiftLeft(7); in ASN1ObjectIdentifier()
|
/external/parameter-framework/upstream/test/test-fixed-point-parameter/ |
D | Main.py | 89 bigValue = (2 * self._quantum) 93 Decimal(self._lowerAllowedBound) - Decimal(bigValue), 94 Decimal(self._upperAllowedBound) + Decimal(bigValue),
|
/external/python/cpython3/Modules/ |
D | _tkinter.c | 976 mp_int bigValue; in asBignumObj() local 988 mp_init(&bigValue); in asBignumObj() 989 if (mp_read_radix(&bigValue, hexchars, 16) != MP_OKAY) { in asBignumObj() 990 mp_clear(&bigValue); in asBignumObj() 996 bigValue.sign = neg ? MP_NEG : MP_ZPOS; in asBignumObj() 997 result = Tcl_NewBignumObj(&bigValue); in asBignumObj() 998 mp_clear(&bigValue); in asBignumObj() 1174 mp_int bigValue; in fromBignumObj() local 1179 if (Tcl_GetBignumFromObj(Tkapp_Interp(tkapp), value, &bigValue) != TCL_OK) in fromBignumObj() 1181 numBytes = mp_unsigned_bin_size(&bigValue); in fromBignumObj() [all …]
|
/external/python/cpython2/Modules/ |
D | _tkinter.c | 1056 mp_int bigValue; in asBignumObj() local 1068 mp_init(&bigValue); in asBignumObj() 1069 if (mp_read_radix(&bigValue, hexchars, 16) != MP_OKAY) { in asBignumObj() 1070 mp_clear(&bigValue); in asBignumObj() 1076 bigValue.sign = neg ? MP_NEG : MP_ZPOS; in asBignumObj() 1077 result = Tcl_NewBignumObj(&bigValue); in asBignumObj() 1078 mp_clear(&bigValue); in asBignumObj() 1260 mp_int bigValue; in fromBignumObj() local 1265 if (Tcl_GetBignumFromObj(Tkapp_Interp(tkapp), value, &bigValue) != TCL_OK) in fromBignumObj() 1267 numBytes = mp_unsigned_bin_size(&bigValue); in fromBignumObj() [all …]
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | TextFormat.java | 2288 BigInteger bigValue = new BigInteger(numberText, radix); in parseInteger() local 2290 bigValue = bigValue.negate(); in parseInteger() 2296 if (bigValue.bitLength() > 31) { in parseInteger() 2301 if (bigValue.bitLength() > 32) { in parseInteger() 2308 if (bigValue.bitLength() > 63) { in parseInteger() 2313 if (bigValue.bitLength() > 64) { in parseInteger() 2320 result = bigValue.longValue(); in parseInteger()
|