HomeSort by relevance Sort by last modified time
    Searched refs:nreg (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/compiler/nir/
nir_clone.c 194 nir_register *nreg = rzalloc(state->ns, nir_register); local
195 add_remap(state, nreg, reg);
197 nreg->num_components = reg->num_components;
198 nreg->bit_size = reg->bit_size;
199 nreg->num_array_elems = reg->num_array_elems;
200 nreg->index = reg->index;
201 nreg->name = ralloc_strdup(nreg, reg->name);
202 nreg->is_global = reg->is_global;
203 nreg->is_packed = reg->is_packed
220 nir_register *nreg = clone_register(state, reg); local
    [all...]
  /external/valgrind/VEX/priv/
guest_arm_toIR.c 2888 UInt nreg = get_neon_n_regno(theInstr); local
2936 UInt nreg = get_neon_n_regno(theInstr & ~(1 << 6)); local
3076 UInt nreg = get_neon_n_regno(theInstr); local
4888 UInt nreg = get_neon_n_regno(theInstr); local
5307 UInt nreg = get_neon_n_regno(theInstr & ~(1 << 6)); local
    [all...]
  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
ir3.c 645 static struct ir3_instruction *instr_create(struct ir3_block *block, int nreg)
648 unsigned sz = sizeof(*instr) + (nreg * sizeof(instr->regs[0]));
656 instr->regs_max = nreg;
663 opc_t opc, int nreg)
665 struct ir3_instruction *instr = instr_create(block, nreg);
ir3.h 469 opc_t opc, int nreg);

Completed in 81 milliseconds