Home
last modified time | relevance | path

Searched refs:num_insts (Results 1 – 6 of 6) sorted by relevance

/external/rust/crates/regex/src/
Dpikevm.rs347 fn resize(&mut self, num_insts: usize, ncaps: usize) { in resize()
348 if num_insts == self.set.capacity() { in resize()
352 self.set = SparseSet::new(num_insts); in resize()
353 self.caps = vec![None; self.slots_per_thread * num_insts]; in resize()
Dbacktrack.rs31 pub fn should_exec(num_insts: usize, text_len: usize) -> bool { in should_exec()
38 let size = ((num_insts * (text_len + 1) + BIT_SIZE - 1) / BIT_SIZE) * 4; in should_exec()
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_compiler.c409 s->num_insts++; in rc_get_stats()
432 s.num_insts, s.num_fc_insts, s.num_temp_regs); in print_stats()
447 s.num_insts, s.num_rgb_insts, s.num_alpha_insts, in print_stats()
484 c->initial_num_insts = s.num_insts; in rc_run_compiler()
Dradeon_compiler.h153 unsigned num_insts; member
/external/llvm-project/lldb/tools/lldb-vscode/
DJSONUtils.cpp627 const auto num_insts = insts.GetSize(); in CreateSource() local
628 if (low_pc != LLDB_INVALID_ADDRESS && num_insts > 0) { in CreateSource()
633 for (size_t i = 0; i < num_insts; ++i) { in CreateSource()
/external/llvm-project/lldb/source/Expression/
DIRInterpreter.cpp679 uint32_t num_insts = 0; in Interpret() local
683 while (frame.m_ii != frame.m_ie && (++num_insts < 4096)) { in Interpret()
1531 if (num_insts >= 4096) { in Interpret()