Home
last modified time | relevance | path

Searched refs:LoadBigIntDigit (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/v8/src/builtins/
Dbuiltins-bigint.tq27 extern macro CodeStubAssembler::LoadBigIntDigit(BigIntBase, intptr): uintptr;
36 return LoadBigIntDigit(bigint, length - 1) != 0;
218 StoreBigIntDigit(result, i, LoadBigIntDigit(bigint, i));
Ddata-view.tq649 const value: uintptr = bigint::LoadBigIntDigit(bigIntValue, 0);
653 lowWord = Convert<uint32>(bigint::LoadBigIntDigit(bigIntValue, 0));
655 highWord = Convert<uint32>(bigint::LoadBigIntDigit(bigIntValue, 1));
/third_party/node/deps/v8/src/objects/
Dturbofan-types.tq183 const digit = bigint::LoadBigIntDigit(bi, 0);
/third_party/node/deps/v8/src/codegen/
Dcode-stub-assembler.h1883 TNode<UintPtrT> LoadBigIntDigit(TNode<BigInt> bigint, intptr_t digit_index);
1884 TNode<UintPtrT> LoadBigIntDigit(TNode<BigInt> bigint,
Dcode-stub-assembler.cc3450 TNode<UintPtrT> CodeStubAssembler::LoadBigIntDigit(TNode<BigInt> bigint, in LoadBigIntDigit() function in v8::internal::CodeStubAssembler
3459 TNode<UintPtrT> CodeStubAssembler::LoadBigIntDigit(TNode<BigInt> bigint, in LoadBigIntDigit() function in v8::internal::CodeStubAssembler
11091 *var_low = LoadBigIntDigit(bigint, 0); in BigIntToRawBytes()
11095 *var_high = LoadBigIntDigit(bigint, 1); in BigIntToRawBytes()