Home
last modified time | relevance | path

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

/external/mesa3d/src/compiler/nir/
Dnir_opcodes.py113 def unop_convert(name, out_type, in_type, const_expr): function
185 unop_convert("{0}2{1}{2}_{3}".format(src_t[0], dst_t[0],
189 unop_convert("{0}2{1}{2}".format(src_t[0], dst_t[0], bit_size),
194 unop_convert("f2b", tbool, tfloat, "src0 != 0.0")
195 unop_convert("i2b", tbool, tint, "src0 != 0")
196 unop_convert("b2f", tfloat, tbool, "src0 ? 1.0 : 0.0")
197 unop_convert("b2i", tint, tbool, "src0 ? 1 : 0")
296 unop_convert("unpack_64_2x32_split_x", tuint32, tuint64, "src0")
297 unop_convert("unpack_64_2x32_split_y", tuint32, tuint64, "src0 >> 32")
316 unop_convert("ufind_msb", tint32, tuint32, """