Home
last modified time | relevance | path

Searched refs:bigint_value (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/builtins/
Ddata-view.tq664 bigint_value: BigInt,
667 let length: uintptr = DataViewDecodeBigIntLength(bigint_value);
668 let sign: uintptr = DataViewDecodeBigIntSign(bigint_value);
679 let value: uintptr = LoadBigIntDigit(bigint_value, 0);
684 low_word = convert<uint32>(LoadBigIntDigit(bigint_value, 0));
686 high_word = convert<uint32>(LoadBigIntDigit(bigint_value, 1));
724 let bigint_value: BigInt;
729 bigint_value = ToBigInt(context, value);
755 StoreDataViewBigInt(buffer, bufferIndex, bigint_value,
/external/v8/src/interpreter/
Dinterpreter-generator.cc1133 virtual Node* BigIntOp(Node* bigint_value) = 0;
1259 Node* BigIntOp(Node* bigint_value) override { in BigIntOp() argument
1260 return CallRuntime(Runtime::kBigIntUnaryOp, GetContext(), bigint_value, in BigIntOp()
1351 Node* BigIntOp(Node* bigint_value) override { in BigIntOp() argument
1352 return CallRuntime(Runtime::kBigIntUnaryOp, GetContext(), bigint_value, in BigIntOp()
/external/v8/src/
Dcode-stub-assembler.cc9474 TNode<BigInt> bigint_value = ToBigInt(context, value); in EmitBigTypedArrayElementStore() local
9485 EmitBigTypedArrayElementStore(elements, backing_store, offset, bigint_value); in EmitBigTypedArrayElementStore()
9490 TNode<IntPtrT> offset, TNode<BigInt> bigint_value) { in EmitBigTypedArrayElementStore() argument
9491 TNode<WordT> bitfield = LoadBigIntBitfield(bigint_value); in EmitBigTypedArrayElementStore()
9499 var_low = LoadBigIntDigit(bigint_value, 0); in EmitBigTypedArrayElementStore()
9503 var_high = LoadBigIntDigit(bigint_value, 1); in EmitBigTypedArrayElementStore()
9597 TNode<BigInt> bigint_value = UncheckedCast<BigInt>(value); in EmitElementStore() local
9604 bigint_value); in EmitElementStore()
Dcode-stub-assembler.h2541 TNode<BigInt> bigint_value);