HomeSort by relevance Sort by last modified time
    Searched defs:Y0 (Results 1 - 13 of 13) sorted by null

  /external/clang/test/SemaTemplate/
template-id-expr.cpp 50 struct Y0 {
65 Y0::template f1<U>(0);
66 Y0::template f1(0);
69 Y0::template f2<U>(0);
70 Y0::template f2(0);
72 Y0::template f3(0); // expected-error {{'f3' following the 'template' keyword does not refer to a template}}
73 Y0::template f3(); // expected-error {{'f3' following the 'template' keyword does not refer to a template}}
76 x = Y0::f4(0);
77 x = Y0::f4<int>(0); // expected-error {{assigning to 'int' from incompatible type 'void'}}
78 x = Y0::template f4(0); // expected-error {{assigning to 'int' from incompatible type 'void'}
    [all...]
  /external/clang/test/CXX/over/over.over/
p1.cpp 84 template<int(int)> struct Y0 { };
89 Y0<f0> y0; variable
90 Y0<&f0> y0a;
  /external/skia/src/core/
SkLineClipper.cpp 34 double Y0 = src[0].fY;
37 double result = X0 + ((double)Y - Y0) * (X1 - X0) / (Y1 - Y0);
55 double Y0 = src[0].fY;
58 double result = Y0 + ((double)X - X0) * (Y1 - Y0) / (X1 - X0);
  /external/clang/test/CXX/drs/
dr15xx.cpp 114 int Y0 = k({1,2,3}); //expected-error{{no matching function}}
  /external/webp/src/enc/
picture_tools.c 159 const int Y0 = VP8RGBToY(red, green, blue, YUV_HALF);
172 y_ptr[x] = BLEND(Y0, y_ptr[x], a_ptr[x]);
  /external/mesa3d/src/mesa/program/
prog_noise.c 255 float Y0 = j - t;
257 float y0 = y - Y0; local
266 if (x0 > y0) {
280 y1 = y0 - j1 + G2;
282 y2 = y0 - 1.0f + 2.0f * G2;
289 t0 = 0.5f - x0 * x0 - y0 * y0;
294 n0 = t0 * t0 * grad2(perm[ii + perm[jj]], x0, y0);
340 float Y0 = j - t
343 float y0 = y - Y0; local
504 float y0 = y - Y0; local
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsintrp.c 190 cmsUInt16Number y1, y0; local
208 y0 = LutTable[cell0];
212 Output[0] = LinearInterp(rest, y0, y1);
227 cmsFloat32Number y1, y0; local
248 y0 = LutTable[cell0] ;
251 Output[0] = y0 + (y1 - y0) * rest;
293 cmsFloat32Number y1, y0; local
320 y0 = LutTable[cell0 + OutChan] ;
323 Output[OutChan] = y0 + (y1 - y0) * rest
339 int x0, y0, local
394 int x0, y0; local
451 int x0, y0, z0, local
525 int x0, y0, z0; local
598 int x0, y0, z0, local
700 int x0, y0, z0; local
837 int x0, y0, z0; local
1047 cmsFloat32Number y0 = Tmp1[i]; local
1135 cmsFloat32Number y0 = Tmp1[i]; local
1222 cmsFloat32Number y0 = Tmp1[i]; local
1308 cmsFloat32Number y0 = Tmp1[i]; local
1393 cmsFloat32Number y0 = Tmp1[i]; local
    [all...]
cmsopt.c 40 cmsUInt32Number X0[256], Y0[256], Z0[256]; // Precomputed nodes and offsets for 8-bit input data
375 int x0, y0, z0, w0; local
395 y0 = (int) floor(py);
400 ((py - y0) != 0) ||
405 p16 -> opta[2] * y0 +
417 y0 = (int) floor(py);
421 ((py - y0) != 0) ||
425 p16 -> opta[1] * y0 +
793 p8 ->Y0[i] = (p->opta[1] * FIXED_TO_INT(v2));
834 register cmsS15Fixed16Number X0, X1, Y0, Y1, Z0, Z1
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 81 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
86 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
  /external/opencv3/3rdparty/libtiff/
tiffio.h 169 float X0, Y0, Z0; /* Reference white point */
  /external/pdfium/third_party/libtiff/
tiffio.h 169 float X0, Y0, Z0; /* Reference white point */
  /external/webp/src/dsp/
yuv_sse2.c 27 static void ConvertYUV444ToRGB(const __m128i* const Y0,
42 const __m128i Y1 = _mm_mulhi_epu16(*Y0, k19077);
84 const __m128i Y0 = Load_HI_16(y), U0 = Load_HI_16(u), V0 = Load_HI_16(v);
85 ConvertYUV444ToRGB(&Y0, &U0, &V0, R, G, B);
93 const __m128i Y0 = Load_HI_16(y), U0 = Load_UV_HI_8(u), V0 = Load_UV_HI_8(v);
94 ConvertYUV444ToRGB(&Y0, &U0, &V0, R, G, B);
590 __m128i r, g, b, Y0, Y1;
596 ConvertRGBToY(&r, &g, &b, &Y0);
605 STORE_16(_mm_packus_epi16(Y0, Y1), y + i);
624 __m128i r, g, b, Y0, Y1
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 320 milliseconds