Searched refs:s0 (Results 1 - 25 of 74) sorted by relevance

123

/xsrc/external/mit/MesaLib.old/dist/src/util/
H A Drand_xor.c46 const uint64_t s0 = s[1]; local in function:rand_xorshift128plus
47 s[0] = s0;
49 s[1] = s1 ^ s0 ^ (s1 >> 18) ^ (s0 >> 5);
51 return s[1] + s0;
/xsrc/external/mit/MesaLib/dist/src/util/
H A Drand_xor.c50 const uint64_t s0 = s[1]; local in function:rand_xorshift128plus
51 s[0] = s0;
53 s[1] = s1 ^ s0 ^ (s1 >> 18) ^ (s0 >> 5);
55 return s[1] + s0;
/xsrc/external/mit/xorg-server/dist/miext/shadow/
H A Dsh3224.c66 CARD32 s0, s1; local in function:sh24_32BltLine
68 s0 = READ(src++);
71 WRITE((CARD32 *) dst, (s0 & 0xffffff) | (s1 << 24));
73 WRITE((CARD32 *) dst, (s0 << 8) | ((s1 & 0xffffff) >> 16));
75 s0 = READ(src++);
78 ((s1 & 0xffffff) >> 8) | (s0 << 16));
81 (s1 << 16) | ((s0 & 0xffffff) >> 8));
86 ((s0 & 0xffffff) >> 16) | (s1 << 8));
88 WRITE((CARD32 *) (dst + 8), (s0 << 24) | (s1 & 0xffffff));
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_linear_interp.c130 float s0[4]; local in function:lp_linear_init_interp
139 memset(s0, 0, sizeof(s0));
149 s0[j] = a0[j] * oow;
157 s0[j] = a0[j];
164 s0[0] += x * dsdx[0] + y * dsdy[0];
165 s0[1] += x * dsdx[1] + y * dsdy[1];
166 s0[2] += x * dsdx[2] + y * dsdy[2];
167 s0[3] += x * dsdx[3] + y * dsdy[3];
180 float a = s0[
[all...]
H A Dlp_setup_analysis.c97 float s0, float s1,
101 *a = (s0 - s1) / (x0 - x1);
102 *b = s0 - *a * x0;
96 calc_interps(float x0,float x1,float s0,float s1,float * a,float * b) argument
H A Dlp_linear_sampler.c572 int s0 = s >> FIXED16_SHIFT;
574 int cs0 = CLAMP(s0 , 0, tex_width);
575 int cs1 = CLAMP(s0 + 1, 0, tex_width);
752 float s0 = a0[schan->u.index+1][schan->swizzle]; local in function:lp_linear_init_sampler
779 s0 * width_oow);
830 int s0 = samp->s; local in function:lp_linear_init_sampler
835 mins = MIN2(s0, s1);
837 maxs = MAX2(s0, s1);
841 int s0 = samp->s; local in function:lp_linear_init_sampler
850 mins = MIN4(s0, s
[all...]
/xsrc/external/mit/MesaLib/dist/src/asahi/compiler/
H A Dagx_compile.c483 agx_index dst, agx_index s0, agx_index s1, agx_index s2)
491 case nir_op_feq: return agx_fcmpsel_to(b, dst, s0, s1, t, f, AGX_FCOND_EQ);
492 case nir_op_flt: return agx_fcmpsel_to(b, dst, s0, s1, t, f, AGX_FCOND_LT);
493 case nir_op_fge: return agx_fcmpsel_to(b, dst, s0, s1, t, f, AGX_FCOND_GE);
494 case nir_op_fneu: return agx_fcmpsel_to(b, dst, s0, s1, f, t, AGX_FCOND_EQ);
496 case nir_op_ieq: return agx_icmpsel_to(b, dst, s0, s1, t, f, AGX_ICOND_UEQ);
497 case nir_op_ine: return agx_icmpsel_to(b, dst, s0, s1, f, t, AGX_ICOND_UEQ);
498 case nir_op_ilt: return agx_icmpsel_to(b, dst, s0, s1, t, f, AGX_ICOND_SLT);
499 case nir_op_ige: return agx_icmpsel_to(b, dst, s0, s1, f, t, AGX_ICOND_SLT);
500 case nir_op_ult: return agx_icmpsel_to(b, dst, s0, s
482 agx_emit_alu_bool(agx_builder * b,nir_op op,agx_index dst,agx_index s0,agx_index s1,agx_index s2) argument
534 agx_index s0 = srcs > 0 ? agx_alu_src_index(b, instr->src[0]) : agx_null(); local in function:agx_emit_alu
[all...]
/xsrc/external/mit/xorg-server.old/dist/fb/
H A Dfb24_32.c116 CARD32 s0, s1; local in function:fb24_32BltDown
117 s0 = READ(src++);
118 s0 = FbDoDestInvarientMergeRop(s0);
122 WRITE((CARD32 *)dst, (s0 & 0xffffff) | (s1 << 24));
124 WRITE((CARD32 *)dst, (s0 << 8) | ((s1 & 0xffffff) >> 16));
126 s0 = READ(src++);
127 s0 = FbDoDestInvarientMergeRop(s0);
129 WRITE((CARD32 *)(dst+4), ((s1 & 0xffffff) >> 8) | (s0 << 1
212 CARD32 s0, s1; local in function:fb24_32BltUp
[all...]
/xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/
H A Dbifrost_compile.c1498 bi_fmul_f32(bi_builder *b, bi_index s0, bi_index s1) argument
1500 return bi_fma_f32(b, s0, s1, bi_imm_f32(-0.0f), BI_ROUND_NONE);
1507 bi_lower_frcp_32(bi_builder *b, bi_index dst, bi_index s0) argument
1509 bi_index x1 = bi_frcp_approx_f32(b, s0);
1510 bi_index m = bi_frexpm_f32(b, s0, false, false);
1511 bi_index e = bi_frexpe_f32(b, bi_neg(s0), false, false);
1519 bi_lower_frsq_32(bi_builder *b, bi_index dst, bi_index s0) argument
1521 bi_index x1 = bi_frsq_approx_f32(b, s0);
1522 bi_index m = bi_frexpm_f32(b, s0, false, true);
1523 bi_index e = bi_frexpe_f32(b, bi_neg(s0), fals
1536 bi_lower_fexp2_32(bi_builder * b,bi_index dst,bi_index s0) argument
1566 bi_fexp_32(bi_builder * b,bi_index dst,bi_index s0,bi_index log2_base) argument
1580 bi_lower_flog2_32(bi_builder * b,bi_index dst,bi_index s0) argument
1614 bi_flog2_32(bi_builder * b,bi_index dst,bi_index s0) argument
1668 bi_lower_fsincos_32(bi_builder * b,bi_index dst,bi_index s0,bool cos) argument
1705 bi_clper_xor(bi_builder * b,bi_index s0,bi_index s1) argument
1719 bi_emit_alu_bool(bi_builder * b,unsigned sz,nir_op op,bi_index dst,bi_index s0,bi_index s1,bi_index s2) argument
1872 bi_index s0 = bi_word(idx, instr->src[0].swizzle[0]); local in function:bi_emit_alu
1886 bi_index s0 = bi_word(idx, instr->src[0].swizzle[0]); local in function:bi_emit_alu
1913 bi_index s0 = srcs > 0 ? bi_alu_src_index(instr->src[0], comps) : bi_null(); local in function:bi_emit_alu
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
H A Dst_draw.h79 float s0, float t0, float s1, float t1,
H A Dst_cb_drawtex.c267 const GLfloat s0 = obj->CropRect[0] / wt; local in function:st_DrawTex
272 /*printf("crop texcoords: %g, %g .. %g, %g\n", s0, t0, s1, t1);*/
273 SET_ATTRIB(0, tex_attr, s0, t0, 0.0f, 1.0f); /* lower left */
276 SET_ATTRIB(3, tex_attr, s0, t1, 0.0f, 1.0f); /* upper left */
H A Dst_draw.c391 float s0, float t0, float s1, float t1,
415 verts[0].s = s0;
448 verts[3].s = s0;
389 st_draw_quad(struct st_context * st,float x0,float y0,float x1,float y1,float z,float s0,float t0,float s1,float t1,const float * color,unsigned num_instances) argument
/xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
H A Dst_draw.h81 float s0, float t0, float s1, float t1,
H A Dst_cb_drawtex.c267 const GLfloat s0 = obj->CropRect[0] / wt; local in function:st_DrawTex
272 /*printf("crop texcoords: %g, %g .. %g, %g\n", s0, t0, s1, t1);*/
273 SET_ATTRIB(0, tex_attr, s0, t0, 0.0f, 1.0f); /* lower left */
276 SET_ATTRIB(3, tex_attr, s0, t1, 0.0f, 1.0f); /* upper left */
/xsrc/external/mit/MesaLib.old/dist/include/CL/
H A Dcl_platform.h576 __CL_ANON_STRUCT__ struct{ cl_char s0, s1; }; member in struct:__anonbc3cf64c010a::__anonbc3cf64c0308
589 __CL_ANON_STRUCT__ struct{ cl_char s0, s1, s2, s3; }; member in struct:__anonbc3cf64c050a::__anonbc3cf64c0708
608 __CL_ANON_STRUCT__ struct{ cl_char s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonbc3cf64c090a::__anonbc3cf64c0b08
627 __CL_ANON_STRUCT__ struct{ cl_char s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, sE, sF; }; member in struct:__anonbc3cf64c0d0a::__anonbc3cf64c0f08
651 __CL_ANON_STRUCT__ struct{ cl_uchar s0, s1; }; member in struct:__anonbc3cf64c110a::__anonbc3cf64c1308
664 __CL_ANON_STRUCT__ struct{ cl_uchar s0, s1, s2, s3; }; member in struct:__anonbc3cf64c150a::__anonbc3cf64c1708
683 __CL_ANON_STRUCT__ struct{ cl_uchar s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonbc3cf64c190a::__anonbc3cf64c1b08
702 __CL_ANON_STRUCT__ struct{ cl_uchar s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, sE, sF; }; member in struct:__anonbc3cf64c1d0a::__anonbc3cf64c1f08
726 __CL_ANON_STRUCT__ struct{ cl_short s0, s1; }; member in struct:__anonbc3cf64c210a::__anonbc3cf64c2308
739 __CL_ANON_STRUCT__ struct{ cl_short s0, s member in struct:__anonbc3cf64c250a::__anonbc3cf64c2708
758 __CL_ANON_STRUCT__ struct{ cl_short s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonbc3cf64c290a::__anonbc3cf64c2b08
777 __CL_ANON_STRUCT__ struct{ cl_short s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, member in struct:__anonbc3cf64c2d0a::__anonbc3cf64c2f08
801 __CL_ANON_STRUCT__ struct{ cl_ushort s0, s1; }; member in struct:__anonbc3cf64c310a::__anonbc3cf64c3308
814 __CL_ANON_STRUCT__ struct{ cl_ushort s0, s1, s2, s3; }; member in struct:__anonbc3cf64c350a::__anonbc3cf64c3708
833 __CL_ANON_STRUCT__ struct{ cl_ushort s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonbc3cf64c390a::__anonbc3cf64c3b08
852 __CL_ANON_STRUCT__ struct{ cl_ushort s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD member in struct:__anonbc3cf64c3d0a::__anonbc3cf64c3f08
876 __CL_ANON_STRUCT__ struct{ cl_half s0, s1; }; member in struct:__anonbc3cf64c410a::__anonbc3cf64c4308
889 __CL_ANON_STRUCT__ struct{ cl_half s0, s1, s2, s3; }; member in struct:__anonbc3cf64c450a::__anonbc3cf64c4708
908 __CL_ANON_STRUCT__ struct{ cl_half s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonbc3cf64c490a::__anonbc3cf64c4b08
927 __CL_ANON_STRUCT__ struct{ cl_half s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, member in struct:__anonbc3cf64c4d0a::__anonbc3cf64c4f08
950 __CL_ANON_STRUCT__ struct{ cl_int s0, s1; }; member in struct:__anonbc3cf64c510a::__anonbc3cf64c5308
963 __CL_ANON_STRUCT__ struct{ cl_int s0, s1, s2, s3; }; member in struct:__anonbc3cf64c550a::__anonbc3cf64c5708
982 __CL_ANON_STRUCT__ struct{ cl_int s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonbc3cf64c590a::__anonbc3cf64c5b08
1001 __CL_ANON_STRUCT__ struct{ cl_int s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, s member in struct:__anonbc3cf64c5d0a::__anonbc3cf64c5f08
1025 __CL_ANON_STRUCT__ struct{ cl_uint s0, s1; }; member in struct:__anonbc3cf64c610a::__anonbc3cf64c6308
1038 __CL_ANON_STRUCT__ struct{ cl_uint s0, s1, s2, s3; }; member in struct:__anonbc3cf64c650a::__anonbc3cf64c6708
1057 __CL_ANON_STRUCT__ struct{ cl_uint s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonbc3cf64c690a::__anonbc3cf64c6b08
1076 __CL_ANON_STRUCT__ struct{ cl_uint s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, member in struct:__anonbc3cf64c6d0a::__anonbc3cf64c6f08
1099 __CL_ANON_STRUCT__ struct{ cl_long s0, s1; }; member in struct:__anonbc3cf64c710a::__anonbc3cf64c7308
1112 __CL_ANON_STRUCT__ struct{ cl_long s0, s1, s2, s3; }; member in struct:__anonbc3cf64c750a::__anonbc3cf64c7708
1131 __CL_ANON_STRUCT__ struct{ cl_long s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonbc3cf64c790a::__anonbc3cf64c7b08
1150 __CL_ANON_STRUCT__ struct{ cl_long s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, member in struct:__anonbc3cf64c7d0a::__anonbc3cf64c7f08
1174 __CL_ANON_STRUCT__ struct{ cl_ulong s0, s1; }; member in struct:__anonbc3cf64c810a::__anonbc3cf64c8308
1187 __CL_ANON_STRUCT__ struct{ cl_ulong s0, s1, s2, s3; }; member in struct:__anonbc3cf64c850a::__anonbc3cf64c8708
1206 __CL_ANON_STRUCT__ struct{ cl_ulong s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonbc3cf64c890a::__anonbc3cf64c8b08
1225 __CL_ANON_STRUCT__ struct{ cl_ulong s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, member in struct:__anonbc3cf64c8d0a::__anonbc3cf64c8f08
1250 __CL_ANON_STRUCT__ struct{ cl_float s0, s1; }; member in struct:__anonbc3cf64c910a::__anonbc3cf64c9308
1263 __CL_ANON_STRUCT__ struct{ cl_float s0, s1, s2, s3; }; member in struct:__anonbc3cf64c950a::__anonbc3cf64c9708
1282 __CL_ANON_STRUCT__ struct{ cl_float s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonbc3cf64c990a::__anonbc3cf64c9b08
1301 __CL_ANON_STRUCT__ struct{ cl_float s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, member in struct:__anonbc3cf64c9d0a::__anonbc3cf64c9f08
1325 __CL_ANON_STRUCT__ struct{ cl_double s0, s1; }; member in struct:__anonbc3cf64ca10a::__anonbc3cf64ca308
1338 __CL_ANON_STRUCT__ struct{ cl_double s0, s1, s2, s3; }; member in struct:__anonbc3cf64ca50a::__anonbc3cf64ca708
1357 __CL_ANON_STRUCT__ struct{ cl_double s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonbc3cf64ca90a::__anonbc3cf64cab08
1376 __CL_ANON_STRUCT__ struct{ cl_double s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD member in struct:__anonbc3cf64cad0a::__anonbc3cf64caf08
[all...]
/xsrc/external/mit/MesaLib/dist/include/CL/
H A Dcl_platform.h533 __CL_ANON_STRUCT__ struct{ cl_char s0, s1; }; member in struct:__anonea00a01f010a::__anonea00a01f0308
546 __CL_ANON_STRUCT__ struct{ cl_char s0, s1, s2, s3; }; member in struct:__anonea00a01f050a::__anonea00a01f0708
565 __CL_ANON_STRUCT__ struct{ cl_char s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonea00a01f090a::__anonea00a01f0b08
584 __CL_ANON_STRUCT__ struct{ cl_char s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, sE, sF; }; member in struct:__anonea00a01f0d0a::__anonea00a01f0f08
608 __CL_ANON_STRUCT__ struct{ cl_uchar s0, s1; }; member in struct:__anonea00a01f110a::__anonea00a01f1308
621 __CL_ANON_STRUCT__ struct{ cl_uchar s0, s1, s2, s3; }; member in struct:__anonea00a01f150a::__anonea00a01f1708
640 __CL_ANON_STRUCT__ struct{ cl_uchar s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonea00a01f190a::__anonea00a01f1b08
659 __CL_ANON_STRUCT__ struct{ cl_uchar s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, sE, sF; }; member in struct:__anonea00a01f1d0a::__anonea00a01f1f08
683 __CL_ANON_STRUCT__ struct{ cl_short s0, s1; }; member in struct:__anonea00a01f210a::__anonea00a01f2308
696 __CL_ANON_STRUCT__ struct{ cl_short s0, s member in struct:__anonea00a01f250a::__anonea00a01f2708
715 __CL_ANON_STRUCT__ struct{ cl_short s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonea00a01f290a::__anonea00a01f2b08
734 __CL_ANON_STRUCT__ struct{ cl_short s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, member in struct:__anonea00a01f2d0a::__anonea00a01f2f08
758 __CL_ANON_STRUCT__ struct{ cl_ushort s0, s1; }; member in struct:__anonea00a01f310a::__anonea00a01f3308
771 __CL_ANON_STRUCT__ struct{ cl_ushort s0, s1, s2, s3; }; member in struct:__anonea00a01f350a::__anonea00a01f3708
790 __CL_ANON_STRUCT__ struct{ cl_ushort s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonea00a01f390a::__anonea00a01f3b08
809 __CL_ANON_STRUCT__ struct{ cl_ushort s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD member in struct:__anonea00a01f3d0a::__anonea00a01f3f08
833 __CL_ANON_STRUCT__ struct{ cl_half s0, s1; }; member in struct:__anonea00a01f410a::__anonea00a01f4308
846 __CL_ANON_STRUCT__ struct{ cl_half s0, s1, s2, s3; }; member in struct:__anonea00a01f450a::__anonea00a01f4708
865 __CL_ANON_STRUCT__ struct{ cl_half s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonea00a01f490a::__anonea00a01f4b08
884 __CL_ANON_STRUCT__ struct{ cl_half s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, member in struct:__anonea00a01f4d0a::__anonea00a01f4f08
907 __CL_ANON_STRUCT__ struct{ cl_int s0, s1; }; member in struct:__anonea00a01f510a::__anonea00a01f5308
920 __CL_ANON_STRUCT__ struct{ cl_int s0, s1, s2, s3; }; member in struct:__anonea00a01f550a::__anonea00a01f5708
939 __CL_ANON_STRUCT__ struct{ cl_int s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonea00a01f590a::__anonea00a01f5b08
958 __CL_ANON_STRUCT__ struct{ cl_int s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, s member in struct:__anonea00a01f5d0a::__anonea00a01f5f08
982 __CL_ANON_STRUCT__ struct{ cl_uint s0, s1; }; member in struct:__anonea00a01f610a::__anonea00a01f6308
995 __CL_ANON_STRUCT__ struct{ cl_uint s0, s1, s2, s3; }; member in struct:__anonea00a01f650a::__anonea00a01f6708
1014 __CL_ANON_STRUCT__ struct{ cl_uint s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonea00a01f690a::__anonea00a01f6b08
1033 __CL_ANON_STRUCT__ struct{ cl_uint s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, member in struct:__anonea00a01f6d0a::__anonea00a01f6f08
1056 __CL_ANON_STRUCT__ struct{ cl_long s0, s1; }; member in struct:__anonea00a01f710a::__anonea00a01f7308
1069 __CL_ANON_STRUCT__ struct{ cl_long s0, s1, s2, s3; }; member in struct:__anonea00a01f750a::__anonea00a01f7708
1088 __CL_ANON_STRUCT__ struct{ cl_long s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonea00a01f790a::__anonea00a01f7b08
1107 __CL_ANON_STRUCT__ struct{ cl_long s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, member in struct:__anonea00a01f7d0a::__anonea00a01f7f08
1131 __CL_ANON_STRUCT__ struct{ cl_ulong s0, s1; }; member in struct:__anonea00a01f810a::__anonea00a01f8308
1144 __CL_ANON_STRUCT__ struct{ cl_ulong s0, s1, s2, s3; }; member in struct:__anonea00a01f850a::__anonea00a01f8708
1163 __CL_ANON_STRUCT__ struct{ cl_ulong s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonea00a01f890a::__anonea00a01f8b08
1182 __CL_ANON_STRUCT__ struct{ cl_ulong s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, member in struct:__anonea00a01f8d0a::__anonea00a01f8f08
1207 __CL_ANON_STRUCT__ struct{ cl_float s0, s1; }; member in struct:__anonea00a01f910a::__anonea00a01f9308
1220 __CL_ANON_STRUCT__ struct{ cl_float s0, s1, s2, s3; }; member in struct:__anonea00a01f950a::__anonea00a01f9708
1239 __CL_ANON_STRUCT__ struct{ cl_float s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonea00a01f990a::__anonea00a01f9b08
1258 __CL_ANON_STRUCT__ struct{ cl_float s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD, member in struct:__anonea00a01f9d0a::__anonea00a01f9f08
1282 __CL_ANON_STRUCT__ struct{ cl_double s0, s1; }; member in struct:__anonea00a01fa10a::__anonea00a01fa308
1295 __CL_ANON_STRUCT__ struct{ cl_double s0, s1, s2, s3; }; member in struct:__anonea00a01fa50a::__anonea00a01fa708
1314 __CL_ANON_STRUCT__ struct{ cl_double s0, s1, s2, s3, s4, s5, s6, s7; }; member in struct:__anonea00a01fa90a::__anonea00a01fab08
1333 __CL_ANON_STRUCT__ struct{ cl_double s0, s1, s2, s3, s4, s5, s6, s7, s8, s9, sA, sB, sC, sD member in struct:__anonea00a01fad0a::__anonea00a01faf08
[all...]
/xsrc/external/mit/freetype/dist/src/sfnt/
H A Dpngshim.c98 v82 s, s0, s1, a; local in function:premultiply_data
112 s0 = s & n0xFF; /* R B R B R B R B */
117 s0 = vector_shuffle( s0, m0 ); /* B R B R B R B R */
119 s0 *= a;
121 s0 += n0x80;
123 s0 = ( s0 + ( s0 >> n8 ) ) >> n8;
126 s = s0 | ( s
[all...]
/xsrc/external/mit/pixman/dist/pixman/
H A Dpixman-mips-dspr2-asm.S966 SAVE_REGS_ON_STACK 8, s0, s1, s2, s3, s4, s5
991 MIPS_2xUN8x4_MUL_2xUN8x4 a1, a1, t0, t1, t4, t5, t9, s0, s1, s2, s3, s4, s5
992 MIPS_2xUN8x4_MUL_2xUN8 t0, t1, t8, t8, t0, t1, t9, s0, s1, s2, s3, s4, s5
995 MIPS_2xUN8x4_MUL_2xUN8x4 t2, t3, t0, t1, t2, t3, t9, s0, s1, s2, s3, s4, s5
1015 MIPS_2xUN8x4_MUL_2xUN8 t2, t3, t0, t1, t2, t3, t9, s0, s1, s2, s3, s4, s5
1044 MIPS_UN8x4_MUL_UN8x4 a1, t0, t2, t9, t3, t4, t5, s0
1047 MIPS_UN8x4_MUL_UN8x4 t1, t0, t1, t9, t3, t4, t5, s0
1050 RESTORE_REGS_FROM_STACK 8, s0, s1, s2, s3, s4, s5
1063 RESTORE_REGS_FROM_STACK 8, s0, s1, s2, s3, s4, s5
1069 RESTORE_REGS_FROM_STACK 8, s0, s
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/xa/
H A Dxa_renderer.c172 float x, float y, float s0, float t0, float s1, float t1)
181 vertex[4] = s0; /*s */
286 float s0, t0, s1, t1; local in function:setup_vertex_data_yuv
296 s0 = spt0[0] / tex->width0;
302 add_vertex_1tex(r, dstX, dstY, s0, t0);
308 add_vertex_1tex(r, dstX, dstY + dstH, s0, t1);
472 float s0, t0, s1, t1; local in function:renderer_copy
478 s0 = sx / src_width;
490 add_vertex_1tex(r, x0, y0, s0, t0);
493 add_vertex_1tex(r, x0, y1, s0, t
171 add_vertex_2tex(struct xa_context * r,float x,float y,float s0,float t0,float s1,float t1) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/xa/
H A Dxa_renderer.c176 float x, float y, float s0, float t0, float s1, float t1)
185 vertex[4] = s0; /*s */
290 float s0, t0, s1, t1; local in function:setup_vertex_data_yuv
300 s0 = spt0[0] / tex->width0;
306 add_vertex_1tex(r, dstX, dstY, s0, t0);
312 add_vertex_1tex(r, dstX, dstY + dstH, s0, t1);
480 float s0, t0, s1, t1; local in function:renderer_copy
486 s0 = sx / src_width;
498 add_vertex_1tex(r, x0, y0, s0, t0);
501 add_vertex_1tex(r, x0, y1, s0, t
175 add_vertex_2tex(struct xa_context * r,float x,float y,float s0,float t0,float s1,float t1) argument
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dffvertex_prog.c411 GLint s0,
419 tokens[0] = s0;
429 #define register_param1(p,s0) register_param5(p,s0,0,0,0,0)
430 #define register_param2(p,s0,s1) register_param5(p,s0,s1,0,0,0)
431 #define register_param3(p,s0,s1,s2) register_param5(p,s0,s1,s2,0,0)
432 #define register_param4(p,s0,s1,s2,s3) register_param5(p,s0,s
410 register_param5(struct tnl_program * p,GLint s0,GLint s1,GLint s2,GLint s3,GLint s4) argument
463 register_const4f(struct tnl_program * p,GLfloat s0,GLfloat s1,GLfloat s2,GLfloat s3) argument
501 register_matrix_param5(struct tnl_program * p,GLint s0,GLint s1,GLint s2,GLint s3,GLint s4,struct ureg * matrix) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dffvertex_prog.c412 GLint s0,
419 tokens[0] = s0;
428 #define register_param1(p,s0) register_param4(p,s0,0,0,0)
429 #define register_param2(p,s0,s1) register_param4(p,s0,s1,0,0)
430 #define register_param3(p,s0,s1,s2) register_param4(p,s0,s1,s2,0)
462 GLfloat s0,
470 values[0].f = s0;
411 register_param4(struct tnl_program * p,GLint s0,GLint s1,GLint s2,GLint s3) argument
461 register_const4f(struct tnl_program * p,GLfloat s0,GLfloat s1,GLfloat s2,GLfloat s3) argument
499 register_matrix_param5(struct tnl_program * p,GLint s0,GLint s1,GLint s2,GLint s3,struct ureg * matrix) argument
[all...]
/xsrc/external/mit/xf86-video-pnozz/dist/src/
H A Dpnozz_driver.c988 int s0, s1, s2, s3, ps; local in function:DumpSCR
991 s0 = (scr >> SHIFT_0) & 7;
995 width = shift_1(s0) + shift_1(s1) + shift_1(s2) + shift_2(s3);
1080 int s0, s1, s2, s3, ps, crtcline; local in function:PnozzSetDepth
1143 s0 = upper_bit(bits);
1144 if (s0 > 0) {
1145 bits &= ~(1 << s0);
1146 s0 -= 4;
1147 } else s0 = 0;
1150 xf86Msg(X_ERROR, "sls: %x sh: %d %d %d %d leftover: %x\n", new_sls, s0, s
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_blit.c268 float s0, float t0, float s1, float t1,
276 ctx->vertices[0][1][0] = s0; /*s*/
297 ctx->vertices[3][1][0] = s0;
527 float s0, t0, s1, t1; local in function:util_blit_pixels_tex
538 s0 = (float) srcX0;
548 s0 /= w;
635 s0, t0, s1, t1,
264 setup_vertex_data_tex(struct blit_state * ctx,enum pipe_texture_target src_target,unsigned src_face,float x0,float y0,float x1,float y1,float s0,float t0,float s1,float t1,float z) argument
/xsrc/external/mit/mesa-demos/dist/src/egl/opengles1/
H A Dtorus.c103 GLfloat s0, s1, t; local in function:draw_torus
111 s0 = 20.0 * theta / (2.0 * M_PI);
121 Texcoord(tarray[vcount], s0, t);

Completed in 52 milliseconds

123