Lines Matching refs:Handle
155 static Handle<BigInt> UnaryMinus(Isolate* isolate, Handle<BigInt> x);
156 static MaybeHandle<BigInt> BitwiseNot(Isolate* isolate, Handle<BigInt> x);
157 static MaybeHandle<BigInt> Exponentiate(Isolate* isolate, Handle<BigInt> base,
158 Handle<BigInt> exponent);
159 static MaybeHandle<BigInt> Multiply(Isolate* isolate, Handle<BigInt> x,
160 Handle<BigInt> y);
161 static MaybeHandle<BigInt> Divide(Isolate* isolate, Handle<BigInt> x,
162 Handle<BigInt> y);
163 static MaybeHandle<BigInt> Remainder(Isolate* isolate, Handle<BigInt> x,
164 Handle<BigInt> y);
165 static MaybeHandle<BigInt> Add(Isolate* isolate, Handle<BigInt> x,
166 Handle<BigInt> y);
167 static MaybeHandle<BigInt> Subtract(Isolate* isolate, Handle<BigInt> x,
168 Handle<BigInt> y);
169 static MaybeHandle<BigInt> LeftShift(Isolate* isolate, Handle<BigInt> x,
170 Handle<BigInt> y);
172 Handle<BigInt> x,
173 Handle<BigInt> y);
175 Handle<BigInt> x,
176 Handle<BigInt> y);
178 static ComparisonResult CompareToBigInt(Handle<BigInt> x, Handle<BigInt> y);
180 static MaybeHandle<BigInt> BitwiseAnd(Isolate* isolate, Handle<BigInt> x,
181 Handle<BigInt> y);
182 static MaybeHandle<BigInt> BitwiseXor(Isolate* isolate, Handle<BigInt> x,
183 Handle<BigInt> y);
184 static MaybeHandle<BigInt> BitwiseOr(Isolate* isolate, Handle<BigInt> x,
185 Handle<BigInt> y);
188 static MaybeHandle<BigInt> Increment(Isolate* isolate, Handle<BigInt> x);
189 static MaybeHandle<BigInt> Decrement(Isolate* isolate, Handle<BigInt> x);
199 static Maybe<bool> EqualToString(Isolate* isolate, Handle<BigInt> x,
200 Handle<String> y);
201 static bool EqualToNumber(Handle<BigInt> x, Handle<Object> y);
203 Handle<BigInt> x,
204 Handle<String> y);
205 static ComparisonResult CompareToNumber(Handle<BigInt> x, Handle<Object> y);
207 V8_EXPORT_PRIVATE static ComparisonResult CompareToDouble(Handle<BigInt> x,
210 static Handle<BigInt> AsIntN(Isolate* isolate, uint64_t n, Handle<BigInt> x);
212 Handle<BigInt> x);
214 V8_EXPORT_PRIVATE static Handle<BigInt> FromInt64(Isolate* isolate,
216 static Handle<BigInt> FromUint64(Isolate* isolate, uint64_t n);
232 static MaybeHandle<String> ToString(Isolate* isolate, Handle<BigInt> bigint,
238 static Handle<Object> ToNumber(Isolate* isolate, Handle<BigInt> x);
242 Isolate* isolate, Handle<Object> number);
245 static MaybeHandle<BigInt> FromObject(Isolate* isolate, Handle<Object> obj);
257 static Handle<BigInt> Zero(