Searched refs:num_per_line (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/lldb/include/lldb/Core/ |
D | DumpDataExtractor.h | 84 size_t item_count, size_t num_per_line, uint64_t base_addr,
|
/external/llvm-project/lldb/source/Core/ |
D | DumpDataExtractor.cpp | 232 size_t num_per_line, uint64_t base_addr, in DumpDataExtractor() argument 259 if ((count % num_per_line) == 0) { in DumpDataExtractor() 265 (num_per_line - (offset - line_start_offset)) * 3 + 2), in DumpDataExtractor() 759 (num_per_line - (offset - line_start_offset)) * 3 + 2), in DumpDataExtractor()
|
/external/llvm-project/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/ |
D | vscode.py | 16 def dump_memory(base_addr, data, num_per_line, outfile): argument 26 if bytes_left >= num_per_line: 27 curr_data_len = num_per_line
|
/external/llvm-project/lldb/examples/python/ |
D | mach_o.py | 181 def dump_memory(base_addr, data, hex_bytes_len, num_per_line): argument 189 if ((i / 2) % num_per_line) == 0: 204 if (i / 2) % num_per_line: 205 padding = num_per_line - ((i / 2) % num_per_line)
|
/external/llvm-project/lldb/include/lldb/Utility/ |
D | DataExtractor.h | 197 uint32_t num_per_line, Type type) const;
|
/external/llvm-project/lldb/source/Utility/ |
D | DataExtractor.cpp | 907 uint32_t num_per_line, in PutToLog() argument 918 if ((count % num_per_line) == 0) { in PutToLog()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectMemory.cpp | 580 const size_t num_per_line = in DoExecute() local 873 num_per_line / target->GetArchitecture().GetDataByteSize(), addr, 0, 0, in DoExecute()
|