Searched refs:headerSize (Results 1 - 6 of 6) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/mem/ |
H A D | native_area_allocator.cpp | 26 size_t headerSize = sizeof(Area); in AllocateArea() local 27 if (capacity < headerSize) { // LOCV_EXCL_BR_LINE in AllocateArea() 51 uintptr_t begin = reinterpret_cast<uintptr_t>(mem) + headerSize; in AllocateArea() 52 capacity -= headerSize; in AllocateArea()
|
H A D | native_area_allocator.h | 193 size_t headerSize = sizeof(Area); in AllocateSpace() local 194 if (capacity < headerSize) { in AllocateSpace() 205 uintptr_t begin = reinterpret_cast<uintptr_t>(mem) + headerSize; in AllocateSpace() 206 capacity -= headerSize; in AllocateSpace()
|
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/ |
H A D | assembler.h | 282 static void GetFrameCompletionPos(uint64_t &headerSize, uint64_t &tailSize, uint64_t &entryDuration) in GetFrameCompletionPos() argument 285 headerSize = FrameCompletionPos::X64CppToAsmInterp; in GetFrameCompletionPos() 289 headerSize = FrameCompletionPos::ARM64CppToAsmInterp; in GetFrameCompletionPos() 293 headerSize = 0; in GetFrameCompletionPos()
|
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/ |
H A D | cpu_profiler.cpp | 469 bool CpuProfiler::InHeaderOrTail(uint64_t pc, uint64_t entryBegin, uint64_t entryDuration, uint64_t headerSize, in InHeaderOrTail() argument 473 if (pc >= entryBegin && pc <= (entryBegin + headerSize)) { in InHeaderOrTail() 484 uint64_t headerSize = 0; in IsEntryFrameHeaderOrTail() local 487 Assembler::GetFrameCompletionPos(headerSize, tailSize, entryDuration); in IsEntryFrameHeaderOrTail() 489 bool inAsmInterpreterEntry = InHeaderOrTail(pc, entryBegin, entryDuration, headerSize, tailSize); in IsEntryFrameHeaderOrTail() 491 bool inGeneratorReEnterAsmInterp = InHeaderOrTail(pc, entryBegin, entryDuration, headerSize, tailSize); in IsEntryFrameHeaderOrTail()
|
H A D | cpu_profiler.h | 98 bool InHeaderOrTail(uint64_t pc, uint64_t entryBegin, uint64_t entryDuration, uint64_t headerSize,
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot.cpp | 268 uint8_t headerSize = JSTaggedValue::TaggedTypeSize(); in WriteToFile() local 270 writer.write(reinterpret_cast<char *>(&indexHeader), headerSize); in WriteToFile() local 271 writer.write(reinterpret_cast<char *>(str) + headerSize, strSize - headerSize); in WriteToFile()
|
Completed in 6 milliseconds