Home
last modified time | relevance | path

Searched refs:FreshlyAllocatedBigInt (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dbigint.h115 class FreshlyAllocatedBigInt : public BigIntBase {
128 inline static FreshlyAllocatedBigInt cast(Object object);
129 inline static FreshlyAllocatedBigInt unchecked_cast(Object o) { in unchecked_cast()
130 return bit_cast<FreshlyAllocatedBigInt>(o); in unchecked_cast()
146 OBJECT_CONSTRUCTORS(FreshlyAllocatedBigInt, BigIntBase);
Dobjects-inl.h481 OBJECT_CONSTRUCTORS_IMPL(FreshlyAllocatedBigInt, BigIntBase) in OBJECT_CONSTRUCTORS_IMPL()
1254 FreshlyAllocatedBigInt FreshlyAllocatedBigInt::cast(Object object) { in cast()
1256 return FreshlyAllocatedBigInt(object.ptr()); in cast()
Dbigint.cc44 class MutableBigInt : public FreshlyAllocatedBigInt {
71 static Handle<MutableBigInt> Cast(Handle<FreshlyAllocatedBigInt> bigint) { in Cast()
143 OBJECT_CONSTRUCTORS(MutableBigInt, FreshlyAllocatedBigInt);
146 OBJECT_CONSTRUCTORS_IMPL(MutableBigInt, FreshlyAllocatedBigInt) in OBJECT_CONSTRUCTORS_IMPL() argument
/third_party/node/deps/v8/src/heap/
Dfactory-base.h24 class FreshlyAllocatedBigInt; variable
245 Handle<FreshlyAllocatedBigInt> NewBigInt( in EXPORT_TEMPLATE_DECLARE()
Dfactory-base.cc808 Handle<FreshlyAllocatedBigInt> FactoryBase<Impl>::NewBigInt( in NewBigInt()
817 FreshlyAllocatedBigInt bigint = FreshlyAllocatedBigInt::cast(result); in NewBigInt()
Dfactory.h46 class FreshlyAllocatedBigInt; variable