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

1 2 3 4 5 6 7 8 91011>>

  /external/opencv3/modules/core/src/opencl/
set_identity.cl 60 int y0 = get_global_id(1) * rowsPerWI;
64 int src_index = mad24(y0, src_step, mad24(x, TSIZE, src_offset));
68 for (int y = y0, i = 0, y1 = min(rows, y0 + rowsPerWI); i < rowsPerWI; ++y, ++i, src_index += src_step)
72 if (y0 < rows)
74 storepix(x == y0 >> 2 ? (T)(scalar, 0, 0, 0) : (T)(0), srcptr + src_index);
75 if (++y0 < rows)
78 storepix(x == y0 >> 2 ? (T)(0, scalar, 0, 0) : (T)(0), srcptr + src_index);
80 if (++y0 < rows)
83 storepix(x == y0 >> 2 ? (T)(0, 0, scalar, 0) : (T)(0), srcptr + src_index)
    [all...]
flip.cl 57 int y0 = get_global_id(1) * PIX_PER_WI_Y;
61 int src_index0 = mad24(y0, src_step, mad24(x, TSIZE, src_offset));
62 int src_index1 = mad24(rows - y0 - 1, src_step, mad24(x, TSIZE, src_offset));
63 int dst_index0 = mad24(y0, dst_step, mad24(x, TSIZE, dst_offset));
64 int dst_index1 = mad24(rows - y0 - 1, dst_step, mad24(x, TSIZE, dst_offset));
67 for (int y = y0, y1 = min(thread_rows, y0 + PIX_PER_WI_Y); y < y1; ++y)
88 int y0 = get_global_id(1)*PIX_PER_WI_Y;
92 int src_index0 = mad24(y0, src_step, mad24(x, TSIZE, src_offset));
93 int src_index1 = mad24(rows - y0 - 1, src_step, mad24(cols - x - 1, TSIZE, src_offset))
    [all...]
convert.cl 59 int y0 = get_global_id(1) * rowsPerWI;
63 int src_index = mad24(y0, src_step, mad24(x, (int)sizeof(srcT), src_offset));
64 int dst_index = mad24(y0, dst_step, mad24(x, (int)sizeof(dstT), dst_offset));
66 for (int y = y0, y1 = min(dst_rows, y0 + rowsPerWI); y < y1; ++y, src_index += src_step, dst_index += dst_step)
  /external/libhevc/decoder/
ihevcd_intra_pred_mode_prediction.h 43 WORD32 y0);
ihevcd_parse_residual.h 40 WORD32 x0, WORD32 y0,
  /external/clang/test/PCH/
functions.c 8 int f0(int x0, int y0, ...) { return x0 + y0; }
pr4489.c 25 struct y0 { int i; } y0[1] = {}; variable in typeref:struct:y0
  /external/mesa3d/src/gallium/auxiliary/util/
u_rect.h 36 int y0, y1; member in struct:u_rect
47 a->y1 < b->y0 ||
48 b->y1 < a->y0));
61 if (b->y0 < a->y0) b->y0 = a->y0;
74 b->x0 = b->x1 = b->y0 = b->y1 = 0;
  /external/libvpx/libvpx/vp8/encoder/x86/
quantize_sse4.c 36 __m128i sz0, x0, sz1, x1, y0, y1, x_minus_zbin0, x_minus_zbin1, local
83 y0 = _mm_mulhi_epi16(x0, quant0);
86 y0 = _mm_add_epi16(y0, x0);
91 y0 = _mm_mulhi_epi16(y0, quant_shift0);
95 y0 = _mm_xor_si128(y0, sz0);
97 y0 = _mm_sub_epi16(y0, sz0)
    [all...]
vp8_quantize_sse2.c 43 __m128i sz0, x0, sz1, x1, y0, y1, x_minus_zbin0, x_minus_zbin1; local
92 y0 = _mm_mulhi_epi16(x0, quant0);
95 y0 = _mm_add_epi16(y0, x0);
100 y0 = _mm_mulhi_epi16(y0, quant_shift0);
104 y0 = _mm_xor_si128(y0, sz0);
106 y0 = _mm_sub_epi16(y0, sz0)
158 __m128i sz0, sz1, x0, x1, y0, y1, xdq0, xdq1, zeros, ones; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
FirstOrderIntegrator.java 45 * @param y0 initial value of the state vector at t0
49 * step (and hence at the end of integration), can be the same object as y0
58 double t0, double[] y0,
  /external/libvpx/libvpx/vp9/common/
vp9_textblit.h 20 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
vp9_textblit.c 60 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
62 int steep = abs(y1 - y0) > abs(x1 - x0);
69 x0 = y0;
70 y0 = t;
83 t = y0;
84 y0 = y1;
89 deltay = abs(y1 - y0);
92 y = y0;
94 if (y0 < y1)
  /hardware/bsp/intel/peripheral/libupm/src/st7735/
gfx.cxx 74 GFX::drawLine (int16_t x0, int16_t y0, int16_t x1, int16_t y1, uint16_t color) {
75 int16_t steep = abs(y1 - y0) > abs(x1 - x0);
78 swap(x0, y0);
84 swap(y0, y1);
89 dy = abs (y1 - y0);
94 if (y0 < y1) {
102 setPixel(y0, x0, color);
104 setPixel(x0, y0, color);
108 y0 += ystep;
115 GFX::drawTriangle(int16_t x0, int16_t y0, int16_t x1, int16_t y1, int16_t x2, int16_t y2, uint16_t color)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_textblit.h 20 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
vp9_textblit.c 60 void vp9_blit_line(int x0, int x1, int y0, int y1, unsigned char *image,
62 int steep = abs(y1 - y0) > abs(x1 - x0);
69 x0 = y0;
70 y0 = t;
83 t = y0;
84 y0 = y1;
89 deltay = abs(y1 - y0);
92 y = y0;
94 if (y0 < y1)
  /frameworks/base/graphics/java/android/graphics/
LinearGradient.java 43 @param y0 The y-coordinate for the start of the gradient line
52 public LinearGradient(float x0, float y0, float x1, float y1, int colors[], float positions[],
62 mY0 = y0;
68 init(nativeCreate1(x0, y0, x1, y1, colors, positions, tile.nativeInt));
73 @param y0 The y-coordinate for the start of the gradient line
80 public LinearGradient(float x0, float y0, float x1, float y1, int color0, int color1,
84 mY0 = y0;
90 init(nativeCreate2(x0, y0, x1, y1, color0, color1, tile.nativeInt));
115 private native long nativeCreate1(float x0, float y0, float x1, float y1,
117 private native long nativeCreate2(float x0, float y0, float x1, float y1
    [all...]
  /external/dng_sdk/source/
dng_1d_table.cpp 88 real64 y0 = fTable [lower]; local
91 real64 delta = (y1 - y0) / (real64) range;
96 y0 += delta;
98 fTable [j] = (real32) y0;
161 real64 y0 = fTable [0]; local
164 real64 base = y0 * 65535.0 + 0.5;
165 real64 slope = (y1 - y0) * 65535.0;
183 y0 = y1;
186 base = y0 * 65535.0 + 0.5;
187 slope = (y1 - y0) * 65535.0
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/
sh4al-dsp.s 14 movx.w @r1+,y0 nopy
19 movx.l @r1+,y0 nopy
22 movx.w a0,@r4+ movy.w @r6+r9,y0
33 movy.w @r3,y0
38 movy.l @r2,y0
45 nopx movy.w y0,@r7+r9
48 movy.l y0,@r3
53 pabs y0,m1
60 dcf pabs m1,y0
61 dcf pabs y0,a
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
Geometry.h 65 inline void FindTriangleCentroid(double x0, double y0, double x1, double y1,
71 centY = (y0 + y1 + y2) / 3.0;
74 if (y0 == y2)
78 mass = fabs((y1 - y0) * (x2 - x0)); // Special case 1a
82 mass = fabs((y1 - y0) * (x1 - x0)); // Special case 1b
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 3
102 // Calculate line equation from x0,y0 to x2,y2
104 double dy = y2 - y0;
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Geometry.h 65 inline void FindTriangleCentroid(double x0, double y0, double x1, double y1,
71 centY = (y0 + y1 + y2) / 3.0;
74 if (y0 == y2)
78 mass = fabs((y1 - y0) * (x2 - x0)); // Special case 1a
82 mass = fabs((y1 - y0) * (x1 - x0)); // Special case 1b
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 3
102 // Calculate line equation from x0,y0 to x2,y2
104 double dy = y2 - y0;
    [all...]
  /hardware/bsp/intel/peripheral/libupm/src/lcd/
eboled.cxx 262 void EBOLED::drawLine(int8_t x0, int8_t y0, int8_t x1, int8_t y1, uint8_t color)
264 int16_t steep = abs(y1 - y0) > abs(x1 - x0);
267 swap(x0, y0);
273 swap(y0, y1);
278 dy = abs (y1 - y0);
283 if (y0 < y1) {
291 drawPixel(y0, x0, color);
293 drawPixel(x0, y0, color);
297 y0 += ystep;
346 void EBOLED::drawTriangle(int8_t x0, int8_t y0, int8_t x1, int8_t y1, int8_t x2, int8_t y2, uint8_t color
    [all...]
  /external/libvpx/libvpx/vp8/common/
textblit.c 61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch)
63 int steep = abs(y1 - y0) > abs(x1 - x0);
71 x0 = y0;
72 y0 = t;
86 t = y0;
87 y0 = y1;
92 deltay = abs(y1 - y0);
95 y = y0;
97 if (y0 < y1)
  /external/skia/src/core/
SkEdge.cpp 36 SkFDot6 x0, y0, x1, y1; local
41 y0 = SkScalarRoundToFDot6(p0.fY, shift);
47 y0 = int(p0.fY * scale);
55 if (y0 > y1) {
57 SkTSwap(y0, y1);
61 int top = SkFDot6Round(y0);
73 SkFixed slope = SkFDot6Div(x1 - x0, y1 - y0);
74 const SkFDot6 dy = SkEdge_Compute_DY(top, y0);
91 int SkEdge::updateLine(SkFixed x0, SkFixed y0, SkFixed x1, SkFixed y1)
97 y0 >>= 10
178 SkFDot6 x0, y0, x1, y1, x2, y2; local
336 SkFDot6 x0, y0, x1, y1, x2, y2, x3, y3; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
textblit.c 61 void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch)
63 int steep = abs(y1 - y0) > abs(x1 - x0);
71 x0 = y0;
72 y0 = t;
86 t = y0;
87 y0 = y1;
92 deltay = abs(y1 - y0);
95 y = y0;
97 if (y0 < y1)

Completed in 1100 milliseconds

1 2 3 4 5 6 7 8 91011>>