Searched refs:byteSize (Results 1 - 12 of 12) sorted by relevance
/arkcompiler/ets_frontend/es2panda/lexer/token/ |
H A D | sourceLocation.cpp | 36 if (diff == range.byteSize) { in AddCol() 91 if (diff < (range.cnt * range.byteSize)) { 92 col += (diff / range.byteSize) ; 96 diff -= range.cnt * range.byteSize;
|
H A D | sourceLocation.h | 71 explicit Range(size_t bS) noexcept : byteSize(bS) {} in byteSize() function in panda::es2panda::lexer::Range 77 size_t byteSize {};
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | obj_emit.h | 226 virtual void AppendContents(uint64 binInsn, uint32 byteSize) in AppendContents() argument 229 (void)byteSize; in AppendContents() 260 ALWAYS_INLINE void AppendTextData(const void *data, uint32 byteSize) in AppendTextData() argument 263 (void)textData.insert(textData.end(), pdata, pdata + byteSize); in AppendTextData() 268 AppendData(singleton->GetCodeSigner(), pdata, byteSize); in AppendTextData() 274 ALWAYS_INLINE void AppendTextData(uint64 data, uint32 byteSize) in AppendTextData() argument 276 for (size_t i = 0; i < byteSize; i++) { in AppendTextData() 283 AppendData(singleton->GetCodeSigner(), &data, byteSize); in AppendTextData() 305 ALWAYS_INLINE void SwapTextData(const void *value, size_t index, size_t byteSize) in SwapTextData() argument 307 errno_t res = memcpy_s(textData.data() + index, byteSize, valu in SwapTextData() [all...] |
H A D | cgfunc.h | 1099 PrimType GetPrimTypeFromSize(uint32 byteSize, PrimType defaultType) const in GetPrimTypeFromSize() argument 1104 switch (byteSize) { in GetPrimTypeFromSize()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/ |
H A D | aarch64_args.cpp | 92 uint32 byteSize = GetPrimTypeSize(stype); in MoveLocalRefVarToRefLocals() local 93 uint32 bitSize = byteSize * kBitsPerByte; in MoveLocalRefVarToRefLocals() 116 uint32 byteSize = GetPrimTypeSize(stype); in LoadStackArgsToVReg() local 117 uint32 bitSize = byteSize * kBitsPerByte; in LoadStackArgsToVReg() 143 uint32 byteSize = GetPrimTypeSize(sType); in MoveArgsToVReg() local 144 uint32 srcBitSize = ((byteSize < k4ByteSize) ? k4ByteSize : byteSize) * kBitsPerByte; in MoveArgsToVReg()
|
/arkcompiler/ets_frontend/ets2panda/lexer/token/ |
H A D | sourceLocation.h | 71 explicit Range(size_t bS) noexcept : byteSize(bS) {} in byteSize() function in ark::es2panda::lexer::Range 78 size_t byteSize {};
|
H A D | sourceLocation.cpp | 35 if (diff == range.byteSize) { in AddCol() 96 diff -= range.cnt * range.byteSize;
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | byte_array.h | 46 size_t byteSize = ComputeDataSize(GetArrayLength(), GetByteLength()); in GetPointerLength() local 47 return AlignUp(byteSize, static_cast<size_t>(MemAlignment::MEM_ALIGN_OBJECT)) / sizeof(JSTaggedType); in GetPointerLength()
|
H A D | js_bigint.h | 187 size_t byteSize = DataSize(this); 188 return AlignUp(byteSize, static_cast<size_t>(MemAlignment::MEM_ALIGN_OBJECT)) / sizeof(JSTaggedType);
|
H A D | ecma_string.h | 802 size_t byteSize = DataSize(this); 803 return AlignUp(byteSize, static_cast<size_t>(MemAlignment::MEM_ALIGN_OBJECT)) / sizeof(JSTaggedType);
|
H A D | object_factory.cpp | 2855 size_t byteSize = ByteArray::ComputeSize(size, length); in NewByteArray() local 2857 TaggedObject *header = AllocObjectWithSpaceType(byteSize, arrayClass, spaceType); in NewByteArray()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/x86_64/ |
H A D | x64_args.cpp | 225 uint32 byteSize = GetPrimTypeSize(stype); in MoveArgsToVReg() local 226 uint32 srcBitSize = ((byteSize < k4ByteSize) ? k4ByteSize : byteSize) * kBitsPerByte; in MoveArgsToVReg()
|
Completed in 19 milliseconds