Searched refs:unop_numeric_convert (Results 1 – 1 of 1) sorted by relevance
| /external/mesa3d/src/compiler/nir/ |
| D | nir_opcodes.py | 190 def unop_numeric_convert(name, out_type, in_type, const_expr): function 248 unop_numeric_convert("{0}2{1}{2}{3}".format(src_t[0], 262 unop_numeric_convert("{0}2{1}{2}".format(src_t[0], dst_t[0], 267 unop_numeric_convert("{0}2{1}{2}".format(src_t[0], dst_t[0], 275 unop_numeric_convert("f2fmp", tfloat16, tfloat32, opcodes["f2f16"].const_expr) 276 unop_numeric_convert("i2imp", tint16, tint32, opcodes["i2i16"].const_expr) 278 unop_numeric_convert("f2imp", tint16, tfloat32, opcodes["f2i16"].const_expr) 279 unop_numeric_convert("f2ump", tuint16, tfloat32, opcodes["f2u16"].const_expr) 280 unop_numeric_convert("i2fmp", tfloat16, tint32, opcodes["i2f16"].const_expr) 281 unop_numeric_convert("u2fmp", tfloat16, tuint32, opcodes["u2f16"].const_expr)
|