Home
last modified time | relevance | path

Searched refs:NOPC_BITS (Results 1 – 2 of 2) sorted by relevance

/third_party/mesa3d/src/freedreno/ir3/
Dinstr-a3xx.h54 #define NOPC_BITS 6 macro
56 #define _OPC(cat, opc) (((cat) << NOPC_BITS) | opc)
348 #define opc_cat(opc) ((int)((opc) >> NOPC_BITS))
349 #define opc_op(opc) ((unsigned)((opc) & ((1 << NOPC_BITS) - 1)))
Ddisasm-a3xx.c150 #define NOPC_BITS 6 macro
154 } opcs[1 << (3 + NOPC_BITS)] = {
361 (&(opcs[((instr)->opc_cat << NOPC_BITS) | instr_opc(instr, ctx->gpu_id)]))