Searched refs:WIDTH (Results 1 - 8 of 8) sorted by relevance
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | bit_helpers.h | 29 template <size_t WIDTH> 33 WIDTH <= std::numeric_limits<uint8_t>::digits, uint8_t, 35 WIDTH <= std::numeric_limits<uint16_t>::digits, uint16_t, 36 std::conditional_t<WIDTH <= std::numeric_limits<uint32_t>::digits, uint32_t, 37 std::conditional_t<WIDTH <= std::numeric_limits<uint64_t>::digits, uint64_t, void>>>>; 40 template <size_t WIDTH> 41 using UnsignedTypeHelperT = typename UnsignedTypeHelper<WIDTH>::type; 43 template <size_t WIDTH, bool IS_SIGNED> 47 std::conditional_t<IS_SIGNED, std::make_signed_t<UnsignedTypeHelperT<WIDTH>>, UnsignedTypeHelperT<WIDTH>>; [all...] |
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
H A D | pgo_trace.h | 30 static constexpr int WIDTH = 20; member in panda::ecmascript::pgo::PGOTrace 31 static constexpr int COLUMN_WIDTH = NAME_WIDTH + WIDTH * 6; 101 LOG_TRACE(INFO) << std::left << std::setw(NAME_WIDTH) << name_ << std::right << std::setw(WIDTH) << id_ in Print() 102 << std::setw(WIDTH) << codesize_ << std::setw(WIDTH) << hotness_ << std::setw(WIDTH) in Print() 103 << count << std::fixed << std::setprecision(PRECISION) << std::setw(WIDTH) in Print() 104 << avgProfileBytecodeTime << std::setw(WIDTH) << totalTime; in Print() 146 LOG_TRACE(INFO) << std::setw(NAME_WIDTH + WIDTH * (TOTAL_COLUMN - PROFILE_BYTECODE_TIME_COLUMN)) << "" in Print() 147 << std::right << std::setw(WIDTH * PROFILE_BYTECODE_TIME_COLUM in Print() [all...] |
/arkcompiler/runtime_core/static_core/libpandafile/ |
H A D | helpers.h | 35 template <size_t WIDTH> 39 constexpr size_t BITWIDTH = BYTE_WIDTH * WIDTH; in Read() 43 for (size_t i = 0; i < WIDTH; i++) { in Read() 47 *sp = sp->SubSpan(WIDTH); in Read() 79 template <size_t WIDTH> 82 return Read<WIDTH>(&sp); in Read()
|
H A D | bytecode_instruction-inl.h | 49 template <size_t OFFSET, size_t WIDTH, bool IS_SIGNED> 54 constexpr size_t BYTE_OFFSET_END = (OFFSET + WIDTH + BYTE_WIDTH - 1) / BYTE_WIDTH; in Read() 58 using ReturnType = helpers::TypeHelperT<WIDTH, IS_SIGNED>; in Read() 60 return ReadHelper<ReturnType, StorageType>(BYTE_OFFSET, BYTE_COUNT, OFFSET, WIDTH); in Read()
|
H A D | bytecode_instruction.h | 373 template <size_t OFFSET, size_t WIDTH, bool IS_SIGNED = false>
|
/arkcompiler/runtime_core/static_core/verification/util/ |
H A D | str.h | 78 constexpr size_t WIDTH = sizeof(Offset) + (std::is_signed_v<Offset> ? 1 : 0); 79 return NumToStr(offset, BASE, WIDTH);
|
/arkcompiler/runtime_core/libpandafile/ |
H A D | file_writer.h | 195 static constexpr size_t WIDTH = std::numeric_limits<uint8_t>::digits; variable 204 temp >>= WIDTH; variable
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | cframe.cpp | 220 constexpr size_t WIDTH = 16; in Dump() 221 stream << ' ' << addr << ": " << std::setw(WIDTH) << std::setfill(' ') << dscr << " 0x" << std::hex << value in Dump()
|
Completed in 4 milliseconds