| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| H A D | ir_equals.cpp | 37 return a->equals(b, ignore); 45 ir_instruction::equals(const ir_instruction *, enum ir_node_type) const function in class:ir_instruction 51 ir_constant::equals(const ir_instruction *ir, enum ir_node_type) const function in class:ir_constant 74 ir_dereference_variable::equals(const ir_instruction *ir, function in class:ir_dereference_variable 85 ir_dereference_array::equals(const ir_instruction *ir, function in class:ir_dereference_array 95 if (!array->equals(other->array, ignore)) 98 if (!array_index->equals(other->array_index, ignore)) 105 ir_swizzle::equals(const ir_instruction *ir, function in class:ir_swizzle 124 return val->equals(other->val, ignore); 128 ir_texture::equals(cons function in class:ir_texture 193 ir_expression::equals(const ir_instruction *ir, enum ir_node_type ignore) const function in class:ir_expression [all...] |
| H A D | opt_algebraic.cpp | 219 if (x->val->equals(y->val) && 220 x->val->equals(z->val) && 221 x->val->equals(w->val)) { 515 if (other && op_expr[i]->operands[0]->equals(other)) { 575 if (!neg->operands[0]->equals(x_operand)) 656 if (abs_expr->operands[0]->equals(sign_expr->operands[0])) { 778 } else if (ir->operands[0]->equals(ir->operands[1])) { 793 } else if (ir->operands[0]->equals(ir->operands[1])) { 818 } else if (ir->operands[0]->equals(ir->operands[1])) { 976 } else if (ir->operands[0]->equals(i [all...] |
| H A D | opt_vectorize.cpp | 264 (lhs && !ir->lhs->equals(lhs)) || 265 (rhs && !ir->rhs->equals(rhs, ir_type_swizzle))) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | ir_equals.cpp | 37 return a->equals(b, ignore); 45 ir_instruction::equals(const ir_instruction *, enum ir_node_type) const function in class:ir_instruction 51 ir_constant::equals(const ir_instruction *ir, enum ir_node_type) const function in class:ir_constant 74 ir_dereference_variable::equals(const ir_instruction *ir, function in class:ir_dereference_variable 85 ir_dereference_array::equals(const ir_instruction *ir, function in class:ir_dereference_array 95 if (!array->equals(other->array, ignore)) 98 if (!array_index->equals(other->array_index, ignore)) 105 ir_swizzle::equals(const ir_instruction *ir, function in class:ir_swizzle 124 return val->equals(other->val, ignore); 128 ir_texture::equals(cons function in class:ir_texture 193 ir_expression::equals(const ir_instruction *ir, enum ir_node_type ignore) const function in class:ir_expression [all...] |
| H A D | opt_algebraic.cpp | 219 if (x->val->equals(y->val) && 220 x->val->equals(z->val) && 221 x->val->equals(w->val)) { 515 if (other && op_expr[i]->operands[0]->equals(other)) { 575 if (!neg->operands[0]->equals(x_operand)) 655 if (abs_expr->operands[0]->equals(sign_expr->operands[0])) { 779 } else if (ir->operands[0]->equals(ir->operands[1])) { 794 } else if (ir->operands[0]->equals(ir->operands[1])) { 819 } else if (ir->operands[0]->equals(ir->operands[1])) { 977 } else if (ir->operands[0]->equals(i [all...] |
| H A D | opt_vectorize.cpp | 264 (lhs && !ir->lhs->equals(lhs)) || 265 (rhs && !ir->rhs->equals(rhs, ir_type_swizzle))) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/ |
| H A D | test_fs_copy_propagation.cpp | 133 EXPECT_TRUE(mov->dst.equals(vgrf0)); 134 EXPECT_TRUE(mov->src[0].equals(vgrf2)); 138 EXPECT_TRUE(add->dst.equals(vgrf1)); 139 EXPECT_TRUE(add->src[0].equals(vgrf2)); 140 EXPECT_TRUE(add->src[1].equals(vgrf3)); 196 EXPECT_TRUE(mov->dst.equals(vgrf0)); 197 EXPECT_TRUE(mov->src[0].equals(vgrf1)); 202 EXPECT_TRUE(sel->dst.equals(vgrf2)); 204 EXPECT_TRUE(sel->src[0].equals(vgrf1)); 206 EXPECT_TRUE(sel->src[0].equals(vgrf [all...] |
| H A D | brw_vec4_cse.cpp | 104 return xs[0].equals(ys[0]) && 105 ((xs[1].equals(ys[1]) && xs[2].equals(ys[2])) || 106 (xs[2].equals(ys[1]) && xs[1].equals(ys[2]))); 114 * the equals operator will fail due to mismatches in unused components. 125 return tmp_x.equals(tmp_y); 127 return xs[0].equals(ys[0]) && xs[1].equals(ys[1]) && xs[2].equals(y [all...] |
| H A D | brw_fs_cse.cpp | 122 return xs[0].equals(ys[0]) && 123 ((xs[1].equals(ys[1]) && xs[2].equals(ys[2])) || 124 (xs[2].equals(ys[1]) && xs[1].equals(ys[2]))); 142 bool ret = (xs[0].equals(ys[0]) && xs[1].equals(ys[1])) || 143 (xs[1].equals(ys[0]) && xs[0].equals(ys[1])); 159 if (!xs[i].equals(y [all...] |
| H A D | brw_fs_cmod_propagation.cpp | 68 if ((inst->src[0].equals(scan_inst->src[0]) && 70 (inst->src[0].equals(scan_inst->src[1]) && 74 inst->src[1].equals(scan_inst->src[1])) || 76 inst->src[1].equals(scan_inst->src[0]))) {
|
| H A D | brw_vec4_cmod_propagation.cpp | 104 if ((inst->src[0].equals(scan_inst->src[0]) && 106 (inst->src[0].equals(scan_inst->src[1]) && 110 inst->src[1].equals(scan_inst->src[1])) || 112 inst->src[1].equals(scan_inst->src[0]))) {
|
| H A D | brw_fs_sel_peephole.cpp | 166 if (!then_mov[i]->dst.equals(else_mov[i]->dst) || 192 if (then_mov[i]->src[0].equals(else_mov[i]->src[0])) {
|
| H A D | brw_fs_register_coalesce.cpp | 53 if (!dst.equals(inst->src[i])) { 62 return inst->dst.equals(inst->src[0]);
|
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| H A D | test_fs_copy_propagation.cpp | 144 EXPECT_TRUE(mov->dst.equals(vgrf0)); 145 EXPECT_TRUE(mov->src[0].equals(vgrf2)); 149 EXPECT_TRUE(add->dst.equals(vgrf1)); 150 EXPECT_TRUE(add->src[0].equals(vgrf2)); 151 EXPECT_TRUE(add->src[1].equals(vgrf3)); 207 EXPECT_TRUE(mov->dst.equals(vgrf0)); 208 EXPECT_TRUE(mov->src[0].equals(vgrf1)); 213 EXPECT_TRUE(sel->dst.equals(vgrf2)); 215 EXPECT_TRUE(sel->src[0].equals(vgrf1)); 217 EXPECT_TRUE(sel->src[0].equals(vgrf [all...] |
| H A D | brw_vec4_cse.cpp | 104 return xs[0].equals(ys[0]) && 105 ((xs[1].equals(ys[1]) && xs[2].equals(ys[2])) || 106 (xs[2].equals(ys[1]) && xs[1].equals(ys[2]))); 114 * the equals operator will fail due to mismatches in unused components. 125 return tmp_x.equals(tmp_y); 127 return xs[0].equals(ys[0]) && xs[1].equals(ys[1]) && xs[2].equals(y [all...] |
| H A D | brw_fs_cse.cpp | 123 return xs[0].equals(ys[0]) && 124 ((xs[1].equals(ys[1]) && xs[2].equals(ys[2])) || 125 (xs[2].equals(ys[1]) && xs[1].equals(ys[2]))); 143 bool ret = (xs[0].equals(ys[0]) && xs[1].equals(ys[1])) || 144 (xs[1].equals(ys[0]) && xs[0].equals(ys[1])); 160 if (!xs[i].equals(y [all...] |
| H A D | brw_vec4_cmod_propagation.cpp | 104 if ((inst->src[0].equals(scan_inst->src[0]) && 106 (inst->src[0].equals(scan_inst->src[1]) && 110 inst->src[1].equals(scan_inst->src[1])) || 112 inst->src[1].equals(scan_inst->src[0]))) {
|
| H A D | brw_fs_sel_peephole.cpp | 167 if (!then_mov[i]->dst.equals(else_mov[i]->dst) || 193 if (then_mov[i]->src[0].equals(else_mov[i]->src[0])) {
|
| H A D | brw_fs_cmod_propagation.cpp | 71 if ((inst->src[0].equals(scan_inst->src[0]) && 73 (inst->src[0].equals(scan_inst->src[1]) && 77 inst->src[1].equals(scan_inst->src[1])) || 79 inst->src[1].equals(scan_inst->src[0]))) {
|
| H A D | brw_ir.h | 55 bool equals(const backend_reg &r) const;
|
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/ |
| H A D | xorg-wrapper.c | 87 char *stripped, *equals, *key, *value; local in function:parse_config 103 equals = strchr(stripped, '='); 104 if (!equals) { 109 *equals = 0; 111 value = strip(equals + 1); /* To remove leading whitespace from val */
|
| /xsrc/external/mit/libvdpau/dist/src/ |
| H A D | vdpau_wrapper.c | 369 char * equals = strchr(buffer, '='); local in function:init_config 372 if (equals == NULL) { 376 *equals = '\0'; 377 param = equals + 1;
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/glcpp/tests/ |
| H A D | 147-define-macro-no-space.c | 16 #define E= equals
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/glcpp/tests/ |
| H A D | 147-define-macro-no-space.c | 16 #define E= equals
|
| /xsrc/external/mit/fontconfig/dist/fc-lang/ |
| H A D | fc-lang.py | 64 def equals(self, other_cs): member in class:CharSet 137 assert charset.equals(charset) # sanity check for the equals function 219 if s_cmp.equals(s):
|