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

1 2 3

  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
resize.rs 28 float yf = clamp(y * scale, 0.f, (float)gHeightIn - 1.f);
30 uint32_t iy = yf;
45 float yf = y * scale;
48 int starty = (int) floor(yf - 2);
50 yf = yf - floor(yf);
88 float4 p = cubicInterpolate(p0, p1, p2, p3, yf);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
resize.rs 28 float yf = clamp(y * scale, 0.f, (float)gHeightIn - 1.f);
30 uint32_t iy = yf;
45 float yf = y * scale;
48 int starty = (int) floor(yf - 2);
50 yf = yf - floor(yf);
88 float4 p = cubicInterpolate(p0, p1, p2, p3, yf);
  /external/chromium_org/third_party/cython/src/Cython/Utility/
Generator.c 255 PyObject *yf = gen->yieldfrom; local
258 if (yf) {
261 //Py_INCREF(yf);
262 /* YieldFrom code ensures that yf is an iterator */
264 ret = Py_TYPE(yf)->tp_iternext(yf);
266 //Py_DECREF(yf);
277 PyObject *yf = gen->yieldfrom; local
280 if (yf) {
283 //Py_INCREF(yf);
337 PyObject *yf = gen->yieldfrom; local
383 PyObject *yf = gen->yieldfrom; local
    [all...]
  /hardware/ti/omap4-aah/camera/
NV12_resize.cpp 58 mmUint16 xf, yf; local
120 yf = (mmUchar) ((mmUint32)((row*resizeFactorY) >> 6) & 0x7);
145 w = bWeights[xf][yf][0];
152 w = bWeights[xf][yf][1];
159 w = bWeights[xf][yf][3];
166 w = bWeights[xf][yf][2];
196 yf = (mmUchar) ((mmUint32)((row*resizeFactorY) >> 6) & 0x7);
226 w = bWeights[xf][yf][0];
237 w = bWeights[xf][yf][1];
248 w = bWeights[xf][yf][3]
    [all...]
  /hardware/ti/omap4xxx/camera/
NV12_resize.c 47 mmUint16 xf, yf; local
118 yf = (mmUchar) ((mmUint32)((row*resizeFactorY) >> 6) & 0x7);
147 w = bWeights[xf][yf][0];
154 w = bWeights[xf][yf][1];
161 w = bWeights[xf][yf][3];
168 w = bWeights[xf][yf][2];
200 yf = (mmUchar) ((mmUint32)((row*resizeFactorY) >> 6) & 0x7);
235 w = bWeights[xf][yf][0];
246 w = bWeights[xf][yf][1];
257 w = bWeights[xf][yf][3]
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicResize.cpp 85 float xf, float yf, int width) {
114 float4 p = cubicInterpolate(p0, p1, p2, p3, yf);
120 float xf, float yf, int width) {
149 float2 p = cubicInterpolate(p0, p1, p2, p3, yf);
155 float xf, float yf, int width) {
173 float p = cubicInterpolate(p0, p1, p2, p3, yf);
192 float yf = (p->y + 0.5f) * cp->scaleY - 0.5f; local
193 int starty = (int) floor(yf - 1);
194 yf = yf - floor(yf)
232 float yf = (p->y + 0.5f) * cp->scaleY - 0.5f; local
272 float yf = (p->y + 0.5f) * cp->scaleY - 0.5f; local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_resize.rs 47 float yf = (y + 0.5f) * scaleY - 0.5f;
50 int starty = (int) floor(yf - 1);
52 yf = yf - floor(yf);
90 float4 p = cubicInterpolate_F4(p0, p1, p2, p3, yf);
97 float yf = (y + 0.5f) * scaleY - 0.5f;
100 int starty = (int) floor(yf - 1);
102 yf = yf - floor(yf)
    [all...]
  /external/chromium_org/gpu/command_buffer/tests/
gl_pointcoord_unittest.cc 135 GLint yf = s2p(point_y + v * point_width); local
137 GLfloat t = 0.5 + (yf + 0.5 - yw) / max_point_size;
144 GLTestHelper::CheckPixels(xf, yf, 1, 1, 4, color);
  /packages/apps/Camera2/jni/
tinyplanet.cc 107 float yf = (y - output_height / 2.0f) / image_scale; local
110 float r = hypotf(xf, yf);
111 float theta = angle+atan2(yf, xf);
  /packages/apps/Gallery2/jni/filters/
tinyplanet.cc 106 float yf = (y - output_height / 2.0f) / image_scale; local
109 float r = hypotf(xf, yf);
110 float theta = angle+atan2(yf, xf);
  /external/webrtc/src/modules/audio_processing/aec/
aec_core_sse2.c 34 static void FilterFarSSE2(aec_t *aec, float yf[2][PART_LEN1])
52 const __m128 yf_re = _mm_loadu_ps(&yf[0][j]);
53 const __m128 yf_im = _mm_loadu_ps(&yf[1][j]);
62 _mm_storeu_ps(&yf[0][j], g);
63 _mm_storeu_ps(&yf[1][j], h);
67 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
69 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j], aec->xfBuf[1][xPos + j],
aec_core.h 156 typedef void (*WebRtcAec_FilterFar_t)(aec_t *aec, float yf[2][PART_LEN1]);
  /external/deqp/modules/gles2/functional/
es2fDepthRangeTests.cpp 231 float yf = ((float)y + 0.5f) / referenceFrame.getHeight(); local
238 float d = depthRangeTransform(triQuadInterpolate(xf, yf, m_depthCoord), m_zNear, m_zFar);
249 float rd = 1.0f - (xh + yf) * 0.5f;
250 float d = depthRangeTransform(triQuadInterpolate(xf, yf, m_depthCoord), m_zNear, m_zFar);
381 float yf = ((float)y + 0.5f) / (float)referenceFrame.getHeight(); local
382 float d = depthRangeTransform(triQuadInterpolate(xf, yf, m_depthCoord), m_zNear, m_zFar);
es2fShaderBuiltinVarTests.cpp 330 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight()); local
331 const float z = (xf + yf) / 2.0f;
422 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight()); local
423 const float oow = ((xf + yf) < 1.0f)
424 ? projectedTriInterpolate(tcu::Vec3(w[0], w[1], w[2]), tcu::Vec3(w[0], w[1], w[2]), xf, yf)
425 : projectedTriInterpolate(tcu::Vec3(w[3], w[2], w[1]), tcu::Vec3(w[3], w[2], w[1]), 1.0f-xf, 1.0f-yf);
538 const float yf = float((h-yo-1)+0.5f) / float(h); local
539 const tcu::Vec4 color (xf, yf, 0.0f, 1.0f);
  /external/deqp/modules/gles3/functional/
es3fFragDepthTests.cpp 238 float yf = ((float)y + 0.5f) / referenceFrame.getHeight(); local
245 float d = m_evalFunc(Vec2(xf, yf));
256 float rd = 1.0f - (xh + yf) * 0.5f;
257 float d = m_evalFunc(Vec2(xf, yf));
407 float yf = ((float)y + 0.5f) / (float)referenceFrame.getHeight(); local
408 float d = m_evalFunc(Vec2(xf, yf));
es3fShaderBuiltinVarTests.cpp 356 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight()); local
357 const float z = (xf + yf) / 2.0f;
451 const float yf = (float(refImg.getHeight()-y-1)+.5f) / float(refImg.getHeight()); local
452 const float oow = ((xf + yf) < 1.0f)
453 ? projectedTriInterpolate(tcu::Vec3(w[0], w[1], w[2]), tcu::Vec3(w[0], w[1], w[2]), xf, yf)
454 : projectedTriInterpolate(tcu::Vec3(w[3], w[2], w[1]), tcu::Vec3(w[3], w[2], w[1]), 1.0f-xf, 1.0f-yf);
570 const float yf = float((h-yo-1)+0.5f) / float(h); local
571 const tcu::Vec4 color (xf, yf, 0.0f, 1.0f);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_core_internal.h 157 typedef void (*WebRtcAec_FilterFar_t)(AecCore* aec, float yf[2][PART_LEN1]);
aec_core_neon.c 37 static void FilterFarNEON(AecCore* aec, float yf[2][PART_LEN1]) {
55 const float32x4_t yf_re = vld1q_f32(&yf[0][j]);
56 const float32x4_t yf_im = vld1q_f32(&yf[1][j]);
63 vst1q_f32(&yf[0][j], g);
64 vst1q_f32(&yf[1][j], h);
68 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j],
72 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j],
aec_core_sse2.c 32 static void FilterFarSSE2(AecCore* aec, float yf[2][PART_LEN1]) {
50 const __m128 yf_re = _mm_loadu_ps(&yf[0][j]);
51 const __m128 yf_im = _mm_loadu_ps(&yf[1][j]);
60 _mm_storeu_ps(&yf[0][j], g);
61 _mm_storeu_ps(&yf[1][j], h);
65 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j],
69 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j],
aec_core_mips.c 323 void WebRtcAec_FilterFar_mips(AecCore* aec, float yf[2][PART_LEN1]) {
332 float* yf0 = yf[0];
333 float* yf1 = yf[1];
    [all...]
aec_core.c 143 static void FilterFar(AecCore* aec, float yf[2][PART_LEN1]) {
155 yf[0][j] += MulRe(aec->xfBuf[0][xPos + j],
159 yf[1][j] += MulIm(aec->xfBuf[0][xPos + j],
1027 float xf[2][PART_LEN1], yf[2][PART_LEN1], ef[2][PART_LEN1]; local
    [all...]
  /external/eigen/bench/
bench_norm.cpp 237 double yf = basef * internal::abs(internal::random<double>()); local
239 VectorXf vf = VectorXf::Ones(s) * yf;
242 std::cout << "reference\t" << internal::sqrt(double(s))*yf << "\t" << internal::sqrt(double(s))*yd << "\n";
262 //std::cout << "reference\t" << internal::sqrt(double(s))*yf << "\t" << internal::sqrt(double(s))*yd << "\n";
  /external/deqp/framework/common/
tcuTestLog.cpp 200 float yf = ((float)y + 0.5f) / (float)logImage.getHeight(); local
202 Vec4 s = access.sample2D(sampler, sampler.minFilter, xf, yf, 0)*pixelScale + pixelBias;
240 float yf = ((float)y + 0.5f) / (float)h; local
244 Vec4 s = access.sample3D(sampler, sampler.minFilter, xf, yf, zf);
  /external/deqp/modules/gles3/stress/
es3sLongRunningShaderTests.cpp 255 const float yf = 2.0f * ((float(yi) + 0.5f) / float(height)) - 1.0f; local
257 positions[pointNdx] = Vec2(xf, yf);
  /external/chromium_org/third_party/libvpx/source/libvpx/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);

Completed in 574 milliseconds

1 2 3