Searched refs:x0 (Results 326 - 350 of 1819) sorted by relevance

<<11121314151617181920>>

/external/bluetooth/bluedroid/embdrv/sbc/encoder/srce/
H A Dsbc_dct.c87 register SINT32 x0, x1, x2, x3, x4, x5, x6, x7,temp; local
89 /*x0= (pInVect[4])/2 ;*/
90 SBC_IDCT_MULT(SBC_COS_PI_SUR_4,pInVect[4], x0);
91 /*printf("x0 0x%x = %d = %d * %d\n", x0, x0, SBC_COS_PI_SUR_4, pInVect[4]);*/
101 /* 2-point IDCT of x0 and x4 as in (11) */
102 temp = x0 ;
103 SBC_IDCT_MULT(SBC_COS_PI_SUR_4, ( x0 + x4 ), x0); /*x
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatQuad.cpp182 float x0 = p0.x() - center.x(), y0 = p0.y() - center.y(); local
185 if ((x0 * x0 + y0 * y0) <= radius2 || (x1 * x1 + y1 * y1) <= radius2)
191 float b = x1 - x0;
192 float c = x0 * y1 - x1 * y0;
202 return (((x0 <= x && x <= x1) || (x0 >= x && x >= x1))
/external/llvm/test/MC/AArch64/
H A Darm64-diags.s15 ld4.8b {v0, v1, v2, v3}, [x0], #33
17 ; CHECK-ERRORS: ld4.8b {v0, v1, v2, v3}, [x0], #33
20 ldr x0, [x0, #804]
21 ldr w0, [x0, #802]
22 ldr x0, [x0, #804]!
24 ldr x0, [x0], #804
34 ldur x0, [x
[all...]
/external/valgrind/main/memcheck/tests/
H A Datomic_incs.c136 = { (unsigned int)p, (unsigned int)n, 0x0 };
159 = { (unsigned int)p, (unsigned int)n << 24, 0x0 };
203 = { (unsigned long)p, (unsigned long)n << 56, 0x0 };
335 = { (unsigned int)p, (unsigned int)n, 0x0 };
358 = { (unsigned int)p, (unsigned int)n << 16, 0x0 };
402 = { (unsigned long)p, (unsigned long)n << 48, 0x0 };
524 = { (unsigned int)p, (unsigned int)n, 0x0 };
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_setup_point.c118 float x0 = info->v0[0][0] - setup->pixel_offset; local
123 info->a0[slot][0] = 0.5 - (dadx * x0 + dady * y0);
134 float x0 = info->v0[0][0] - setup->pixel_offset; local
143 info->a0[slot][1] = 0.5 - (dadx * x0 + dady * y0);
318 const int x0 = subpixel_snap(v0[0][0] - setup->pixel_offset) - fixed_width/2; local
338 bbox.x0 = (x0 + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
339 bbox.x1 = (x0 + fixed_width + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
391 plane[0].c = 1-bbox.x0;
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_aalinetemp.h115 line.x0 = v0->attrib[FRAG_ATTRIB_WPOS][0];
119 line.dx = line.x1 - line.x0;
137 compute_plane(line.x0, line.y0, line.x1, line.y1,
142 compute_plane(line.x0, line.y0, line.x1, line.y1,
144 compute_plane(line.x0, line.y0, line.x1, line.y1,
146 compute_plane(line.x0, line.y0, line.x1, line.y1,
148 compute_plane(line.x0, line.y0, line.x1, line.y1,
162 compute_plane(line.x0, line.y0, line.x1, line.y1, invW0, invW1, line.wPlane);
174 compute_plane(line.x0, line.y0, line.x1, line.y1, a0, a1,
H A Ds_span.h176 (S).interpMask = 0x0; \
177 (S).arrayMask = 0x0; \
178 (S).arrayAttribs = 0x0; \
/external/deqp/framework/common/
H A DtcuBilinearImageCompare.cpp88 deUint32 x0 = u>>NUM_SUBPIXEL_BITS; local
90 deUint32 x1 = x0+1; //de::min(x0+1, (deUint32)(access.getWidth()-1));
96 deUint32 fx1 = u-(x0<<NUM_SUBPIXEL_BITS);
99 deUint32 p00 = readRGBA8Raw(access, x0, y0);
101 deUint32 p01 = readRGBA8Raw(access, x0, y1);
120 const deUint32 x0 = (deUint32)de::max(x-1, 0);
128 compareThreshold(resPix, readRGBA8(reference, x0, y1), threshold) ||
130 compareThreshold(resPix, readRGBA8(reference, x0, y0), threshold) ||
133 compareThreshold(resPix, readRGBA8(reference, x0, y
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_setup_point.c118 float x0 = info->v0[0][0] - setup->pixel_offset; local
123 info->a0[slot][0] = 0.5 - (dadx * x0 + dady * y0);
134 float x0 = info->v0[0][0] - setup->pixel_offset; local
143 info->a0[slot][1] = 0.5 - (dadx * x0 + dady * y0);
318 const int x0 = subpixel_snap(v0[0][0] - setup->pixel_offset) - fixed_width/2; local
338 bbox.x0 = (x0 + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
339 bbox.x1 = (x0 + fixed_width + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
391 plane[0].c = 1-bbox.x0;
/external/mesa3d/src/mesa/swrast/
H A Ds_aalinetemp.h115 line.x0 = v0->attrib[FRAG_ATTRIB_WPOS][0];
119 line.dx = line.x1 - line.x0;
137 compute_plane(line.x0, line.y0, line.x1, line.y1,
142 compute_plane(line.x0, line.y0, line.x1, line.y1,
144 compute_plane(line.x0, line.y0, line.x1, line.y1,
146 compute_plane(line.x0, line.y0, line.x1, line.y1,
148 compute_plane(line.x0, line.y0, line.x1, line.y1,
162 compute_plane(line.x0, line.y0, line.x1, line.y1, invW0, invW1, line.wPlane);
174 compute_plane(line.x0, line.y0, line.x1, line.y1, a0, a1,
H A Ds_span.h176 (S).interpMask = 0x0; \
177 (S).arrayMask = 0x0; \
178 (S).arrayAttribs = 0x0; \
/external/pdfium/core/src/fxge/fontdata/chromefontdata/
H A DFoxitFixed.c8 0x0, 0x4, 0x2, 0x0, 0x1, 0x1, 0x1, 0xe,
10 0x65, 0x64, 0x4f, 0x54, 0x46, 0x0, 0x1, 0x1,
11 0x1, 0x23, 0xf8, 0x10, 0x0, 0xf8, 0x2a, 0x1,
15 0x1c, 0x3e, 0x6b, 0x12, 0x0, 0x11, 0x1, 0x1,
37 0x65, 0x64, 0x20, 0x4f, 0x54, 0x46, 0x0, 0x0,
38 0x0, 0x0, 0x22, 0x0,
[all...]
H A DFoxitSerifBold.c8 0x0, 0x4, 0x2, 0x0, 0x1, 0x1, 0x1, 0x13,
11 0x6c, 0x64, 0x0, 0x1, 0x1, 0x1, 0x26, 0xf8,
12 0x10, 0x0, 0xf8, 0x1c, 0x1, 0xf8, 0x1d, 0x2,
16 0x1c, 0x44, 0x8e, 0x12, 0x0, 0x4, 0x1, 0x1,
27 0x66, 0x20, 0x4f, 0x54, 0x46, 0x0, 0x7b, 0x2,
28 0x0, 0x1, 0x0, 0xf, 0x0, 0x4f, 0x0,
[all...]
H A DFoxitSansBoldItalic.c8 0x0, 0x4, 0x2, 0x0, 0x1, 0x1, 0x1, 0x17,
11 0x49, 0x74, 0x61, 0x6c, 0x69, 0x63, 0x0, 0x1,
12 0x1, 0x1, 0x27, 0xf8, 0x10, 0x0, 0xf8, 0x1c,
17 0x12, 0x0, 0x4, 0x1, 0x1, 0x5, 0x2f, 0x48,
28 0x6e, 0x73, 0x20, 0x50, 0x53, 0x0, 0x0, 0x1,
29 0x0, 0x1, 0x0, 0x0,
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_draw_quad.c100 float x0, float y0, float x1, float y1, float z)
122 v[0] = x0;
137 v[24] = x0;
99 util_draw_texquad(struct pipe_context *pipe, struct cso_context *cso, float x0, float y0, float x1, float y1, float z) argument
/external/chromium_org/third_party/skia/bench/
H A DShaderMaskBench.cpp69 const SkScalar x0 = SkIntToScalar(-10); local
74 SkScalar x = x0 + rand.nextUScalar1() * dim.fX;
81 SkScalar x = x0 + rand.nextUScalar1() * dim.fX;
/external/chromium_org/third_party/skia/experimental/
H A DSkSetPoly3To3.cpp18 SkScalar x0 = pts0[i].fX - ave0.fX; local
22 op[0] += SkScalarMul(x0, x1);
23 op[1] += SkScalarMul(x0, y1);
H A DSkSetPoly3To3_D.cpp33 SkScalar x0 = pts0[i].fX - ave0.fX; local
37 tmp[0] += SkDScalar_setMul(x0, x1);
38 tmp[1] += SkDScalar_setMul(x0, y1);
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapProcState_shaderproc.h60 unsigned x0 = TILEX_PROCF(fx, maxX); local
64 SRC_TO_FILTER(row0[x0]),
66 SRC_TO_FILTER(row1[x0]),
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_draw_quad.c100 float x0, float y0, float x1, float y1, float z)
122 v[0] = x0;
137 v[24] = x0;
99 util_draw_texquad(struct pipe_context *pipe, struct cso_context *cso, float x0, float y0, float x1, float y1, float z) argument
/external/skia/bench/
H A DShaderMaskBench.cpp69 const SkScalar x0 = SkIntToScalar(-10); local
74 SkScalar x = x0 + rand.nextUScalar1() * dim.fX;
81 SkScalar x = x0 + rand.nextUScalar1() * dim.fX;
/external/skia/experimental/
H A DSkSetPoly3To3.cpp18 SkScalar x0 = pts0[i].fX - ave0.fX; local
22 op[0] += SkScalarMul(x0, x1);
23 op[1] += SkScalarMul(x0, y1);
H A DSkSetPoly3To3_D.cpp33 SkScalar x0 = pts0[i].fX - ave0.fX; local
37 tmp[0] += SkDScalar_setMul(x0, x1);
38 tmp[1] += SkDScalar_setMul(x0, y1);
/external/skia/src/core/
H A DSkBitmapProcState_shaderproc.h60 unsigned x0 = TILEX_PROCF(fx, maxX); local
64 SRC_TO_FILTER(row0[x0]),
66 SRC_TO_FILTER(row1[x0]),
/external/valgrind/main/none/tests/s390x/
H A Dtre.c71 run_test(NULL, NULL, 0, 0x0);
72 run_test((char *)&touppercase, &buff, 0, 0x0);
88 run_test((char *)&tolowercase, &buff, 8, 0x0); // cc = 0

Completed in 571 milliseconds

<<11121314151617181920>>