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

  /external/mesa3d/src/gallium/drivers/freedreno/ir3/
instr-a3xx.h 33 #define NOPC_BITS 6
35 #define _OPC(cat, opc) (((cat) << NOPC_BITS) | opc)
212 #define opc_cat(opc) ((int)((opc) >> NOPC_BITS))
213 #define opc_op(opc) ((unsigned)((opc) & ((1 << NOPC_BITS) - 1)))
disasm-a3xx.c 651 #define NOPC_BITS 6
658 } opcs[1 << (3+NOPC_BITS)] = {
819 #define GETINFO(instr) (&(opcs[((instr)->opc_cat << NOPC_BITS) | instr_opc(instr)]))

Completed in 973 milliseconds