/external/opencv3/modules/core/include/opencv2/core/cuda/ |
D | filters.hpp | 197 int sy1 = __float2int_ru(fsy1); in operator ()() local 203 for(int dy = sy1; dy < sy2; ++dy) in operator ()() 235 int sy1 = __float2int_ru(fsy1); in operator ()() local 243 for (int dy = sy1; dy < sy2; ++dy) in operator ()() 255 if (sy1 > fsy1) in operator ()() 257 out = out + src( (sy1 - 1) , dx) * ((sy1 -fsy1) * scale); in operator ()() 263 if ((sy1 > fsy1) && (sx1 > fsx1)) in operator ()() 264 out = out + src( (sy1 - 1) , (sx1 - 1)) * ((sy1 -fsy1) * (sx1 -fsx1) * scale); in operator ()() 266 if ((sy1 > fsy1) && (sx2 < fsx2)) in operator ()() 267 out = out + src( (sy1 - 1) , sx2) * ((sy1 -fsy1) * (fsx2 -sx2) * scale); in operator ()()
|
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/ |
D | interpolation.hpp | 252 const int sy1 = __float2int_rd(y); in operator ()() local 253 const int sy2 = sy1 + area_height; in operator ()() 257 for (int dy = sy1; dy < sy2; ++dy) in operator ()() 318 const int sy1 = __float2int_rd(fsy1); in operator ()() local 323 for (int dy = sy1; dy < sy2; ++dy) in operator ()() 335 if (sy1 > fsy1) in operator ()() 338 … out = out + saturate_cast<work_type>(src(sy1 - 1, dx)) * static_cast<work_elem_type>(sy1 - fsy1); in operator ()() 347 if ((sy1 > fsy1) && (sx1 > fsx1)) in operator ()() 348 …out = out + saturate_cast<work_type>(src(sy1 - 1, sx1 - 1)) * static_cast<work_elem_type>((sy1 - f… in operator ()() 350 if ((sy1 > fsy1) && (sx2 < fsx2)) in operator ()() [all …]
|
/external/eigen/blas/f2c/ |
D | srotmg.c | 15 /* Subroutine */ int srotmg_(real *sd1, real *sd2, real *sx1, real *sy1, real in srotmg_() argument 111 sp2 = *sd2 * *sy1; in srotmg_() 120 sq2 = sp2 * *sy1; in srotmg_() 126 sh21 = -(*sy1) / *sx1; in srotmg_() 152 sh22 = *sx1 / *sy1; in srotmg_() 157 *sx1 = *sy1 * su; in srotmg_()
|
/external/chromium-trace/catapult/third_party/flot/ |
D | jquery.flot.image.js | 168 var sx1 = 0, sy1 = 0, sx2 = img.width, sy2 = img.height; 180 sy2 += (sy1 - sy2) * (yaxis.min - y1) / (y2 - y1); 185 sy1 += (sy1 - sy2) * (yaxis.max - y2) / (y2 - y1); 209 sx1, sy1, sx2 - sx1, sy2 - sy1,
|
D | jquery.flot.image.min.js | 7 …sy1=0,sx2=img.width,sy2=img.height;if(x1<xaxis.min){sx1+=(sx2-sx1)*(xaxis.min-x1)/(x2-x1);x1=xaxis…
|
/external/mesa3d/include/VG/ |
D | vgu.h | 106 VGfloat sx1, VGfloat sy1, 122 VGfloat sx1, VGfloat sy1,
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | vgu.c | 361 VGfloat sx1, VGfloat sy1, in vguComputeWarpQuadToSquare() argument 372 sx1, sy1, in vguComputeWarpQuadToSquare() 417 VGfloat sx1, VGfloat sy1, in vguComputeWarpQuadToQuad() argument 432 sx1, sy1, in vguComputeWarpQuadToQuad()
|
D | matrix.h | 353 VGfloat sx1, VGfloat sy1, in matrix_quad_to_square() argument 358 if (!matrix_square_to_quad(sx0, sy0, sx1, sy1, in matrix_quad_to_square() 372 VGfloat sx1, VGfloat sy1, in matrix_quad_to_quad() argument 384 if (!matrix_quad_to_square(sx0, sy0, sx1, sy1, in matrix_quad_to_quad()
|
D | renderer.h | 151 int sx1, int sy1,
|
/external/proguard/src/proguard/gui/splash/ |
D | OverrideGraphics2D.java | 294 …public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2,… in drawImage() argument 296 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, bgcolor, observer); in drawImage() 299 …public boolean drawImage(Image img, int dx1, int dy1, int dx2, int dy2, int sx1, int sy1, int sx2,… in drawImage() argument 301 return graphics.drawImage(img, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2, observer); in drawImage()
|
/external/opencv3/modules/imgproc/src/opencl/ |
D | resize.cl | 148 sy1 = clamp(yofs[dy] + 1, 0, src_rows - 1); 153 src_index1 = mad24(sy1, src_step, mad24(sx0, TSIZE, src_offset)); 303 int sy0 = ymap_tab[yk0], sy1 = ymap_tab[yk1 - 1]; 309 for (int sy = sy0, yk = yk0; sy <= sy1; ++sy, src_index += src_step, ++yk)
|
/external/deqp/framework/referencerenderer/ |
D | rrRasterizer.cpp | 554 const deInt64 sy1 = toSubpixelCoord(y0+1) + halfPixel; in rasterizeSingleSample() local 557 const deInt64 sy[4] = { sy0, sy0, sy1, sy1 }; in rasterizeSingleSample() 734 const deInt64 sy1 = toSubpixelCoord(y0+1); in rasterizeMultiSample() local 737 const deInt64 sy[4] = { sy0, sy0, sy1, sy1 }; in rasterizeMultiSample()
|
/external/deqp/modules/glshared/ |
D | glsShaderRenderCase.cpp | 677 float sy1 = y1 * (float)height; in computeVertexReference() local 679 float oosy = 1.0f / (sy1 - sy0); in computeVertexReference() 684 int iy1 = deCeilFloatToInt32(sy1 - 0.5f); in computeVertexReference()
|
D | glsBufferTestUtil.cpp | 486 float sy1 = (float)(y+1) / (float)gridSizeY; in computePositions() local 490 float fy1 = 2.0f * sy1 - 1.0f; in computePositions()
|
/external/deqp/modules/gles2/functional/ |
D | es2fBufferTestUtil.cpp | 325 float sy1 = (float)(y+1) / (float)gridSizeY; in computePositions() local 329 float fy1 = 2.0f * sy1 - 1.0f; in computePositions()
|
/external/opencv/cv/src/ |
D | cvimgwarp.cpp | 226 int sy0 = yofs[dy].idx, sy1 = sy0 + (fy > 0 && sy0 < ssize.height-1); \ 228 if( sy0 == prev_sy0 && sy1 == prev_sy1 ) \ 242 int sy = k == 0 ? sy0 : sy1; \ 243 if( k == 1 && sy1 == sy0 ) \ 263 prev_sy1 = sy1; \ 265 if( sy0 == sy1 ) \
|
/external/opencv3/modules/imgproc/src/ |
D | imgwarp.cpp | 3932 int sx0, sx1, sy0, sy1; in remapBilinear() local 3940 sy1 = clip(sy+1, 0, ssize.height); in remapBilinear() 3943 v2 = S0[sy1*sstep + sx0]; in remapBilinear() 3944 v3 = S0[sy1*sstep + sx1]; in remapBilinear() 3951 sy1 = borderInterpolate(sy+1, ssize.height, borderType); in remapBilinear() 3954 v2 = sx0 >= 0 && sy1 >= 0 ? S0[sy1*sstep + sx0] : cval[0]; in remapBilinear() 3955 v3 = sx1 >= 0 && sy1 >= 0 ? S0[sy1*sstep + sx1] : cval[0]; in remapBilinear() 3973 int sx0, sx1, sy0, sy1; in remapBilinear() local 3981 sy1 = clip(sy+1, 0, ssize.height); in remapBilinear() 3984 v2 = S0 + sy1*sstep + sx0*cn; in remapBilinear() [all …]
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
D | vktShaderRender.cpp | 1781 const float sy1 = y1 * (float)height; in computeVertexReference() local 1783 const float oosy = 1.0f / (sy1 - sy0); in computeVertexReference() 1788 const int iy1 = deCeilFloatToInt32(sy1 - 0.5f); in computeVertexReference()
|
/external/skia/src/gpu/gl/ |
D | GrGLGpu.cpp | 3706 GrGLfloat sy1 = (GrGLfloat)(srcRect.fTop + h); in copySurfaceAsDraw() local 3710 sy1 = sh - sy1; in copySurfaceAsDraw() 3719 sy1 /= sh; in copySurfaceAsDraw() 3724 sx1 - sx0, sy1 - sy0, sx0, sy0)); in copySurfaceAsDraw()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |