Home
last modified time | relevance | path

Searched refs:byteLen (Results 1 - 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_sendable_arraybuffer.cpp297 int32_t byteLen = static_cast<int32_t>(byteArrayBuf->GetByteLength()); in CloneArrayBuffer() local
300 // 6. Let cloneLength be (srcLength – srcByteOffset) * byteLen. in CloneArrayBuffer()
301 cloneLen = static_cast<int32_t>(srcLen - srcByteOffset) * byteLen; in CloneArrayBuffer()
302 srcByteOffset *= static_cast<uint32_t>(byteLen); in CloneArrayBuffer()
H A Dbuiltins_dataview.cpp73 JSTaggedNumber byteLen = JSTaggedValue::ToIndex(thread, byteLenHandle); in DataViewConstructor() local
76 viewByteLen = static_cast<uint32_t>(byteLen.ToInt32()); in DataViewConstructor()
H A Dbuiltins_arraybuffer.cpp304 int32_t byteLen = static_cast<int32_t>(byteArrayBuf->GetByteLength()); in CloneArrayBuffer() local
307 // 6. Let cloneLength be (srcLength – srcByteOffset) * byteLen. in CloneArrayBuffer()
308 cloneLen = static_cast<int32_t>(srcLen - srcByteOffset) * byteLen; in CloneArrayBuffer()
309 srcByteOffset *= static_cast<uint32_t>(byteLen); in CloneArrayBuffer()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Dcgfunc.cpp527 uint32 byteLen = GetPrimTypeSize(primType); in CGFunc() local
528 if (byteLen < k4ByteSize) { in CGFunc()
529 byteLen = k4ByteSize; in CGFunc()
531 new (&GetVirtualRegNodeFromPseudoRegIdx(i)) VirtualRegNode(GetRegTyFromPrimTy(primType), byteLen); in CGFunc() local
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
H A Daarch64_cgfunc.h186 RegOperand &CreateRegisterOperandOfType(RegType regType, uint32 byteLen);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
H A Daarch64_cgfunc.cpp3226 RegOperand &AArch64CGFunc::CreateRegisterOperandOfType(RegType regty, uint32 byteLen)
3230 if (byteLen < k4ByteSize) {
3231 byteLen = k4ByteSize;
3233 regno_t vRegNO = NewVReg(regty, byteLen);

Completed in 14 milliseconds