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

12 3

  /external/chromium_org/third_party/libyuv/source/
scale_argb.cc 259 int yf = (y >> 8) & 255; local
260 InterpolateRow(row, src, src_stride, clip_src_width, yf);
399 int yf = (y >> 8) & 255; local
400 InterpolateRow(dst_argb, rowptr, rowstride, dst_width * 4, yf);
610 int yf = (y >> 8) & 255; local
611 InterpolateRow(dst_argb, rowptr, rowstride, dst_width * 4, yf);
scale_common.cc 939 int yf; local
944 yf = filtering ? ((y >> 8) & 255) : 0;
946 src_stride, dst_width_bytes, yf);
1021 int yf; local
1026 yf = filtering ? ((y >> 8) & 255) : 0;
1028 src_stride, dst_width_words, yf);
    [all...]
scale.cc 951 int yf = (y >> 8) & 255; local
1053 int yf = (y >> 8) & 255; local
1196 int yf = (y >> 8) & 255; local
1335 int yf = (y >> 8) & 255; local
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/
aec_core.c 243 static void FilterFar(aec_t *aec, float yf[2][PART_LEN1])
256 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
258 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
640 float xf[2][PART_LEN1], yf[2][PART_LEN1], ef[2][PART_LEN1]; local
773 memset(yf[0], 0, sizeof(float) * (PART_LEN1 * 2));
776 WebRtcAec_FilterFar(aec, yf);
779 fft[0] = yf[0][0];
780 fft[1] = yf[0][PART_LEN];
782 fft[2 * i] = yf[0][i];
783 fft[2 * i + 1] = yf[1][i]
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
run.c 1084 Awkfloat xf, yf; local
1107 yf = getfval(y);
1110 xf += yf;
1113 xf -= yf;
1116 xf *= yf;
1119 if (yf == 0)
1121 xf /= yf;
1124 if (yf == 0)
1126 modf(xf/yf, &v);
1127 xf = xf - yf * v
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFragmentOutputTests.cpp 409 const float yf = ((float)y - (float)cellY*cellH + 0.5f) / cellH; local
414 const bool tri = xf + yf >= 1.0f;
419 const float t = tri ? 1.0f-yf : yf;
548 float yf = (float)y / (float)(gridHeight-1); local
551 positions[(y*gridWidth + x)*4 + 1] = 2.0f*yf - 1.0f;
601 float yf = (float)y / (float)(gridHeight-1); local
603 float f0 = (xf + yf) * 0.5f;
604 float f1 = 0.5f + (xf - yf) * 0.5f;
    [all...]
es3fShaderDerivateTests.cpp 1270 const float yf = (float(y)+0.5f) \/ float(level0.getHeight()); local
    [all...]
  /external/deqp/modules/glshared/
glsRandomShaderCase.cpp 164 float yf = (float)y / (float)m_gridHeight; local
172 dst[1] = 1.0f + yf * -2.0f;
184 rsg::getVertexInterpolationCoords(xd, yd, xf, yf, compNdx);
glsShaderPerformanceMeasurer.cpp 90 float yf = (float)y / (float)gridSizeY; local
93 dst[getVtxIndex(x, y, gridSizeX)*numComponents + compNdx] = triQuadInterpolate(xf, yf, tcu::Vec4(spec.p00[compNdx], spec.p01[compNdx], spec.p10[compNdx], spec.p11[compNdx]));
glsTextureTestUtil.cpp 454 float yf = ((float)y + 0.5f) / (float)dst.getHeight(); local
457 int triNdx = xf + yf >= 1.0f ? 1 : 0; // Top left fill rule.
459 float triY = triNdx ? 1.0f-yf : yf;
486 float yf = ((float)y + 0.5f) / (float)dst.getHeight(); local
489 int triNdx = xf + yf >= 1.0f ? 1 : 0; // Top left fill rule.
491 float triY = triNdx ? 1.0f-yf : yf;
719 float yf = ((float)y + 0.5f) / (float)dst.getHeight(); local
722 int triNdx = xf + yf >= 1.0f ? 1 : 0; // Top left fill rule
763 float yf = ((float)y + 0.5f) \/ (float)dst.getHeight(); local
806 float yf = ((float)y + 0.5f) \/ (float)dst.getHeight(); local
947 const float yf = ((float)y + 0.5f) \/ (float)dst.getHeight(); local
    [all...]
glsBufferTestUtil.cpp 725 float yf = float(y) / float(numPosY-1);
727 dst[y*numPosX + x] = tcu::Vec2(2.0f*xf - 1.0f, 2.0f*yf - 1.0f);
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
scale_common.cc 939 int yf; local
944 yf = filtering ? ((y >> 8) & 255) : 0;
946 src_stride, dst_width_bytes, yf);
1021 int yf; local
1026 yf = filtering ? ((y >> 8) & 255) : 0;
1028 src_stride, dst_width_words, yf);
    [all...]
scale.cc 951 int yf = (y >> 8) & 255; local
1053 int yf = (y >> 8) & 255; local
1196 int yf = (y >> 8) & 255; local
1335 int yf = (y >> 8) & 255; local
    [all...]
  /external/deqp/framework/randomshaders/
rsgProgramExecutor.cpp 248 float yf = (float)y / (float)(gridVtxHeight-1); local
250 interpolateVertexInput(access, vtxNdx-packetStart, input->getValueRange(), xf, yf);
  /frameworks/base/services/core/java/com/android/server/wm/
DragState.java 392 private WindowState getTouchedWinAtPointLw(float xf, float yf) {
395 final int y = (int) yf;
  /external/opencv/cxcore/src/
cxmathfuncs.cpp 114 float xf[4], yf[4]; local
142 yf[j] = _y.f;
151 float z0 = (float) (yf[0] * xf[1] * b * d);
152 float z1 = (float) (yf[1] * xf[0] * b * d);
153 float z2 = (float) (yf[2] * xf[3] * a * d);
154 float z3 = (float) (yf[3] * xf[2] * a * d);
    [all...]
  /external/deqp/modules/gles2/functional/
es2fBufferTestUtil.cpp 537 float yf = float(y) / float(numPosY-1);
539 dst[y*numPosX + x] = tcu::Vec2(2.0f*xf - 1.0f, 2.0f*yf - 1.0f);
  /external/deqp/modules/egl/
teglGLES2SharingTests.cpp 490 float yf = ((float)(y-y1) + 0.5f) / (float)(y2 - y1); local
491 bool tri = yf >= xf;
496 float t = tri ? 1.0f-yf : yf;
    [all...]
teglNativeCoordMappingTests.cpp 219 const float yf = (float(2.0f * y) / height) - 1.0f; local
221 return tcu::Vec2(xf, yf);
  /external/opencv/cv/src/
cvsurf.cpp 434 float yf = center.y - r*b;
436 y = cvFloor(yf); patch_rect0.y = MIN(patch_rect0.y, y);
438 y = cvCeil(yf)+1; patch_rect0.height = MAX(patch_rect0.height, y);
  /external/libyuv/files/source/
scale_argb.cc 892 int yf = (y >> 8) & 255; local
894 ScaleARGBFilterRows(row, src, src_stride, src_width, yf);
    [all...]
scale.cc 2694 int yf = y & 0xffff; local
2765 int yf = (y >> 8) & 255; local
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
scale.c 3516 int yf = cy & 0xffff; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/source/
scale.c 3516 int yf = cy & 0xffff; local
    [all...]
  /external/chromium_org/third_party/dom_distiller_js/package/js/
domdistiller.js 231 function Yf(b,a){if(a==undefined)throw new TypeError;b[1]=a}
    [all...]

Completed in 926 milliseconds

12 3