Lines Matching refs:JSThread
46 static JSHandle<BigInt> CreateBigint(JSThread *thread, uint32_t size);
52 …static JSHandle<BigInt> BitwiseOp(JSThread *thread, Operate op, JSHandle<BigInt> x, JSHandle<BigIn…
53 static JSHandle<BigInt> BitwiseAND(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
54 static JSHandle<BigInt> BitwiseXOR(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
55 static JSHandle<BigInt> BitwiseOR(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
56 … static JSHandle<BigInt> BitwiseSubOne(JSThread *thread, JSHandle<BigInt> bigint, uint32_t maxLen);
57 static JSHandle<BigInt> BitwiseAddOne(JSThread *thread, JSHandle<BigInt> bigint);
58 static JSHandle<EcmaString> ToString(JSThread *thread, JSHandle<BigInt> bigint,
62 static JSHandle<BigInt> UnaryMinus(JSThread *thread, JSHandle<BigInt> x);
63 static JSHandle<BigInt> BitwiseNOT(JSThread *thread, JSHandle<BigInt> x);
64 …static JSHandle<BigInt> Exponentiate(JSThread *thread, JSHandle<BigInt> base, JSHandle<BigInt> exp…
66 static JSHandle<BigInt> Multiply(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
68 … static JSHandle<BigInt> FormatLeftShift(JSThread *thread, uint32_t shift, JSHandle<BigInt> bigint,
76 …static JSHandle<BigInt> DivideAndRemainderWithBigintDivisor(JSThread *thread, JSHandle<BigInt> div…
79 …static JSHandle<BigInt> DivideAndRemainderWithUint32Divisor(JSThread *thread, JSHandle<BigInt> div…
81 static JSHandle<BigInt> Divide(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
82 static JSHandle<BigInt> Remainder(JSThread *thread, JSHandle<BigInt> n, JSHandle<BigInt> d);
83 static JSHandle<BigInt> BigintAddOne(JSThread *thread, JSHandle<BigInt> x);
84 static JSHandle<BigInt> BigintSubOne(JSThread *thread, JSHandle<BigInt> x);
85 static JSHandle<BigInt> Copy(JSThread *thread, JSHandle<BigInt> x, uint32_t len);
87 static JSHandle<BigInt> Add(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
88 static JSHandle<BigInt> Subtract(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
91 …static JSHandle<BigInt> SignedRightShift(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
92 static JSHandle<BigInt> ReturnIfRightShiftOverMax(JSThread *thread, bool sign);
96 …static JSHandle<BigInt> RightShiftHelper(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
97 static JSTaggedValue UnsignedRightShift(JSThread *thread);
98 static JSHandle<BigInt> LeftShift(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
99 … static JSHandle<BigInt> LeftShiftHelper(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y);
100 …static JSHandle<BigInt> BigintAdd(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y, bool r…
101 …static JSHandle<BigInt> BigintSub(JSThread *thread, JSHandle<BigInt> x, JSHandle<BigInt> y, bool r…
103 static JSTaggedValue NumberToBigInt(JSThread *thread, JSHandle<JSTaggedValue> number);
104 static JSHandle<BigInt> Int32ToBigInt(JSThread *thread, const int &number);
105 static JSHandle<BigInt> Uint32ToBigInt(JSThread *thread, const uint32_t &number);
106 static JSHandle<BigInt> Int64ToBigInt(JSThread *thread, const int64_t &number);
107 static JSHandle<BigInt> Uint64ToBigInt(JSThread *thread, const uint64_t &number);
110 …static void BigIntToInt64(JSThread *thread, JSHandle<JSTaggedValue> bigint, int64_t *cValue, bool …
111 …static void BigIntToUint64(JSThread *thread, JSHandle<JSTaggedValue> bigint, uint64_t *cValue, boo…
112 …static JSHandle<BigInt> CreateBigWords(JSThread *thread, bool sign, uint32_t size, const uint64_t*…
113 …static JSHandle<BigInt> FloorMod(JSThread *thread, JSHandle<BigInt> leftVal, JSHandle<BigInt> righ…
114 static JSTaggedValue AsUintN(JSThread *thread, JSTaggedNumber &bits, JSHandle<BigInt> bigint);
115 static JSTaggedValue AsintN(JSThread *thread, JSTaggedNumber &bits, JSHandle<BigInt> bigint);
118 static JSHandle<BigInt> GetUint64MaxBigint(JSThread *thread);
119 static JSHandle<BigInt> GetInt64MaxBigint(JSThread *thread);
182 static JSHandle<BigInt> SetBigInt(JSThread *thread, const CString &numStr,
185 static JSHandle<BigInt> RightTruncate(JSThread *thread, JSHandle<BigInt> x);