Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/builtins/
Dbuiltins-data-view-gen.h42 BigInt::LengthBits::encode(digits))); in DataViewEncodeBigIntBits()
47 return DecodeWord32<BigIntBase::LengthBits>(bitfield); in DataViewDecodeBigIntLength()
Dbuiltins-bigint-gen.h22 Signed(DecodeWord32<BigIntBase::LengthBits>(bitfield))); in ReadBigIntLength()
35 Int32Constant(BigIntBase::LengthBits::kShift)), in WriteBigIntSignAndLength()
/third_party/node/deps/v8/src/objects/
Dbigint.h42 return LengthBits::decode(static_cast<uint32_t>(bitfield)); in length()
48 return LengthBits::decode(static_cast<uint32_t>(bitfield)); in length()
64 using LengthBits = SignBits::Next<int, kLengthFieldBits>; variable
65 STATIC_ASSERT(LengthBits::kLastUsedBit < 32);
Dbigint.cc122 bitfield = LengthBits::update(bitfield, new_length); in set_length()
126 int32_t bitfield = LengthBits::encode(length) | SignBits::encode(sign); in initialize_bitfield()
1339 STATIC_ASSERT(kMaxLength * kDigitSize <= LengthBits::kMax); in GetBitfieldForSerialization()
1341 return SignBits::encode(sign()) | LengthBits::encode(bytelength); in GetBitfieldForSerialization()
1345 return LengthBits::decode(bitfield); in DigitsByteLengthForBitfield()
1372 int bytelength = LengthBits::decode(bitfield); in FromSerializedDigits()
/third_party/node/deps/v8/src/compiler/
Deffect-control-linearizer.cc1644 __ Word32And(bitfield, __ Int32Constant(BigInt::LengthBits::kMask)), in TruncateTaggedPointerToBit()
2916 __ Word32Or(__ Int32Constant(BigInt::LengthBits::encode(1)), sign); in LowerChangeInt64ToBigInt()
2938 const auto bitfield = BigInt::LengthBits::encode(1); in LowerChangeUint64ToBigInt()
6684 BigInt::SignBits::update(BigInt::LengthBits::encode(0), false); in BuildAllocateBigInt()
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.cc1527 TNode<Uint32T> length = DecodeWord32<BigIntBase::LengthBits>(bitfield); in BranchIfToBooleanIsTrue()
2421 Int32Constant(BigInt::LengthBits::encode(1)))); in BigIntFromInt32Pair()
2431 Int32Constant(BigInt::LengthBits::encode(2)))); in BigIntFromInt32Pair()
2458 BigInt::LengthBits::encode(1))); in BigIntFromInt64()
2467 BigInt::LengthBits::encode(1))); in BigIntFromInt64()
3400 Int32Constant(BigInt::LengthBits::kShift))); in AllocateBigInt()
11088 TNode<Uint32T> length = DecodeWord32<BigIntBase::LengthBits>(bitfield); in BigIntToRawBytes()