Lines Matching refs:MaybeHandle
102 static MaybeHandle<BigInt> BitwiseNot(Isolate* isolate, Handle<BigInt> x);
103 static MaybeHandle<BigInt> Exponentiate(Isolate* isolate, Handle<BigInt> base,
105 static MaybeHandle<BigInt> Multiply(Isolate* isolate, Handle<BigInt> x,
107 static MaybeHandle<BigInt> Divide(Isolate* isolate, Handle<BigInt> x,
109 static MaybeHandle<BigInt> Remainder(Isolate* isolate, Handle<BigInt> x,
111 static MaybeHandle<BigInt> Add(Isolate* isolate, Handle<BigInt> x,
113 static MaybeHandle<BigInt> Subtract(Isolate* isolate, Handle<BigInt> x,
115 static MaybeHandle<BigInt> LeftShift(Isolate* isolate, Handle<BigInt> x,
117 static MaybeHandle<BigInt> SignedRightShift(Isolate* isolate,
120 static MaybeHandle<BigInt> UnsignedRightShift(Isolate* isolate,
126 static MaybeHandle<BigInt> BitwiseAnd(Isolate* isolate, Handle<BigInt> x,
128 static MaybeHandle<BigInt> BitwiseXor(Isolate* isolate, Handle<BigInt> x,
130 static MaybeHandle<BigInt> BitwiseOr(Isolate* isolate, Handle<BigInt> x,
134 static MaybeHandle<BigInt> Increment(Isolate* isolate, Handle<BigInt> x);
135 static MaybeHandle<BigInt> Decrement(Isolate* isolate, Handle<BigInt> x);
153 static MaybeHandle<BigInt> AsUintN(Isolate* isolate, uint64_t n,
158 static MaybeHandle<BigInt> FromWords64(Isolate* isolate, int sign_bit,
175 static MaybeHandle<String> ToString(Isolate* isolate, Handle<BigInt> bigint,
183 static MaybeHandle<BigInt> FromNumber(Isolate* isolate,
187 static MaybeHandle<BigInt> FromObject(Isolate* isolate, Handle<Object> obj);
198 static MaybeHandle<FreshlyAllocatedBigInt> AllocateFor(
211 V8_WARN_UNUSED_RESULT static MaybeHandle<BigInt> FromSerializedDigits(