Home
last modified time | relevance | path

Searched refs:space_buf (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/runtime_core/compiler/optimizer/
Dpass_manager_statistics.cpp43 char space_buf[BUF_SIZE]; in PrintStatistics() local
44 std::fill(space_buf, space_buf + BUF_SIZE, ' '); in PrintStatistics()
56 space_buf[indent] = 0; in PrintStatistics()
57 out << std::setw(OFFSET_ID) << std::right << index << space_buf << " " << std::left << in PrintStatistics()
61 space_buf[indent] = ' '; in PrintStatistics()
/arkcompiler/runtime_core/compiler/optimizer/ir/
Ddump.cpp418 static std::array<char, ALIGN_BUF_SIZE + 1> space_buf; in Dump() local
419 if (space_buf[0] != ' ') { in Dump()
420 std::fill(space_buf.begin(), space_buf.end(), ' '); in Dump()
422 space_buf[pos_diff] = 0; in Dump()
423 (*out) << space_buf.data(); in Dump()
424 space_buf[pos_diff] = ' '; in Dump()