Searched refs:littleEndianHandle (Results 1 - 3 of 3) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_dataview_stub_builder.h | 34 GateRef value, GateRef littleEndianHandle);
36 GateRef value, GateRef littleEndianHandle);
|
H A D | builtins_dataview_stub_builder.cpp | 54 GateRef littleEndianHandle; // need to init
in SetTypedValue() local 56 littleEndianHandle = TaggedTrue();
in SetTypedValue() 58 littleEndianHandle = GetCallArg2(numArgs);
in SetTypedValue() 60 BRANCH(TaggedIsUndefined(littleEndianHandle), &getArrayBuffer, &toBool);
in SetTypedValue() 63 isLittleEndian = FastToBoolean(littleEndianHandle, 1);
in SetTypedValue() 110 GateRef value, GateRef littleEndianHandle)
in SetValueInBufferForInt32() 123 BRANCH(TaggedIsTrue(littleEndianHandle), &littleEnd, ¬LittleEnd);
in SetValueInBufferForInt32() 145 GateRef value, GateRef littleEndianHandle)
in SetValueInBufferForInt64() 167 BRANCH(TaggedIsTrue(littleEndianHandle), &littleEnd, ¬LittleEnd);
in SetValueInBufferForInt64() 109 SetValueInBufferForInt32(GateRef glue, GateRef pointer, GateRef offset, GateRef value, GateRef littleEndianHandle) SetValueInBufferForInt32() argument 144 SetValueInBufferForInt64(GateRef glue, GateRef pointer, GateRef offset, GateRef value, GateRef littleEndianHandle) SetValueInBufferForInt64() argument
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_dataview.cpp | 480 JSHandle<JSTaggedValue> littleEndianHandle = GetCallArg(argv, 1); in GetTypedValue() local 481 return GetViewValue(thread, thisHandle, offsetHandle, littleEndianHandle, type); in GetTypedValue() 496 JSHandle<JSTaggedValue> littleEndianHandle = GetCallArg(argv, BuiltinsBase::ArgsPosition::THIRD); in SetTypedValue() local 497 return SetViewValue(thread, thisHandle, offsetHandle, littleEndianHandle, type, value); in SetTypedValue()
|
Completed in 3 milliseconds