Searched defs:yo (Results 1 - 9 of 9) sorted by relevance

/external/clang/test/SemaCXX/
H A Dreferences.cpp62 int& yo; // expected-error{{declaration of reference variable 'yo' requires an initializer}} local
/external/python/cpython2/Lib/test/
H A Dtest_compiler.py296 print yo
298 yo = 3 variable in class:Toto
300 yo += 3
/external/webp/src/dsp/
H A Dssim.c65 int xo, int yo, int W, int H) {
67 const int ymin = (yo - VP8_SSIM_KERNEL < 0) ? 0 : yo - VP8_SSIM_KERNEL;
68 const int ymax = (yo + VP8_SSIM_KERNEL > H - 1) ? H - 1
69 : yo + VP8_SSIM_KERNEL;
79 * kWeight[VP8_SSIM_KERNEL + y - yo];
63 SSIMGetClipped_C(const uint8_t* src1, int stride1, const uint8_t* src2, int stride2, int xo, int yo, int W, int H) argument
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_tiled_memcpy.c256 * an X offset 'x0' or 'xo' and a Y offset 'yo.'
258 uint32_t xo, yo; local
262 for (yo = y0 * xtile_width; yo < y1 * xtile_width; yo += xtile_width) {
264 * Only 'yo' contributes to those bits in the total offset,
269 uint32_t swizzle = ((yo >> 3) ^ (yo >> 4)) & swizzle_bit;
271 mem_copy(dst + ((x0 + yo) ^ swizzle), src + x0, x1 - x0);
274 mem_copy_align16(dst + ((xo + yo)
320 uint32_t x, yo; local
362 uint32_t xo, yo; local
424 uint32_t x, yo; local
[all...]
/external/libjpeg-turbo/simd/
H A Djdmrgext-altivec.c49 __vector short rg0, rg1, rg2, rg3, bx0, bx1, bx2, bx3, ye, yo, cbl, cbh, local
153 yo = (__vector signed short)vec_perm(pb_zero, y, odd_index);
157 bo = vec_add(b_yl, yo);
159 ro = vec_add(r_yl, yo);
161 go = vec_add(g_yl, yo);
164 bo = vec_add(b_yh, yo);
166 ro = vec_add(r_yh, yo);
168 go = vec_add(g_yh, yo);
/external/libyuv/files/util/
H A Dssim.cc115 int yo,
120 org += (yo - KERNEL) * stride;
122 rec += (yo - KERNEL) * stride;
125 if (((yo - KERNEL + y_) < 0) || ((yo - KERNEL + y_) >= H))
148 int yo,
155 org += yo * stride + xo;
156 rec += yo * stride + xo;
232 org += (yo - KERNEL) * stride + (xo - KERNEL);
233 rec += (yo
112 GetSSIM(const uint8* org, const uint8* rec, int xo, int yo, int W, int H, int stride) argument
145 GetSSIMFullKernel(const uint8* org, const uint8* rec, int xo, int yo, int stride, double area_weight) argument
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fTextureSpecificationTests.cpp1429 int yo = rnd.getInt(0, levelH-h); local
1434 glCopyTexSubImage2D(GL_TEXTURE_2D, ndx, xo, yo, x, y, w, h);
1510 int yo = rnd.getInt(0, levelH-h); local
1515 glCopyTexSubImage2D(s_cubeMapFaces[face], ndx, xo, yo, x, y, w, h);
/external/deqp/modules/gles3/functional/
H A Des3fTextureSpecificationTests.cpp2023 int yo = rnd.getInt(0, levelH-h); local
2028 glCopyTexSubImage2D(GL_TEXTURE_2D, ndx, xo, yo, x, y, w, h);
2100 int yo = rnd.getInt(0, levelSize-h); local
2105 glCopyTexSubImage2D(s_cubeMapFaces[face], ndx, xo, yo, x, y, w, h);
/external/deqp/framework/referencerenderer/
H A DrrRenderer.cpp1050 const int yo = fragNdx/2; local
1052 if (getCoverageAnyFragmentSampleLive(packet.coverage, numSamples, xo, yo))
1056 fragment.pixelCoord = packet.position + tcu::IVec2(xo, yo);
1057 fragment.coverage = (deUint32)((packet.coverage & getCoverageFragmentSampleBits(numSamples, xo, yo)) >> getCoverageOffset(numSamples, xo, yo));
1058 fragment.sampleDepths = (depthValues) ? (&depthValues[(packetNdx*4 + yo*2 + xo)*numSamples]) : (DE_NULL);
1082 const int yo = fragNdx/2; local
1085 if (getCoverageAnyFragmentSampleLive(packet.coverage, numSamples, xo, yo))

Completed in 286 milliseconds