/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_postproc.c | 456 int y1, int u1, int v1, int alpha, int stride) { 458 int y1_const = y1 * ((1 << 16) - alpha); 489 int y1, int u1, int v1, int alpha, int stride) { 491 int y1_const = y1 * ((1 << 16) - alpha); 544 int y1, int u1, int v1, int alpha, int stride) { 546 int y1_const = y1 * ((1 << 16) - alpha); 569 static void constrain_line(int x0, int *x1, int y0, int *y1, 576 dy = *y1 - y0; 580 *y1 = ((width - x0) * dy) / dx + y0; 584 dy = *y1 - y0 [all...] |
/external/autotest/client/virt/ |
ppm_utils.py | 88 def image_crop(width, height, data, x1, y1, dx, dy): 96 @param y1: Desired y coordinate of the cropped region 103 if y1 > height - 1: y1 = height - 1 105 if dy > height - y1: dy = height - y1 107 index = (x1 + y1*width) * 3 128 def get_region_md5sum(width, height, data, x1, y1, dx, dy, 137 @param y1: Desired y coord of the cropped region 143 (cw, ch, cdata) = image_crop(width, height, data, x1, y1, dx, dy [all...] |
/external/clang/test/Sema/ |
bitfield-promote.c | 10 long long y1; variable 11 __typeof__(((long long)x1.x + 1)) y1;
|
warn-cast-qual.c | 9 char **y1 = (char **)ptrptr; // expected-warning {{cast from 'const char *const' to 'char *' drops const qualifier}} local
|
/external/dng_sdk/source/ |
dng_spline.h | 33 real64 y1, 44 ((y1 * (2.0 - B + C) - (s1 * A * C)) * (B * B));
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
arc.h | 50 VGfloat x1, y1, x2, y2; member in struct:arc 57 VGfloat x1, VGfloat y1,
|
bezier.h | 34 float x1, y1; member in struct:bezier 51 float x1, float y1,
|
bezier.c | 46 left->y1 = bez->y1; 49 left->y2 = bez->y1 + t * (bez->y2 - bez->y1); 64 left->y4 = bez->y1 = left->y3 + t * (bez->y2 - left->y3); 82 first_half->y2 = (bez->y1 + bez->y2) * 0.5; 84 first_half->y1 = bez->y1; 88 first_half->y4 = second_half->y1 = 95 polygon_vertex_append(poly, bez->x1, bez->y1); [all...] |
/external/opencv3/modules/highgui/src/files_Qt/ |
stylesheet_trackbar.qss | 11 background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, 13 background: qlineargradient(x1: 0, y1: 0.2, x2: 1, y2: 1, 28 background: qlineargradient(x1:0, y1:0, x2:1, y2:1, 38 background: qlineargradient(x1:0, y1:0, x2:1, y2:1,
|
/external/opencv3/samples/python2/ |
camshift.py | 54 x1, y1 = np.minimum([w, h], np.maximum([xo, yo], [x, y])) 56 if x1-x0 > 0 and y1-y0 > 0: 57 self.selection = (x0, y0, x1, y1) 81 x0, y0, x1, y1 = self.selection 82 self.track_window = (x0, y0, x1-x0, y1-y0) 83 hsv_roi = hsv[y0:y1, x0:x1] 84 mask_roi = mask[y0:y1, x0:x1] 90 vis_roi = vis[y0:y1, x0:x1]
|
/frameworks/base/libs/hwui/ |
Patch.h | 62 float y1, float y2, float v1, float v2, float stretchX, float rescaleX, 64 void generateQuad(TextureVertex*& vertex, float x1, float y1, float x2, float y2,
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
convolve3x3.rs | 31 uint32_t y1 = min((int32_t)y+1, gHeight-1); 34 float4 p00 = rsUnpackColor8888(gPixels[x1 + gWidth * y1]); 35 float4 p01 = rsUnpackColor8888(gPixels[x + gWidth * y1]); 36 float4 p02 = rsUnpackColor8888(gPixels[x2 + gWidth * y1]);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
TestGraphics.java | 60 public void drawLine(int x1, int y1, int x2, int y2) { 61 mDrawn.add("drawLine(" + x1 + "," + y1 + "," + x2 + "," + y2 + ")"); 70 public void drawRect(int x1, int y1, int x2, int y2) { 71 mDrawn.add("drawRect(" + x1 + "," + y1 + "," + x2 + "," + y2 + ")"); 95 public void fillRect(int x1, int y1, int x2, int y2) { 96 mDrawn.add("fillRect(" + x1 + "," + y1 + "," + x2 + "," + y2 + ")"); 169 public void drawArrow(int x1, int y1, int x2, int y2, int size) { 170 mDrawn.add("drawArrow(" + x1 + "," + y1 + "," + x2 + "," + y2 + ")");
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ilp32/elf/ |
equ-reloc.d | 9 0*0 [^ ]+ +(\.bss(\+0x0*4)?|y1)
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/ |
MullerSolver.java | 210 double y1 = f.value(x1); local 227 final double d01 = (y1 - y0) / (x1 - x0); 228 final double d12 = (y2 - y1) / (x2 - x1); 231 final double delta = c1 * c1 - 4 * y1 * d012; 232 final double xplus = x1 + (-2.0 * y1) / (c1 + FastMath.sqrt(delta)); 233 final double xminus = x1 + (-2.0 * y1) / (c1 - FastMath.sqrt(delta)); 260 y0 = x < x1 ? y0 : y1; 262 y2 = x > x1 ? y2 : y1; 263 x1 = x; y1 = y; 274 y1 = f.value(x1) 351 double y1 = f.value(x1); local [all...] |
/external/clang/test/SemaCXX/ |
warn-literal-conversion.cpp | 9 int y1 = (1.2222F); // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}} local
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_draw_quad.h | 56 float x0, float y0, float x1, float y1, float z);
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
spstproc.h | 119 Word16 y1[], /* i : Filtered adaptive exitation */
|
/prebuilts/misc/windows/sdl2/test/ |
testintersections.c | 80 add_line(int x1, int y1, int x2, int y2) 84 if ((x1 == x2) && (y1 == y2)) 87 SDL_Log("adding line (%d, %d), (%d, %d)\n", x1, y1, x2, y2); 89 lines[num_lines].y = y1; 124 add_rect(int x1, int y1, int x2, int y2) 128 if ((x1 == x2) || (y1 == y2)) 133 if (y1 > y2) 134 SWAP(int, y1, y2); 136 SDL_Log("adding rect (%d, %d), (%d, %d) [%dx%d]\n", x1, y1, x2, y2, 137 x2 - x1, y2 - y1); 163 int x1, y1, x2, y2; local [all...] |
/external/pdfium/xfa/src/fxbarcode/common/ |
BC_CommonPerspectiveTransform.h | 25 FX_FLOAT y1,
41 FX_FLOAT y1,
49 FX_FLOAT y1,
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
convolve5x5.rs | 34 uint32_t y1 = max((int32_t)y-1, 0); 45 + convert_float4(rsGetElementAt_uchar4(gIn, x0, y1)) * gCoeffs[5] 46 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y1)) * gCoeffs[6] 47 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y1)) * gCoeffs[7] 48 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y1)) * gCoeffs[8] 49 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y1)) * gCoeffs[9]
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
convolve5x5.rs | 34 uint32_t y1 = max((int32_t)y-1, 0); 45 + convert_float4(rsGetElementAt_uchar4(gIn, x0, y1)) * gCoeffs[5] 46 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y1)) * gCoeffs[6] 47 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y1)) * gCoeffs[7] 48 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y1)) * gCoeffs[8] 49 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y1)) * gCoeffs[9]
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
convolve5x5.rs | 34 uint32_t y1 = max((int32_t)y-1, 0); 45 + convert_float4(rsGetElementAt_uchar4(gIn, x0, y1)) * gCoeffs[5] 46 + convert_float4(rsGetElementAt_uchar4(gIn, x1, y1)) * gCoeffs[6] 47 + convert_float4(rsGetElementAt_uchar4(gIn, x2, y1)) * gCoeffs[7] 48 + convert_float4(rsGetElementAt_uchar4(gIn, x3, y1)) * gCoeffs[8] 49 + convert_float4(rsGetElementAt_uchar4(gIn, x4, y1)) * gCoeffs[9]
|
/prebuilts/go/darwin-x86/test/ |
escape_field.go | 79 var y1 Y 80 y1.x = x 81 _ = y1.x.p1 89 var y1 Y 90 y1.x = x 91 sink = y1.x.p1 // ERROR "y1\.x\.p1 escapes to heap" 99 var y1 Y 100 y1.x = x 101 sink = y1.x // ERROR "y1\.x escapes to heap [all...] |
/prebuilts/go/linux-x86/test/ |
escape_field.go | 79 var y1 Y 80 y1.x = x 81 _ = y1.x.p1 89 var y1 Y 90 y1.x = x 91 sink = y1.x.p1 // ERROR "y1\.x\.p1 escapes to heap" 99 var y1 Y 100 y1.x = x 101 sink = y1.x // ERROR "y1\.x escapes to heap [all...] |