Home
last modified time | relevance | path

Searched full:setfill (Results 1 – 25 of 43) sorted by relevance

12

/arkcompiler/runtime_core/static_core/platforms/windows/libpandabase/
Dmem_hooks.cpp72 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "alloc type"; in PandaAllocHook()
73 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "block type"; in PandaAllocHook()
74 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "size"; in PandaAllocHook()
75 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "filename"; in PandaAllocHook()
76 … std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "linenumber" << std::endl; in PandaAllocHook()
83 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << alloctypeName; in PandaAllocHook()
84 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << blocktypeName; in PandaAllocHook()
85 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << static_cast<int>(size); in PandaAllocHook()
86 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << filename; in PandaAllocHook()
87 std::cout << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << linenumber << std::endl; in PandaAllocHook()
/arkcompiler/runtime_core/static_core/disassembler/templates/
Dget_ins_info.cpp.erb39 ss << "offset: 0x" << std::setfill('0') << std::setw(4) << std::hex
41 ss << ", " << std::setfill('.');
61 …ss << "0x" << std::setw(INSTRUCTION_WIDTH) << std::setfill('0') << std::right << std::hex << stati…
/arkcompiler/runtime_core/disassembler/templates/
Dget_ins_info.cpp.erb37 … ss << "offset: 0x" << std::setfill('0') << std::setw(ark::INSTRUCTION_OFFSET_WIDTH) << std::hex
39 ss << ", " << std::setfill('.');
59 …ss << "0x" << std::setw(ark::INSTRUCTION_VALUE_WIDTH) << std::setfill('0') << std::right << std::h…
/arkcompiler/runtime_core/static_core/compiler/tools/aotdump/
Daotdump.cpp241 …(*stream_) << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "i" << std::left << std:: in DumpClassHashTable()
243 …(*stream_) << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << "entity_id_offset" << std… in DumpClassHashTable()
244 << std::setfill(' ') << std::setw(ALIGN_SIZE) << "descriptor" << std::endl; in DumpClassHashTable()
251 (*stream_) << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << (i + 1); in DumpClassHashTable()
252 …(*stream_) << std::left << std::setfill(' ') << std::dec << std::setw(ALIGN_SIZE) << entityPair.ne… in DumpClassHashTable()
253 (*stream_) << std::left << std::setfill(' ') << std::dec << std::setw(ALIGN_SIZE) in DumpClassHashTable()
255 … (*stream_) << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << descriptor << std::endl; in DumpClassHashTable()
257 … (*stream_) << std::left << std::setfill(' ') << std::setw(ALIGN_SIZE) << (i + 1) << std::endl; in DumpClassHashTable()
345 …(*stream_) << prefix << std::hex << std::setw(8U) << std::setfill('0') << instr - startInstr << ":… in PrintCodeArm64()
387 …(*stream_) << prefix << std::hex << std::setw(8U) << std::setfill('0') << pos << ": " << buffer.da… in PrintCodeX8664()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_phase/src/
Dmaple_phase_support.cpp65 …LogInfo::MapleLogger() << std::left << std::setw(25) << std::setfill(' ') << itemName << std::setw… in DumpPhasesTime()
66 … << std::setfill(' ') << std::right << std::fixed << std::setprecision(2) in DumpPhasesTime()
68 << std::setfill(' ') << std::setprecision(4) in DumpPhasesTime()
/arkcompiler/runtime_core/static_core/verification/cflow/
Dcflow_iterate_inl.h42 …DEBUG, VERIFIER) << "CFLOW: " << std::hex << std::setw(sizeof(uint32_t) * 2) << std::setfill('0') \
/arkcompiler/runtime_core/libpandabase/utils/
Dbit_memory_region-inl.h38 … os << std::setw(static_cast<int>(width / BITS_PER_HEX_DIGIT)) << std::setfill('0'); in Dump()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/
Dprinting.cpp62 … LogInfo::MapleLogger() << "\\x" << std::hex << std::setfill('0') << std::setw(kFieldWidth) in PrintString()
/arkcompiler/runtime_core/static_core/libpandabase/utils/
Dbit_memory_region-inl.h30 os << std::setw(width) << std::setfill('0'); in DumpVal()
/arkcompiler/runtime_core/static_core/runtime/
Dtime_utils.cpp55 resultStream << dateBuffer << std::setfill('0') << std::setw(PRECISION_FOR_TIME) << millisecond; in GetCurrentTimeString()
Dtiming.cpp52 …ss << mainPart << "." << std::setfill('0') << std::setw(FRACTION_WIDTH) << fractionalPart << timeU… in PrettyTimeNs()
Dstack_walker.cpp712 os << std::setw(WIDTH_LOCATION) << std::setfill(' ') << regInfo.GetTypeString(); // NOLINT in DumpVRegLocation()
726 os << " " << std::setw(WIDTH_REG) << std::setfill(' ') << std::right in DumpVRegs()
734 os << std::setw(WIDTH_TYPE) << std::setfill(' '); in DumpVRegs()
779 … os << std::setw(WIDTH_INDEX) << std::setfill(' ') << std::right << std::dec << frameIndex << ": " in Dump()
780 << std::setfill('0'); in Dump()
/arkcompiler/runtime_core/compiler/optimizer/
Dpass_manager.cpp62 ss_filename << std::setw(IMM_3) << std::setfill('0') << execution_counter << "_"; in GetFileName()
64 …ss_filename << "pass_" << std::setw(IMM_4) << std::setfill('0') << stats_->GetCurrentPassIndex() <… in GetFileName()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/aarch64/
Daarch64_imm_valid.cpp64 …:MapleLogger() << "0x" << std::hex << std::setw(static_cast<int>(k16ByteSize)) << std::setfill('0') in IsBitmaskImmediate()
/arkcompiler/runtime_core/static_core/compiler/optimizer/
Dpass_manager.cpp84 ssFilename << std::setw(IMM_3) << std::setfill('0') << executionCounter_ << "_"; in GetFileName()
86 …ssFilename << "pass_" << std::setw(IMM_4) << std::setfill('0') << stats_->GetCurrentPassIndex() <<… in GetFileName()
/arkcompiler/runtime_core/compiler/tests/
Dvixl_exec_module.h246 std::cout << std::setfill('0') << std::right << std::setw(sizeof(int64_t)); in PrintInstructions()
248 std::cout << std::setfill(' '); in PrintInstructions()
/arkcompiler/runtime_core/static_core/verification/
Dmessages.yaml85 …${std::hex << std::setw(sizeof(uint32_t) * 2) << std::setfill('0') << address << std::dec << std::…
93 ${std::hex << std::setw(sizeof(uint32_t) * 2) << std::setfill('0')}
137 …ABSINT: ${std::hex << std::setw(sizeof(uint32_t) * 2) << std::setfill('0') << instruction.GetOffse…
/arkcompiler/runtime_core/static_core/compiler/tests/
Dvixl_exec_module.h258 std::cout << std::setfill('0') << std::right << std::setw(sizeof(int64_t)); in PrintInstructions()
260 std::cout << std::setfill(' '); in PrintInstructions()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/
Dimmvalid.def51 std::setfill('0') << static_cast<uint64>(val) << "\n";
/arkcompiler/runtime_core/static_core/runtime/interpreter/
Dinterpreter_impl.cpp157 std::cerr << std::hex << std::setw(sizeof(uintptr_t)) << std::setfill('0') in DebugDump()
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/tests/
Dassembler_aarch64_test.cpp101 os << std::setw(8) << std::setfill('0') << std::hex << pc << ":" << std::setw(8) in DisassembleChunk()
108 os << std::setw(8) << std::setfill('0') << std::hex << pc << ":" << std::setw(8) in DisassembleChunk()
Dassembler_x64_test.cpp106 os << std::setw(8) << std::setfill('0') << std::hex << pc << ":" << std::setw(8) in DisassembleChunk()
113 os << std::setw(8) << std::setfill('0') << std::hex << pc << ":" << std::setw(8) in DisassembleChunk()
/arkcompiler/runtime_core/static_core/disassembler/
Ddisassembler.cpp126 ss << "offset: 0x" << std::setfill('0') << std::setw(4U) << std::hex << bc; in GetInsInfo()
127 ss << ", " << std::setfill('.'); in GetInsInfo()
140 … ss << "0x" << std::setw(INSTRUCTION_WIDTH) << std::setfill('0') << std::right << std::hex in GetInsInfo()
1266 …ss << "offset: 0x" << std::setfill('0') << std::setw(DEFAULT_OFFSET_WIDTH) << std::hex << fieldAcc… in GetFieldInfo()
1273 …ss << "offset: 0x" << std::setfill('0') << std::setw(DEFAULT_OFFSET_WIDTH) << std::hex << fieldAcc… in GetFieldInfo()
1287 …ss << "offset: 0x" << std::setfill('0') << std::setw(DEFAULT_OFFSET_WIDTH) << std::hex << classAcc… in GetRecordInfo()
1288 …<< ", size: 0x" << std::setfill('0') << std::setw(DEFAULT_OFFSET_WIDTH) << classAccessor.GetSize()… in GetRecordInfo()
1308 ss << "offset: 0x" << std::setfill('0') << std::setw(DEFAULT_OFFSET_WIDTH) << std::hex in GetMethodInfo()
1312 … ss << ", code offset: 0x" << std::setfill('0') << std::setw(DEFAULT_OFFSET_WIDTH) << std::hex in GetMethodInfo()
/arkcompiler/runtime_core/static_core/runtime/mem/
Dregion_space.h409 …out << std::hex << "[0x" << std::setw(POINTER_PRINT_WIDTH) << std::setfill('0') << region.Begin() … in DumpRegionRange()
410 << std::setw(POINTER_PRINT_WIDTH) << std::setfill('0') << region.End() << "]"; in DumpRegionRange()
/arkcompiler/runtime_core/compiler/optimizer/ir/
Ddump.cpp142 out_string << "bc: 0x" << std::setfill('0') << std::setw(HEX_PTR_SIZE) << std::hex << pc; in PcToString()
392 (*out) << std::setw(INDENT_ID) << std::setfill(' ') << std::right in Dump()

12