Home
last modified time | relevance | path

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

/third_party/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()
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_compiler.h150 unsigned num_insts; member
Dradeon_compiler.c403 s->num_insts++; in rc_get_stats()
422 s.num_insts, s.num_rgb_insts, s.num_alpha_insts, s.num_pred_insts, in print_stats()
/third_party/mesa3d/src/intel/compiler/
Dbrw_fs.cpp6507 int num_insts = cfg->last_block()->end_ip + 1; in allocate_registers() local
6508 fs_inst **inst_arr = ralloc_array(mem_ctx, fs_inst *, num_insts); in allocate_registers()
6515 assert(ip == num_insts); in allocate_registers()
6532 assert(ip == num_insts); in allocate_registers()