Searched refs:equals (Results 1 - 25 of 67) sorted by relevance

123

/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dir_equals.cpp37 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 Dopt_algebraic.cpp219 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 Dopt_vectorize.cpp264 (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 Dir_equals.cpp37 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 Dopt_algebraic.cpp219 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 Dopt_vectorize.cpp264 (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 Dtest_fs_copy_propagation.cpp133 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 Dbrw_vec4_cse.cpp104 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 Dbrw_fs_cse.cpp122 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 Dbrw_fs_cmod_propagation.cpp68 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 Dbrw_vec4_cmod_propagation.cpp104 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 Dbrw_fs_sel_peephole.cpp166 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 Dbrw_fs_register_coalesce.cpp53 if (!dst.equals(inst->src[i])) {
62 return inst->dst.equals(inst->src[0]);
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dtest_fs_copy_propagation.cpp144 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 Dbrw_vec4_cse.cpp104 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 Dbrw_fs_cse.cpp123 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 Dbrw_vec4_cmod_propagation.cpp104 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 Dbrw_fs_sel_peephole.cpp167 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 Dbrw_fs_cmod_propagation.cpp71 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 Dbrw_ir.h55 bool equals(const backend_reg &r) const;
/xsrc/external/mit/xorg-server/dist/hw/xfree86/
H A Dxorg-wrapper.c87 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 Dvdpau_wrapper.c369 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 D147-define-macro-no-space.c16 #define E= equals
/xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/glcpp/tests/
H A D147-define-macro-no-space.c16 #define E= equals
/xsrc/external/mit/fontconfig/dist/fc-lang/
H A Dfc-lang.py64 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):

Completed in 21 milliseconds

123