HomeSort by: relevance | last modified time | path
    Searched refs:t0 (Results 1 - 25 of 165) sorted by relevancy

1 2 3 4 5 6 7

  /xsrc/external/mit/mesa-demos/dist/src/egl/openvg/
lion.c 15 static double t0 = -1.0; local
31 if (t0 < 0.0) {
32 t0 = eglutGet(EGLUT_ELAPSED_TIME) / 1000.0;
37 if (now - t0 > 5.0) {
40 num_frames, now - t0, num_frames / (now - t0));
42 t0 = now;
  /xsrc/external/mit/mesa-demos/dist/src/perf/
common.c 73 const double t0 = PerfGetTime(); local
79 } while (t1 - t0 < 0.1 * minDuration);
84 const double t0 = PerfGetTime(); local
92 } while (t1 - t0 < minDuration);
94 rate = iters / (t1 - t0);
glsl-compile-time.c 146 int t0, t1; local
154 t0 = glutGet(GLUT_ELAPSED_TIME);
158 fixed_func_time += t1 - t0;
161 t0 = glutGet(GLUT_ELAPSED_TIME);
165 glsl_time_1 += t1 - t0;
167 t0 = glutGet(GLUT_ELAPSED_TIME);
171 glsl_time_2 += t1 - t0;
216 GLint t0, t1, t2; local
220 t0 = glutGet(GLUT_ELAPSED_TIME);
233 *compile_time = t1 - t0;
    [all...]
  /xsrc/external/mit/pixman/dist/pixman/
pixman-mips-dspr2-asm.S 156 lw t0, 0(a1)
161 CONVERT_2x8888_TO_2x0565 t0, t1, t2, t3, t4, t5, t6, t7, t8
172 lw t0, 0(a1)
174 CONVERT_1x8888_TO_1x0565 t0, t1, t2, t3
198 lhu t0, 0(a1)
203 CONVERT_2x0565_TO_2x8888 t0, t1, t2, t3, t4, t5, t6, t7, t8, t9
214 lhu t0, 0(a1)
216 CONVERT_1x0565_TO_1x8888 t0, t1, t2, t3
243 lw t0, 0(a1)
252 or t0, t0, t
    [all...]
pixman-mips-memcpy-asm.S 81 addu t0, a0, a2 /* t0 is the "past the end" address */
85 * the "t0-32" address
86 * This means: for x=128 the last "safe" a0 address is "t0-160"
87 * Alternatively, for x=64 the last "safe" a0 address is "t0-96"
88 * In the current version we use "pref 30, 128(a0)", so "t0-160" is the limit
90 subu t9, t0, 160 /* t9 is the "last safe pref 30, 128(a0)" address */
104 lw t0, 0(a1)
117 sw t0, 0(a0)
126 lw t0, 32(a1
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/redbook/
double.c 48 static GLdouble t0 = 0.; variable
71 dt = t - t0;
72 t0 = t;
102 t0 = gettime();
alpha3D.c 133 static double t0 = -1.; local
137 t0 = -1.;
142 if (t0 < 0.)
143 t0 = t;
144 dt = t - t0;
145 t0 = t;
  /xsrc/external/mit/mesa-demos/dist/src/demos/
renormal.c 19 static double t0 = -1.; local
21 if (t0 < 0.0)
22 t0 = t;
23 dt = t - t0;
24 t0 = t;
vao_demo.c 208 static double t0 = -1.; local
210 if (t0 < 0.0)
211 t0 = t;
212 dt = t - t0;
213 t0 = t;
clearspd.c 34 double t0, t1; local
45 t0 = glutGet(GLUT_ELAPSED_TIME) * 0.001;
54 t0 = glutGet(GLUT_ELAPSED_TIME) * 0.001;
69 if (t1-t0 < MinPeriod) {
75 clearRate = Loops / (t1-t0);
79 Loops, t1-t0, clearRate, pixelRate );
83 Loops, t1-t0, clearRate, pixelRate);
bounce.c 152 static double t0 = -1.; local
155 if (t0 < 0.)
156 t0 = t;
157 dt = t - t0;
158 t0 = t;
  /xsrc/external/mit/pixman/dist/test/
filter-reduction-test.c 71 const pixman_fixed_t *t0, *t1, *t2, *t3, *t4, *t5; local
76 for (t0 = entries; t0 < end; ++t0)
89 { { *t0, *t1, *t2 },
  /xsrc/external/mit/MesaLib/dist/src/mesa/program/
prog_noise.c 222 float t0 = 1.0f - x0 * x0; local
223 /* if(t0 < 0.0f) t0 = 0.0f; // this never happens for the 1D case */
224 t0 *= t0;
225 n0 = t0 * t0 * grad1(perm[i0 & 0xff], x0);
261 float t0, t1, t2; local
289 t0 = 0.5f - x0 * x0 - y0 * y0;
290 if (t0 < 0.0f
348 float t0, t1, t2, t3; local
531 float t0, t1, t2, t3, t4; local
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
prog_noise.c 222 float t0 = 1.0f - x0 * x0; local
223 /* if(t0 < 0.0f) t0 = 0.0f; // this never happens for the 1D case */
224 t0 *= t0;
225 n0 = t0 * t0 * grad1(perm[i0 & 0xff], x0);
261 float t0, t1, t2; local
289 t0 = 0.5f - x0 * x0 - y0 * y0;
290 if (t0 < 0.0f
348 float t0, t1, t2, t3; local
531 float t0, t1, t2, t3, t4; local
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/
st_draw.h 81 float s0, float t0, float s1, float t1,
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/
st_draw.h 79 float s0, float t0, float s1, float t1,
  /xsrc/external/mit/mesa-demos/dist/src/glsl/
noise2.c 23 static GLint t0 = 0; variable
45 if (t - t0 >= 5000) {
46 GLfloat seconds = (GLfloat) (t - t0) / 1000.0f;
51 t0 = t;
geom-outlining-130.c 74 static double t0 = -1.; local
77 if (t0 < 0.0)
78 t0 = t;
79 dt = t - t0;
80 t0 = t;
  /xsrc/external/mit/mesa-demos/dist/src/tests/
front-back-modes.c 34 static double t0; variable
42 Xrot += (t1 - t0) * 20; /* 20 degrees per second */
43 t0 = t1;
120 t0 = glutGet(GLUT_ELAPSED_TIME) / 1000.0;
subtex.c 140 static double t0 = -1.; local
142 if (t0 < 0.0)
143 t0 = t;
144 dt = t - t0;
145 t0 = t;
copypixrate.c 106 double t1, t0 = glutGet(GLUT_ELAPSED_TIME) / 1000.0; local
131 } while (t1 - t0 < 5.0);
135 copyRate = iters / (t1 - t0);
140 iters, t1-t0, copyRate, mbRate);
fillrate.c 63 GLdouble t0, t1; local
97 t0 = glutGet(GLUT_ELAPSED_TIME) * 0.001;
103 } while (t1 - t0 < minPeriod);
108 rate = pixels / (t1 - t0);
  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
brw_clip.h 56 struct brw_reg t0, t1; member in struct:brw_clip_compile::__anon2372
136 struct brw_reg t0,
  /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
brw_clip.h 56 struct brw_reg t0, t1; member in struct:brw_clip_compile::__anon4711
136 struct brw_reg t0,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
u_sse.h 258 __m128i t0 = _mm_unpacklo_epi32(*a, *b); local
263 *o = _mm_unpacklo_epi64(t0, t1);
264 *p = _mm_unpackhi_epi64(t0, t1);
284 __m128i t0 = *a01; local
289 *o = _mm_unpacklo_epi64(t0, t1);
290 *p = _mm_unpackhi_epi64(t0, t1);

Completed in 28 milliseconds

1 2 3 4 5 6 7