Home
last modified time | relevance | path

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

/external/mesa3d/src/compiler/nir/
Dnir_opcodes.py94 tuint = "uint" variable
396 binop("udiv", tuint, "", "src0 / src1")
401 binop_convert("uadd_carry", tuint, tuint, commutative, "src0 + src1 < src0")
406 binop_convert("usub_borrow", tuint, tuint, "", "src0 < src1")
408 binop("umod", tuint, "", "src1 == 0 ? 0 : src0 % src1")
440 binop_compare("ult", tuint, "", "src0 < src1")
441 binop_compare("uge", tuint, "", "src0 >= src1")
472 binop("ushr", tuint, "", "src0 >> src1")
480 binop("iand", tuint, commutative + associative, "src0 & src1")
481 binop("ior", tuint, commutative + associative, "src0 | src1")
[all …]