Home
last modified time | relevance | path

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

/third_party/python/Modules/
D_tkinter.c1033 mp_int bigValue; in asBignumObj() local
1045 mp_init(&bigValue); in asBignumObj()
1046 if (mp_read_radix(&bigValue, hexchars, 16) != MP_OKAY) { in asBignumObj()
1047 mp_clear(&bigValue); in asBignumObj()
1053 bigValue.sign = neg ? MP_NEG : MP_ZPOS; in asBignumObj()
1054 result = Tcl_NewBignumObj(&bigValue); in asBignumObj()
1055 mp_clear(&bigValue); in asBignumObj()
1231 mp_int bigValue; in fromBignumObj() local
1236 if (Tcl_GetBignumFromObj(Tkapp_Interp(tkapp), value, &bigValue) != TCL_OK) in fromBignumObj()
1238 numBytes = mp_unsigned_bin_size(&bigValue); in fromBignumObj()
[all …]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DTextFormat.java2541 BigInteger bigValue = new BigInteger(numberText, radix); in parseInteger() local
2543 bigValue = bigValue.negate(); in parseInteger()
2549 if (bigValue.bitLength() > 31) { in parseInteger()
2554 if (bigValue.bitLength() > 32) { in parseInteger()
2561 if (bigValue.bitLength() > 63) { in parseInteger()
2566 if (bigValue.bitLength() > 64) { in parseInteger()
2573 result = bigValue.longValue(); in parseInteger()