Searched refs:bigValue (Results 1 – 2 of 2) sorted by relevance
1033 mp_int bigValue; in asBignumObj() local1045 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() local1236 if (Tcl_GetBignumFromObj(Tkapp_Interp(tkapp), value, &bigValue) != TCL_OK) in fromBignumObj()1238 numBytes = mp_unsigned_bin_size(&bigValue); in fromBignumObj()[all …]
2541 BigInteger bigValue = new BigInteger(numberText, radix); in parseInteger() local2543 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()