Home
last modified time | relevance | path

Searched refs:loop_count (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/Architecture/Mips/
H A DArchitectureMips.cpp135 auto loop_count = symbol_offset / 2; in GetInstructionAtAddress() local
141 if (loop_count > 3) { in GetInstructionAtAddress()
144 loop_count = 3; in GetInstructionAtAddress()
148 loop_count = 2; in GetInstructionAtAddress()
161 for (uint32_t i = 1; i <= loop_count; i++) { in GetInstructionAtAddress()
/llvm-project-15.0.7/lldb/test/API/tools/lldb-vscode/breakpoint/
H A DTestVSCode_logpoints.py75 loop_count = 10
76 self.assertEqual(len(logMessage_output), loop_count)
135 loop_count = 10
136 self.assertEqual(len(logMessage_output), loop_count)
/llvm-project-15.0.7/llvm/test/CodeGen/Hexagon/
H A Dswp-crash-iter.ll11 %loop_count.0420 = phi i32 [ 0, %entry ], [ %inc, %for.body ]
19 %inc = add nuw nsw i32 %loop_count.0420, 1
/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.cpp139 const uint32_t loop_count = std::min<uint32_t>(DEBUG_PTRACE_MAXBYTES, count); in DisplayBytes() local
140 for (uint32_t i = 0; i < loop_count; i++) { in DisplayBytes()