Home
last modified time | relevance | path

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

/external/v8/src/objects/
Dbigint.cc36 class MutableBigInt : public FreshlyAllocatedBigInt, class
43 static MaybeHandle<BigInt> MakeImmutable(MaybeHandle<MutableBigInt> maybe);
44 static Handle<BigInt> MakeImmutable(Handle<MutableBigInt> result);
47 static MaybeHandle<MutableBigInt> New(Isolate* isolate, int length,
52 static Handle<MutableBigInt> Copy(Isolate* isolate,
59 static Handle<MutableBigInt> Cast(Handle<FreshlyAllocatedBigInt> bigint) { in Cast()
61 return Handle<MutableBigInt>::cast(bigint); in Cast()
65 static MaybeHandle<MutableBigInt> BitwiseAnd(Isolate* isolate,
68 static MaybeHandle<MutableBigInt> BitwiseXor(Isolate* isolate,
71 static MaybeHandle<MutableBigInt> BitwiseOr(Isolate* isolate,
[all …]
Dbigint.h47 friend class MutableBigInt; variable