HomeSort by relevance Sort by last modified time
    Searched refs:y4 (Results 26 - 50 of 62) sorted by null

12 3

  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_noise.c 529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; local
571 y4 = y0 - 1.0f + 4.0f * G4;
625 t4 = 0.6f - x4 * x4 - y4 * y4 - z4 * z4 - w4 * w4;
633 y4, z4, w4);
  /external/mesa3d/src/mesa/program/
prog_noise.c 529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; local
571 y4 = y0 - 1.0f + 4.0f * G4;
625 t4 = 0.6f - x4 * x4 - y4 * y4 - z4 * z4 - w4 * w4;
633 y4, z4, w4);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
renderer.h 147 VGfloat x4, VGfloat y4);
arc.c 486 bezier->x4, bezier->y4);
501 bezier->x4, bezier->y4);
522 bezier->x4, bezier->y4);
645 bezier.x4, bezier.y4);
stroker.c 358 VGfloat x3, VGfloat y3, VGfloat x4, VGfloat y4)
368 r4 = a1 * x4 + b1 * y4 + c1;
373 a2 = y4 - y3;
375 c2 = x4 * y3 - x3 * y4;
996 bez->x4, bez->y4);
    [all...]
image.c 532 VGfloat x4, y4; local
547 y4 = img->height;
558 x1, y1, x2, y2, x3, y3, x4, y4);
  /external/clang/test/Sema/
array-init.c 69 int y4[4][3] = { local
  /external/mesa3d/src/gallium/state_trackers/vega/
renderer.h 147 VGfloat x4, VGfloat y4);
arc.c 486 bezier->x4, bezier->y4);
501 bezier->x4, bezier->y4);
522 bezier->x4, bezier->y4);
645 bezier.x4, bezier.y4);
stroker.c 358 VGfloat x3, VGfloat y3, VGfloat x4, VGfloat y4)
368 r4 = a1 * x4 + b1 * y4 + c1;
373 a2 = y4 - y3;
375 c2 = x4 * y3 - x3 * y4;
996 bez->x4, bez->y4);
    [all...]
image.c 532 VGfloat x4, y4; local
547 y4 = img->height;
558 x1, y1, x2, y2, x3, y3, x4, y4);
  /external/chromium_org/v8/test/mjsunit/
debug-evaluate-locals-optimized-double.js 58 args: { names: ["i", "x4", "y4"], values: [4, 11.11, 12.12] } }
218 function f(i, x4, y4) {
debug-evaluate-locals-optimized.js 49 args: { names: ["i", "x4", "y4"], values: [4, 11, 12] } }
201 function f(i, x4, y4) {
large-object-allocation.js 160 this.y4 = i;
  /external/v8/test/mjsunit/
debug-evaluate-locals-optimized-double.js 52 { locals: {a4: 9.09, b4: 10.10}, args: { names: ["i", "x4", "y4"], values: [4, 11.11, 12.12] } }
216 function f(i, x4, y4) {
debug-evaluate-locals-optimized.js 42 { locals: {a4: 9, b4: 10}, args: { names: ["i", "x4", "y4"], values: [4, 11, 12] } }
197 function f(i, x4, y4) {
large-object-allocation.js 160 this.y4 = i;
  /frameworks/rs/
rsFont.h 252 float x4, float y4, float z4,
rsFont.cpp 674 float x4, float y4, float z4,
680 if (x1 > mSurfaceWidth || y1 < 0.0f || x2 < 0 || y4 > mSurfaceHeight) {
687 ALOGE("V3 x: %f y: %f z: %f", x4, y4, z4);*/
711 (*currentPos++) = y4;
  /external/chromium_org/third_party/freetype/src/raster/
ftraster.c 1655 Long y1, y2, y3, y4, x4, ymin1, ymax1, ymin2, ymax2; local
    [all...]
  /external/freetype/src/raster/
ftraster.c 1679 Long y1, y2, y3, y4, x4, ymin1, ymax1, ymin2, ymax2; local
    [all...]
  /frameworks/rs/driver/
rsdGL.cpp 539 float x4, float y4, float z4, float u4, float v4) {
541 float vtx[] = {x1,y1,z1, x2,y2,z2, x3,y3,z3, x4,y4,z4};
rsdRuntimeStubs.cpp 262 float x4, float y4, float z4, float u4, float v4) {
278 //ALOGE("%4.2f, %4.2f, %4.2f", x4, y4, z4);
280 float vtx[] = {x1,y1,z1, x2,y2,z2, x3,y3,z3, x4,y4,z4};
296 float x4, float y4, float z4) {
300 x4, y4, z4, 0, 0);
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
CollisionSystem.java 711 final float y4 = otherEnd.y; local
713 final float denom = (y4 - y3) * (x2 - x1) - (x4 - x3) * (y2 - y1);
715 final float uA = ((x4 - x3) * (y1 - y3) - (y4 - y3) * (x1 - x3)) / denom;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES11Canvas.java 331 float y4 = m[1] * x2 + m[5] * y2 + m[13]; local
334 r[3] = y4 / w4;
    [all...]

Completed in 348 milliseconds

12 3