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.java89 BigInteger bigValue = null; in ASN1ObjectIdentifier() local
131 if (bigValue == null) in ASN1ObjectIdentifier()
133 bigValue = BigInteger.valueOf(value); in ASN1ObjectIdentifier()
135 bigValue = bigValue.or(BigInteger.valueOf(b & 0x7f)); in ASN1ObjectIdentifier()
141 bigValue = bigValue.subtract(BigInteger.valueOf(80)); in ASN1ObjectIdentifier()
146 objId.append(bigValue); in ASN1ObjectIdentifier()
147 bigValue = null; in ASN1ObjectIdentifier()
152 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/src/main/java/com/google/protobuf/
DTextFormat.java1947 BigInteger bigValue = new BigInteger(numberText, radix);
1949 bigValue = bigValue.negate();
1955 if (bigValue.bitLength() > 31) {
1960 if (bigValue.bitLength() > 32) {
1967 if (bigValue.bitLength() > 63) {
1972 if (bigValue.bitLength() > 64) {
1979 result = bigValue.longValue();
/external/opencv3/modules/ts/src/
Dts_perf.cpp90 const int bigValue = 0x00000FFF; in randu() local
100 float minmax[] = {-bigValue, bigValue}; in randu()
107 double minmax[] = {-bigValue, bigValue}; in randu()