Home
last modified time | relevance | path

Searched refs:bigValue (Results 1 – 4 of 4) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1ObjectIdentifier.java90 BigInteger bigValue = null; in ASN1ObjectIdentifier() local
132 if (bigValue == null) in ASN1ObjectIdentifier()
134 bigValue = BigInteger.valueOf(value); in ASN1ObjectIdentifier()
136 bigValue = bigValue.or(BigInteger.valueOf(b & 0x7f)); in ASN1ObjectIdentifier()
142 bigValue = bigValue.subtract(BigInteger.valueOf(80)); in ASN1ObjectIdentifier()
147 objId.append(bigValue); in ASN1ObjectIdentifier()
148 bigValue = null; in ASN1ObjectIdentifier()
153 bigValue = bigValue.shiftLeft(7); in ASN1ObjectIdentifier()
/external/parameter-framework/upstream/test/test-fixed-point-parameter/
DMain.py89 bigValue = (2 * self._quantum)
93 Decimal(self._lowerAllowedBound) - Decimal(bigValue),
94 Decimal(self._upperAllowedBound) + Decimal(bigValue),
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DTextFormat.java2034 BigInteger bigValue = new BigInteger(numberText, radix); in parseInteger() local
2036 bigValue = bigValue.negate(); in parseInteger()
2042 if (bigValue.bitLength() > 31) { in parseInteger()
2047 if (bigValue.bitLength() > 32) { in parseInteger()
2054 if (bigValue.bitLength() > 63) { in parseInteger()
2059 if (bigValue.bitLength() > 64) { in parseInteger()
2066 result = bigValue.longValue(); in parseInteger()
/external/python/cpython2/Modules/
D_tkinter.c1056 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 …]