| /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
| GrainFilter.java | 74 "uniform float stepX;\n" + 78 " float noise = texture2D(tex_sampler_1, v_texcoord + vec2(-stepX, -stepY)).r * 0.224;\n" + 79 " noise += texture2D(tex_sampler_1, v_texcoord + vec2(-stepX, stepY)).r * 0.224;\n" + 80 " noise += texture2D(tex_sampler_1, v_texcoord + vec2(stepX, -stepY)).r * 0.224;\n" + 81 " noise += texture2D(tex_sampler_1, v_texcoord + vec2(stepX, stepY)).r * 0.224;\n" + 138 mGrainProgram.setHostValue("stepX", 0.5f / mWidth);
|
| /frameworks/base/libs/hwui/ |
| Patch.cpp | 157 float stepX = xDivs[i]; 158 const float segment = stepX - previousStepX; 167 float u2 = std::max(0.0f, stepX - uOffset) / bitmapWidth; 170 if (stepX > 0.0f) { 175 u1 = stepX / bitmapWidth; 177 previousStepX = stepX;
|
| /external/libyuv/files/source/ |
| scale_msa.cc | 104 int32_t stepx = src_stepx * 4; local 110 data1 = LW(src_argb + stepx); 111 data2 = LW(src_argb + stepx * 2); 112 data3 = LW(src_argb + stepx * 3); 117 src_argb += stepx * 4; 129 int32_t stepx = src_stepx * 4; local 138 data1 = LD(src_argb + stepx); 139 data2 = LD(src_argb + stepx * 2); 140 data3 = LD(src_argb + stepx * 3); 146 data1 = LD(nxt_argb + stepx); [all...] |
| /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ |
| CropDrawingUtils.java | 35 float stepX = bounds.width() / 3.0f; 37 float x = bounds.left + stepX; 41 x += stepX;
|
| /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/automation/ |
| Interaction.java | 122 float stepX = (endX - startX) / STEP_COUNT; 128 long deltaX = Math.round(j * stepX);
|
| /frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/ |
| AccessibilityGestureDetectorTest.java | 163 float stepX = (float) deltaX / numSteps; 169 (start.x + (stepX * (float) step)),
|
| GestureDescriptionTest.java | 66 float stepX = 2; 69 PointF end = new PointF(10 + numSamples * stepX, 20 + numSamples * stepY); 83 PointF interpPoint = new PointF(start.x + stepX * i, start.y + stepY * i);
|
| /external/pdfium/third_party/libpng16/ |
| pngread.c | 2960 unsigned int startx, stepx, stepy; local 3278 unsigned int startx, stepx, stepy; local 3438 unsigned int startx, stepx, stepy; local 3574 unsigned int startx, stepx, stepy; local [all...] |
| /external/mesa3d/src/mesa/swrast/ |
| s_span.h | 131 * which of the attrStart/StepX/StepY variables are relevant.
|
| /external/libpng/ |
| pngread.c | 2974 unsigned int startx, stepx, stepy; local 3291 unsigned int startx, stepx, stepy; local 3450 unsigned int startx, stepx, stepy; local 3587 unsigned int startx, stepx, stepy; local [all...] |
| /external/skia/tests/ |
| RoundRectTest.cpp | 379 // Move a small box from the start position by (stepX, stepY) 'numSteps' times 382 SkScalar initX, int stepX, SkScalar initY, int stepY, 387 stepX ? SkIntToScalar(stepX) : SK_Scalar1, 393 x += stepX;
|
| /external/skqp/tests/ |
| RoundRectTest.cpp | 379 // Move a small box from the start position by (stepX, stepY) 'numSteps' times 382 SkScalar initX, int stepX, SkScalar initY, int stepY, 387 stepX ? SkIntToScalar(stepX) : SK_Scalar1, 393 x += stepX;
|
| /external/deqp/external/openglcts/modules/glesext/texture_border_clamp/ |
| esextcTextureBorderClampSamplingTexture.cpp | [all...] |
| /frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
| InteractionController.java | 672 * p.x = stepX;
|
| UiObject.java | [all...] |
| /external/deqp/external/openglcts/modules/gles31/ |
| es31cDrawIndirectTests.cpp | 393 T stepX = range / sizeX; 402 data[j + i * sizeX] = valueMin + j * stepX + valueY; 497 double stepX = widthRef / static_cast<double>(widthTest); 505 unsigned int posXRef = static_cast<int>(j * stepX + 0.5); [all...] |