Searched refs:t3 (Results 1 - 25 of 38) sorted by relevance

12

/xsrc/external/mit/pixman/dist/pixman/
H A Dpixman-mips-dspr2-asm.S161 CONVERT_2x8888_TO_2x0565 t0, t1, t2, t3, t4, t5, t6, t7, t8
164 sh t3, 2(a0)
174 CONVERT_1x8888_TO_1x0565 t0, t1, t2, t3
203 CONVERT_2x0565_TO_2x8888 t0, t1, t2, t3, t4, t5, t6, t7, t8, t9
206 sw t3, 4(a0)
216 CONVERT_1x0565_TO_1x8888 t0, t1, t2, t3
246 lw t3, 12(a1)
255 or t3, t3, t9
264 sw t3, 1
[all...]
H A Dpixman-mips-memcpy-asm.S110 lw t3, 12(a1)
120 sw t3, 12(a0)
132 lw t3, 44(a1)
142 sw t3, 44(a0)
166 lw t3, 12(a1)
176 sw t3, 12(a0)
191 lw t3, 0(a1) /* the first t3 may be equal t0 ... optimize? */
195 sw t3, -4(a0)
260 LWHI t3, 1
[all...]
H A Dpixman-rvv.c162 vfloat32m1_t t0, t1, t2, t3, t4, f0, f1, f2; local in function:rvv_blend_overlay_float
169 t3 = __riscv_vfmul_vf_f32m1 (f2, 2.0f, vl);
171 f0 = __riscv_vfmul_vv_f32m1 (t3, t4, vl);
248 vfloat32m1_t t0, t1, t2, t3, t4; local in function:rvv_blend_color_dodge_float
256 t3 = __riscv_vfsub_vv_f32m1 (t2, __riscv_vfmul_vv_f32m1 (s, da, vl),
260 vb = __riscv_vmflt_vv_f32m1_b32 (t3, t1, vl);
298 vfloat32m1_t t0, t1, t2, t3, t4, t5, t6, t7; local in function:rvv_blend_color_burn_float
309 t3 = __riscv_vfmul_vv_f32m1 (sa, t1, vl); // sa * (da - sa * (da - d) / s)
314 t6 = __riscv_vfmerge_vfm_f32m1 (t3, 0.0f, is_s_zero, vl);
346 vfloat32m1_t t0, t1, t2, t3, t local in function:rvv_blend_hard_light_float
385 vfloat32m1_t t0, t1, t2, t3, t4, t5, t6, t7, t8, t9, t10, t11, t12, t13; local in function:rvv_blend_soft_light_float
[all...]
/xsrc/external/mit/pixman/dist/test/
H A Dfilter-reduction-test.c71 const pixman_fixed_t *t0, *t1, *t2, *t3, *t4, *t5; local in function:main
82 for (t3 = entries; t3 < end; ++t3)
90 { *t3, *t4, *t5 },
H A Dlowlevel-blt-bench.c373 Mpx_per_sec (double pix_cnt, double t1, double t2, double t3) argument
376 double testtime = t3 - t2;
397 double t1, t2, t3, pix_cnt; local in function:bench_composite
495 t3 = gettime ();
497 printf ("%g,", Mpx_per_sec (pix_cnt, t1, t2, t3));
499 printf (" L1:%7.2f", Mpx_per_sec (pix_cnt, t1, t2, t3));
516 t3 = gettime ();
518 printf ("%g,", Mpx_per_sec (pix_cnt, t1, t2, t3));
520 printf (" L2:%7.2f", Mpx_per_sec (pix_cnt, t1, t2, t3));
533 t3
[all...]
/xsrc/external/mit/mesa-demos/dist/src/tests/
H A Dtexcmp.c33 static TEXTURE *Tx, t1, t2, t3; variable in typeref:typename:TEXTURE *
294 t3.data = LoadRGBImage(TEXTURE_FILE, (GLint *)&t3.w, (GLint *)&t3.h, &t3.format);
295 t3.size = t3.w * t3.h * ((t3.format == GL_RGB) ? 3 : 4);
296 t3
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_sse.h261 __m128i t3 = _mm_unpackhi_epi32(*c, *d); local in function:transpose4_epi32
265 *q = _mm_unpacklo_epi64(t2, t3);
266 *r = _mm_unpackhi_epi64(t2, t3);
287 __m128i t3 = _mm_unpackhi_epi32(*c, *d); local in function:transpose2_64_2_32
291 *q = _mm_unpacklo_epi64(t2, t3);
292 *r = _mm_unpackhi_epi64(t2, t3);
H A Du_pwr8.h175 __m128i t3 = vec_unpackhi_epi32(*c, *d); local in function:transpose4_epi32
179 *q = vec_unpacklo_epi64(t2, t3);
180 *r = vec_unpackhi_epi64(t2, t3);
/xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
H A Dprog_noise.c348 float t0, t1, t2, t3; local in function:_mesa_noise3
459 t3 = 0.6f - x3 * x3 - y3 * y3 - z3 * z3;
460 if (t3 < 0.0f)
463 t3 *= t3;
465 t3 * t3 * grad3(perm[ii + 1 + perm[jj + 1 + perm[kk + 1]]], x3, y3,
531 float t0, t1, t2, t3, t4; local in function:_mesa_noise4
614 t3 = 0.6f - x3 * x3 - y3 * y3 - z3 * z3 - w3 * w3;
615 if (t3 < 0.
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/program/
H A Dprog_noise.c348 float t0, t1, t2, t3; local in function:_mesa_noise3
459 t3 = 0.6f - x3 * x3 - y3 * y3 - z3 * z3;
460 if (t3 < 0.0f)
463 t3 *= t3;
465 t3 * t3 * grad3(perm[ii + 1 + perm[jj + 1 + perm[kk + 1]]], x3, y3,
531 float t0, t1, t2, t3, t4; local in function:_mesa_noise4
614 t3 = 0.6f - x3 * x3 - y3 * y3 - z3 * z3 - w3 * w3;
615 if (t3 < 0.
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
H A Dlp_bld_swizzle.c658 LLVMValueRef t0 = NULL, t1 = NULL, t2 = NULL, t3 = NULL; local in function:lp_build_transpose_aos
690 t3 = lp_build_interleave2_half(gallivm, single_type_lp, src2, src3, 1);
694 t3 = LLVMBuildBitCast(gallivm->builder, t3, double_type, "t3");
703 if (!t3)
704 t3 = double_type_zero;
709 dst[2] = lp_build_interleave2_half(gallivm, double_type_lp, t2, t3, 0);
710 dst[3] = lp_build_interleave2_half(gallivm, double_type_lp, t2, t3, 1);
/xsrc/external/mit/mesa-demos/dist/src/util/
H A Dtrackball.c254 float t1[4], t2[4], t3[4]; local in function:add_quats
268 vcross(q2,q1,t3);
270 vadd(t3,tf,tf);
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
H A Du_pwr8.h175 __m128i t3 = vec_unpackhi_epi32(*c, *d); local in function:transpose4_epi32
179 *q = vec_unpacklo_epi64(t2, t3);
180 *r = vec_unpackhi_epi64(t2, t3);
H A Du_sse.h263 __m128i t3 = _mm_unpackhi_epi32(*c, *d); local in function:transpose4_epi32
267 *q = _mm_unpacklo_epi64(t2, t3);
268 *r = _mm_unpackhi_epi64(t2, t3);
289 __m128i t3 = _mm_unpackhi_epi32(*c, *d); local in function:transpose2_64_2_32
293 *q = _mm_unpacklo_epi64(t2, t3);
294 *r = _mm_unpackhi_epi64(t2, t3);
/xsrc/external/mit/pixman/dist/test/utils/
H A Dutils-prng.c224 uint8_t t1, t2, t3, t4;
228 t3 = randdata.b[i * 4 + 1]; \
232 *buf++ = t3; \
/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
H A Dlp_bld_swizzle.c655 LLVMValueRef t0, t1, t2, t3; local in function:lp_build_transpose_aos
667 t3 = lp_build_interleave2_half(gallivm, single_type_lp, src[2], src[3], 1);
673 t3 = LLVMBuildBitCast(gallivm->builder, t3, double_type, "t3");
678 dst[2] = lp_build_interleave2_half(gallivm, double_type_lp, t2, t3, 0);
679 dst[3] = lp_build_interleave2_half(gallivm, double_type_lp, t2, t3, 1);
/xsrc/external/mit/xorg-server/dist/fb/
H A Dfbblt.c162 FbBits t1, t2, t3, t4;
167 t3 = *src++;
171 *dst++ = t3;
/xsrc/external/mit/mesa-demos/dist/src/demos/
H A Dstex3d.c48 float t0[03], t1[3], t2[3], t3[3]; local in function:BuildTorus
109 t3[0] = v3[0] * scalFac + 0.5;
110 t3[1] = v3[1] * scalFac + 0.5;
111 t3[2] = v3[2] * scalFac + 0.5;
115 glTexCoord3fv(t3);
/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_clip_tri.c520 struct brw_reg t3 = retype(get_tmp(c), BRW_REGISTER_TYPE_UD); local in function:brw_clip_test
548 brw_CMP(p, t3, BRW_CONDITIONAL_L, v2, negate(get_element(v2, 3)));
552 brw_AND(p, t, t, t3);
566 brw_XOR(p, t1, t2, t3);
586 brw_CMP(p, t3, BRW_CONDITIONAL_G, v2, get_element(v2, 3));
590 brw_AND(p, t, t, t3);
604 brw_XOR(p, t1, t2, t3);
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_clip_tri.c520 struct brw_reg t3 = retype(get_tmp(c), BRW_REGISTER_TYPE_UD); local in function:brw_clip_test
548 brw_CMP(p, t3, BRW_CONDITIONAL_L, v2, negate(get_element(v2, 3)));
552 brw_AND(p, t, t, t3);
566 brw_XOR(p, t1, t2, t3);
586 brw_CMP(p, t3, BRW_CONDITIONAL_G, v2, get_element(v2, 3));
590 brw_AND(p, t, t, t3);
604 brw_XOR(p, t1, t2, t3);
/xsrc/external/mit/mesa-demos/dist/src/xdemos/
H A Dsharedtex_mt.c459 pthread_t t0, t1, t2, t3; local in function:main
494 pthread_create(&t3, NULL, threadRunner, &tia3);
/xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/
H A Dbi_pack.c516 enum bi_clause_subword t3,
522 (bi_pack_lu(t3, tuples, tuple_count) << 0) |
514 bi_pack_sync(enum bi_clause_subword t1,enum bi_clause_subword t2,enum bi_clause_subword t3,struct bi_packed_tuple * tuples,ASSERTED unsigned tuple_count,bool z) argument
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_linear_sampler.c848 int t3 = samp->t + fetch_width * samp->dtdx + fetch_height * samp->dtdy; local in function:lp_linear_init_sampler
851 mint = MIN4(t0, t1, t2, t3);
853 maxt = MAX4(t0, t1, t2, t3);
/xsrc/external/mit/xorg-server.old/dist/fb/
H A Dfbblt.c188 FbBits t1, t2, t3, t4;
193 t3 = *src++;
197 *dst++ = t3;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dtexcompress_astc.cpp127 uint8_t t4, t3, t2, t1, t0; local in function:unpack_trit_block
130 t4 = t3 = 2;
135 t3 = T7;
138 t3 = CAT_BITS_2(T6, T5);
163 out[3] = (t3 << n) | m3;

Completed in 28 milliseconds

12