HomeSort by relevance Sort by last modified time
    Searched refs:dx0 (Results 1 - 19 of 19) sorted by null

  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/d1new/
KernelDataForRenderScriptd1new.java 110 float dx0 = -0.5f + 1.0f / (2 * getNumSubPixels()); local
116 float dx = dx0 + (float) u / (float) getNumSubPixels();
  /cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/f32/
KernelDataForRenderScriptF32.java 109 float dx0 = -0.5f + 1.0f / (2 * getNumSubPixels()); local
115 float dx = dx0 + (float) u / (float) getNumSubPixels();
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/d1new/
KernelDataForRenderScriptd1new.java 98 float dx0 = -0.5f + 1.0f / (2 * getNumSubPixels()); local
104 float dx = dx0 + (float) u / (float) getNumSubPixels();
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/f32/
KernelDataForRenderScriptF32.java 96 float dx0 = -0.5f + 1.0f / (2 * getNumSubPixels()); local
102 float dx = dx0 + (float) u / (float) getNumSubPixels();
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf.h 67 struct brw_reg dx0; member in struct:brw_sf_compile
brw_sf_emit.c 250 c->dx0 = brw_vec1_grf(1, 3);
461 brw_MUL(p, brw_null_reg(), c->a2_sub_a0, c->dx0);
533 brw_MUL(p, c->tmp, c->a1_sub_a0, c->dx0);
602 c->dx0,
  /external/mesa3d/src/mesa/swrast/
s_aatriangle.c 209 const GLfloat dx0 = v1[0] - v0[0]; local
218 ASSERT(dx0 * dy1 - dx1 * dy0 >= 0.0); /* area >= 0.0 */
224 GLfloat cross = (dx0 * (sy - v0[1]) - dy0 * (sx - v0[0]));
229 cross = dx0 + dy0;
s_aaline.c 281 const GLfloat area = dx0 * dy1 - dx1 * dy0;
  /external/mesa3d/src/gallium/state_trackers/vega/
matrix.h 303 static INLINE VGboolean matrix_square_to_quad(VGfloat dx0, VGfloat dy0,
309 VGfloat ax = dx0 - dx1 + dx2 - dx3;
315 dx1 - dx0, dy1 - dy0, 0,
317 dx0, dy0, 1);
336 a = dx1 - dx0 + g * dx1;
337 b = dx3 - dx0 + h * dx3;
338 c = dx0;
367 static INLINE VGboolean matrix_quad_to_quad(VGfloat dx0, VGfloat dy0,
379 if (!matrix_square_to_quad(dx0, dy0, dx1, dy1,
vgu.c 386 VGUErrorCode vguComputeWarpSquareToQuad(VGfloat dx0, VGfloat dy0,
397 if (!matrix_square_to_quad(dx0, dy0,
412 VGUErrorCode vguComputeWarpQuadToQuad(VGfloat dx0, VGfloat dy0,
427 if (!matrix_quad_to_quad(dx0, dy0,
  /external/mesa3d/include/VG/
vgu.h 111 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguComputeWarpSquareToQuad(VGfloat dx0, VGfloat dy0,
117 VGU_API_CALL VGUErrorCode VGU_API_ENTRY vguComputeWarpQuadToQuad(VGfloat dx0, VGfloat dy0,
  /external/skia/src/effects/gradients/
SkClampRange.cpp 89 void SkClampRange::init(SkGradFixed fx0, SkGradFixed dx0, int count, int v0, int v1) {
103 int64_t dx = dx0;
  /external/opencv/cv/src/
cvconvhull.cpp 658 double dx0, dy0; local
670 dx0 = (double)hull_next->x - (double)hull_cur->x;
672 assert( dx0 != 0 || dy0 != 0 );
673 scale = 1./sqrt(dx0*dx0 + dy0*dy0);
694 double dist = fabs(-dy0*dx + dx0*dy) * scale;
769 int dx0 = cur_pt->x - prev_pt->x; local
785 dydx0 = dy * dx0;
788 /*orient = -dy0 * dx + dx0 * dy;
799 dx0 = dx
810 float dx0 = cur_pt->x - prev_pt->x; local
    [all...]
cvhough.cpp 564 int i, j, k, x0, y0, dx0, dy0, xflag; local
604 dx0 = a > 0 ? 1 : -1;
612 dx0 = cvRound( a*(1 << shift)/fabs(b) );
618 int gap = 0, x = x0, y = y0, dx = dx0, dy = dy0;
666 int x = x0, y = y0, dx = dx0, dy = dy0;
    [all...]
cvcalibinit.cpp 508 float prevt = 0, dx0 = b.x - a.x, dy0 = b.y - a.y; local
509 if( fabs(dx0) + fabs(dy0) < FLT_EPSILON )
515 float t = ((c.x - a.x)*dx0 + (c.y - a.y)*dy0)/(dx0*dx0 + dy0*dy0);
    [all...]
  /external/skia/src/gpu/vk/
GrVkCopyManager.cpp 187 float dx0 = 2.f * dstPoint.fX / dw - 1.f; local
213 float uniData[] = { dx1 - dx0, dy1 - dy0, dx0, dy0, // posXform
  /external/pdfium/third_party/lcms2-2.6/src/
cmsintrp.c 344 dx0, dx1, local
367 dx0 = LERP(fx, d00, d10);
370 dxy = LERP(fy, dx0, dx1);
397 dx0, dx1, local
425 dx0 = LERP(rx, d00, d10);
428 dxy = LERP(ry, dx0, dx1);
    [all...]
  /external/swiftshader/src/Renderer/
Renderer.cpp 1774 float dx0 = lineWidth * 0.5f * P0.w \/ W; local
    [all...]
  /external/skia/src/gpu/gl/
GrGLGpu.cpp 3982 GrGLfloat dx0 = 2.f * dstPoint.fX \/ dw - 1.f; local
    [all...]

Completed in 396 milliseconds