| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | u_memset.h | 34 long d0, d1; local in function:util_memset32 37 : "=&c" (d0), "=&D" (d1) 53 long d0, d1; local in function:util_memset64 56 : "=&c" (d0), "=&D" (d1)
|
| /xsrc/external/mit/glu/dist/src/libtess/ |
| H A D | geom.c | 203 void __gl_edgeIntersect( GLUvertex *o1, GLUvertex *d1, argument 206 /* Given edges (o1,d1) and (o2,d2), compute their point of intersection. 221 if( ! VertLeq( o1, d1 )) { Swap( o1, d1 ); } 223 if( ! VertLeq( o1, o2 )) { Swap( o1, o2 ); Swap( d1, d2 ); } 225 if( ! VertLeq( o2, d1 )) { 227 v->s = (o2->s + d1->s) / 2; 228 } else if( VertLeq( d1, d2 )) { 229 /* Interpolate between o2 and d1 */ 230 z1 = EdgeEval( o1, o2, d1 ); [all...] |
| H A D | normal.c | 80 GLdouble maxVal[3], minVal[3], d1[3], d2[3], tNorm[3]; local in function:ComputeNormal 114 d1[0] = v1->coords[0] - v2->coords[0]; 115 d1[1] = v1->coords[1] - v2->coords[1]; 116 d1[2] = v1->coords[2] - v2->coords[2]; 121 tNorm[0] = d1[1]*d2[2] - d1[2]*d2[1]; 122 tNorm[1] = d1[2]*d2[0] - d1[0]*d2[2]; 123 tNorm[2] = d1[0]*d2[1] - d1[ [all...] |
| H A D | geom.h | 80 void __gl_edgeIntersect( GLUvertex *o1, GLUvertex *d1,
|
| /xsrc/external/mit/xf86-video-geode/dist/src/ |
| H A D | geode_common.c | 47 : "=&c" (d0), "=&S" (d1), "=&D" (d2) \ 55 : "=&c" (d0), "=&S" (d1), "=&D" (d2) \ 63 : "=&c" (d0), "=&S" (d1), "=&D" (d2) \ 72 : "=&c" (d0), "=&S" (d1), "=&D" (d2) \ 81 int d0, d1, d2; local in function:geode_memory_to_screen_blt
|
| H A D | durango.c | 165 { int d0, d1, d2, d3, d4; \ 179 : "=a"(d0),"=&D"(d1),"=&S"(d2), \
|
| /xsrc/external/mit/freetype/dist/include/freetype/ |
| H A D | ftcache.h | 697 #define FTC_IMAGE_TYPE_COMPARE( d1, d2 ) \ 698 ( (d1)->face_id == (d2)->face_id && \ 699 (d1)->width == (d2)->width && \ 700 (d1)->flags == (d2)->flags )
|
| /xsrc/external/mit/xdm/dist/xdm/ |
| H A D | file.c | 42 DisplayTypeMatch (DisplayType d1, DisplayType d2) argument 44 return d1.location == d2.location && 45 d1.lifetime == d2.lifetime && 46 d1.origin == d2.origin;
|
| /xsrc/external/mit/xkbcomp/dist/ |
| H A D | parseutils.h | 44 #define d1(str,a) fprintf(stderr,str,a); macro 48 #define d1(str,a) macro
|
| /xsrc/external/mit/pixman/dist/pixman/ |
| H A D | pixman-arm-neon-asm-bilinear.S | 191 vst1.32 {d0, d1}, [OUT]! 202 vuzp.u8 d0, d1 204 vuzp.u8 d1, d3 206 convert_8888_to_0565 d2, d1, d0, q1, \tmp1, \tmp2 478 bilinear_load_\()\src_fmt d0, d1, d2 482 vmlal.u8 q1, d1, d29 494 \mask_fmt, \op, 1, d0, d1, q0, d18, d19, q9 496 \mask_fmt, 1, d0, d1, q0, d4, \ 499 \op, 1, d0, d1, q0, d18, d19, q9, \ 501 bilinear_deinterleave_dst \mask_fmt, \op, 1, d0, d1, q [all...] |
| H A D | pixman-arm-neon-asm.S | 106 * d0, d1, d2, d3 - contain loaded source pixel data 116 * d0, d1, d2, d3 - contain loaded source pixel data 124 * back-to-back, they take pixel data from {d0, d1, d2, d3} and {d4, d5}, 134 * instead of having 8 packed pixels in {d0, d1, d2, d3} registers, we 136 * values), d1 register for green, d2 for red and d3 for alpha. This 140 * vuzp.8 d0, d1 142 * vuzp.8 d1, d3 147 * vzip.8 d1, d3 149 * vzip.8 d0, d1 218 * vld4.32 {d0, d1, d [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/i915/ |
| H A D | i915_fpc_optimize.c | 46 static boolean same_src_dst_reg(struct i915_full_src_register *s1, struct i915_full_dst_register *d1) argument 48 return (s1->Register.File == d1->Register.File && 49 s1->Register.Indirect == d1->Register.Indirect && 50 s1->Register.Dimension == d1->Register.Dimension && 51 s1->Register.Index == d1->Register.Index); 54 static boolean same_dst_reg(struct i915_full_dst_register *d1, struct i915_full_dst_register *d2) argument 56 return (d1->Register.File == d2->Register.File && 57 d1->Register.Indirect == d2->Register.Indirect && 58 d1->Register.Dimension == d2->Register.Dimension && 59 d1 62 same_src_reg(struct i915_full_src_register * d1,struct i915_full_src_register * d2) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/i915/ |
| H A D | i915_fpc_optimize.c | 47 struct i915_full_dst_register *d1) 49 return (s1->Register.File == d1->Register.File && 50 s1->Register.Indirect == d1->Register.Indirect && 51 s1->Register.Dimension == d1->Register.Dimension && 52 s1->Register.Index == d1->Register.Index); 56 same_dst_reg(struct i915_full_dst_register *d1, argument 59 return (d1->Register.File == d2->Register.File && 60 d1->Register.Indirect == d2->Register.Indirect && 61 d1->Register.Dimension == d2->Register.Dimension && 62 d1 46 same_src_dst_reg(struct i915_full_src_register * s1,struct i915_full_dst_register * d1) argument 66 same_src_reg(struct i915_full_src_register * d1,struct i915_full_src_register * d2) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/sb/ |
| H A D | sb_expr.cpp | 106 node *d1 = l->def; local in function:r600_sb::expr_handler::defs_equal 109 if (d1->type != d2->type || d1->subtype != d2->subtype) 112 if (d1->is_pred_set() || d2->is_pred_set()) 115 if (d1->type == NT_OP) { 116 switch (d1->subtype) { 119 static_cast<alu_node*>(d1), 121 // case NST_FETCH_INST: return ops_equal(static_cast<fetch_node*>(d1), 123 // case NST_CF_INST: return ops_equal(static_cast<cf_node*>(d1), 519 alu_node *d1 local in function:r600_sb::expr_handler::fold_mul_add 691 alu_node *d1 = static_cast<alu_node*>(v1->def); local in function:r600_sb::expr_handler::fold_assoc [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/sb/ |
| H A D | sb_expr.cpp | 106 node *d1 = l->def; local in function:r600_sb::expr_handler::defs_equal 109 if (d1->type != d2->type || d1->subtype != d2->subtype) 112 if (d1->is_pred_set() || d2->is_pred_set()) 115 if (d1->type == NT_OP) { 116 switch (d1->subtype) { 119 static_cast<alu_node*>(d1), 121 // case NST_FETCH_INST: return ops_equal(static_cast<fetch_node*>(d1), 123 // case NST_CF_INST: return ops_equal(static_cast<cf_node*>(d1), 519 alu_node *d1 local in function:r600_sb::expr_handler::fold_mul_add 691 alu_node *d1 = static_cast<alu_node*>(v1->def); local in function:r600_sb::expr_handler::fold_assoc [all...] |
| /xsrc/external/mit/xf86-video-sis/dist/src/ |
| H A D | sis_memcpy.c | 407 int d1,d2,d3; local in function:builtin_memcpy 418 : "=&c" (d1), "=&D" (d2), "=&S" (d3) 428 int d1,d2,d3; local in function:SiS_builtin_memcp2 467 : "=&c" (d1), "=&D" (d2), "=&S" (d3) 501 long d1, d2, d3; local in function:builtin_memcpy 508 : "=%c" (d1), "=&D" (d2), "=&S" (d3) 519 long d1,d2,d3; local in function:SiS_builtin_memcp2 549 : "=&c" (d1), "=&D" (d2), "=&S" (d3)
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| H A D | st_cb_copyimage.c | 339 same_size_and_swizzle(const struct util_format_description *d1, argument 344 if (d1->layout != d2->layout || 345 d1->nr_channels != d2->nr_channels || 346 d1->is_array != d2->is_array) 349 for (i = 0; i < d1->nr_channels; i++) { 350 if (d1->channel[i].size != d2->channel[i].size) 353 if (d1->swizzle[i] <= PIPE_SWIZZLE_W && 355 d1->swizzle[i] != d2->swizzle[i])
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| H A D | st_cb_copyimage.c | 339 same_size_and_swizzle(const struct util_format_description *d1, argument 344 if (d1->layout != d2->layout || 345 d1->nr_channels != d2->nr_channels || 346 d1->is_array != d2->is_array) 349 for (i = 0; i < d1->nr_channels; i++) { 350 if (d1->channel[i].size != d2->channel[i].size) 353 if (d1->swizzle[i] <= PIPE_SWIZZLE_W && 355 d1->swizzle[i] != d2->swizzle[i])
|
| /xsrc/external/mit/freetype/dist/src/pshinter/ |
| H A D | pshalgo.h | 108 #define PSH_DIR_COMPARE( d1, d2 ) ( (d1) == (d2) || (d1) == -(d2) )
|
| /xsrc/external/mit/xinput/dist/src/ |
| H A D | transform.c | 110 matrix_s4(Matrix *m, float x02, float x12, float d1, float d2, int main_diag) argument 116 matrix_set(m, 0, 0, d1); 121 matrix_set(m, 0, 1, d1);
|
| /xsrc/external/mit/xf86-video-xgi/dist/src/ |
| H A D | xgi_memcpy.c | 456 long d1,d2,d3; local in function:XGI_builtin_memcpy_arm 503 int d1,d2,d3; local in function:builtin_memcpy 514 : "=&c" (d1), "=&D" (d2), "=&S" (d3) 525 int d1,d2,d3; local in function:XGI_builtin_memcp2 564 : "=&c" (d1), "=&D" (d2), "=&S" (d3) 599 long d1, d2, d3; local in function:builtin_memcpy 606 : "=%c" (d1), "=&D" (d2), "=&S" (d3) 618 long d1,d2,d3; local in function:XGI_builtin_memcp2 648 : "=&c" (d1), "=&D" (d2), "=&S" (d3)
|
| /xsrc/external/mit/freetype/dist/src/base/ |
| H A D | ftstroke.c | 108 FT_Vector d1, d2; local in function:ft_conic_is_small_enough 113 d1.x = base[1].x - base[2].x; 114 d1.y = base[1].y - base[2].y; 118 close1 = FT_IS_SMALL( d1.x ) && FT_IS_SMALL( d1.y ); 139 *angle_out = FT_Atan2( d1.x, d1.y ); 143 *angle_in = FT_Atan2( d1.x, d1.y ); 203 FT_Vector d1, d local in function:ft_cubic_is_small_enough [all...] |
| /xsrc/external/mit/libXt/dist/src/ |
| H A D | Intrinsic.c | 590 int d1, d2; local in function:SearchChildren 596 in_depth, &d1, found_depth); 599 d1 = 10000; 602 *out_depth = (d1 < d2 ? d1 : d2); 603 return (d1 < d2 ? w1 : w2); 614 int d1, d2; local in function:NameListToWidget 640 in_depth, &d1, found_depth); 643 *out_depth = (d1 < d2 ? d1 [all...] |
| /xsrc/external/mit/xf86-video-mach64/dist/src/ |
| H A D | atimach64io.h | 397 long d0, d1, d2; \ 403 "=&D" (d1), \
|
| /xsrc/external/mit/glu/dist/src/libnurbs/nurbtess/ |
| H A D | partitionY.cc | 565 directedLine* d1=diagonal_vertices[kk]; local in function:partitionY 567 /*check d1, and replace diagonal_vertices[kk] if necessary*/ 568 if(d1 == v1) { 581 if(d1 == v2) { 596 /*check if d1 is to left of v1->prev->head:v1->head:v1->tail*/ 598 v1->head(), v1->tail(), d1->head())) 602 v2->getPrev()->tail(), d1->head())); 608 /*check if d1 is to left of v2->prev->head:v2->head:v2->tail*/ 610 v2->head(), v2->tail(), d1->head())) 614 v1->getPrev()->tail(), d1 [all...] |