Searched refs:alg_props (Results 1 – 1 of 1) sorted by relevance
/external/mesa3d/src/compiler/nir/ |
D | nir_opcodes.py | 343 def binop_convert(name, out_type, in_type, alg_props, const_expr): argument 344 opcode(name, 0, out_type, [0, 0], [in_type, in_type], alg_props, const_expr) 346 def binop(name, ty, alg_props, const_expr): argument 347 binop_convert(name, ty, ty, alg_props, const_expr) 349 def binop_compare(name, ty, alg_props, const_expr): argument 350 binop_convert(name, tbool, ty, alg_props, const_expr)
|