Searched refs:cmp_type (Results 1 – 4 of 4) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_expr.h | 40 unsigned get_setcc_op(unsigned cc, unsigned cmp_type, bool int_dst); 41 unsigned get_predsetcc_op(unsigned cc, unsigned cmp_type); 42 unsigned get_killcc_op(unsigned cc, unsigned cmp_type); 43 unsigned get_cndcc_op(unsigned cc, unsigned cmp_type);
|
D | sb_peephole.cpp | 121 unsigned cmp_type = flags & AF_CMP_TYPE_MASK; in optimize_cc_op2() local 165 assert(cmp_type != AF_FLOAT_CMP); in optimize_cc_op2() 166 cmp_type = AF_FLOAT_CMP; in optimize_cc_op2() 180 newop = get_predsetcc_op(cc, cmp_type); in optimize_cc_op2() 183 newop = get_setcc_op(cc, cmp_type, dst_type != AF_FLOAT_DST); in optimize_cc_op2() 186 newop = get_killcc_op(cc, cmp_type); in optimize_cc_op2() 214 unsigned cmp_type = flags & AF_CMP_TYPE_MASK; in optimize_CNDcc_op() local 256 if (cmp_type != AF_FLOAT_CMP && ddst_type == AF_FLOAT_DST) in optimize_CNDcc_op()
|
D | sb_expr.cpp | 197 unsigned cmp_type = flags & AF_CMP_TYPE_MASK; in fold_setcc() local 222 if (cmp_type == AF_FLOAT_CMP) { in fold_setcc() 234 } else if (cmp_type == AF_UINT_CMP && cv1.u == 0 && cc == AF_CC_GE) { in fold_setcc() 239 if (cmp_type == AF_FLOAT_CMP) { in fold_setcc() 251 } else if (cmp_type == AF_UINT_CMP && cv0.u == 0 && cc == AF_CC_GT) { in fold_setcc() 257 if (s0.abs == s1.abs && s0.neg == s1.neg && cmp_type != AF_FLOAT_CMP) { in fold_setcc() 884 unsigned cmp_type = alu_cnd_flags & AF_CMP_TYPE_MASK; in evaluate_condition() local 887 switch (cmp_type) { in evaluate_condition() 1158 unsigned get_setcc_op(unsigned cc, unsigned cmp_type, bool int_dst) { in get_setcc_op() argument 1160 if (int_dst && cmp_type == AF_FLOAT_CMP) { in get_setcc_op() [all …]
|
/third_party/openssl/crypto/x509/ |
D | v3_utl.c | 832 static int do_check_string(const ASN1_STRING *a, int cmp_type, equal_fn equal, in do_check_string() argument 840 if (cmp_type > 0) { in do_check_string() 841 if (cmp_type != a->type) in do_check_string() 843 if (cmp_type == V_ASN1_IA5STRING) in do_check_string()
|