Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/shared_objects/
Djs_sendable_arraybuffer.cpp40 void JSSendableArrayBuffer::Attach(JSThread *thread, uint32_t arrayBufferByteLength, in Attach() argument
55 SetArrayBufferByteLength(arrayBufferByteLength); in Attach()
Djs_sendable_arraybuffer.h30 void Attach(JSThread *thread, uint32_t arrayBufferByteLength, JSTaggedValue arrayBufferData,
/arkcompiler/ets_runtime/ecmascript/
Djs_arraybuffer.cpp41 void JSArrayBuffer::Attach(JSThread *thread, uint32_t arrayBufferByteLength, in Attach() argument
53 SetArrayBufferByteLength(arrayBufferByteLength); in Attach()
Djs_arraybuffer.h30 void Attach(JSThread *thread, uint32_t arrayBufferByteLength, JSTaggedValue arrayBufferData,
/arkcompiler/toolchain/tooling/agent/
Druntime_impl.cpp335 int32_t arrayBufferByteLength = arrayBufferRef->ByteLength(vm_); in AddTypedArrayRefs() local
336 int32_t typedArrayLength = arrayBufferByteLength; in AddTypedArrayRefs()
341 if ((arrayBufferByteLength % NumberSize::BYTES_OF_16BITS) == 0) { in AddTypedArrayRefs()
342 typedArrayLength = arrayBufferByteLength / NumberSize::BYTES_OF_16BITS; in AddTypedArrayRefs()
347 if ((arrayBufferByteLength % NumberSize::BYTES_OF_32BITS) == 0) { in AddTypedArrayRefs()
348 typedArrayLength = arrayBufferByteLength / NumberSize::BYTES_OF_32BITS; in AddTypedArrayRefs()
354 if ((arrayBufferByteLength % NumberSize::BYTES_OF_64BITS) == 0) { in AddTypedArrayRefs()
355 typedArrayLength = arrayBufferByteLength / NumberSize::BYTES_OF_64BITS; in AddTypedArrayRefs()
365 int32_t arrayBufferByteLength = arrayBufferRef->ByteLength(vm_); in AddSharedArrayBufferRefs() local
366 int32_t typedArrayLength = arrayBufferByteLength; in AddSharedArrayBufferRefs()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dtyped_native_inline_lowering.cpp1377 …GateRef arrayBufferByteLength = builder_.Load(VariableType::INT32(), buffer, arrayBufferByteLength… in LowerDataViewProtoFunc() local
1378 BRANCH_CIR(builder_.Int32Equal(arrayBufferByteLength, builder_.Int32(0)), in LowerDataViewProtoFunc()