HomeSort by relevance Sort by last modified time
    Searched refs:y1 (Results 176 - 200 of 1250) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libvpx/libvpx/vp8/common/
postproc.c 123 extern void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch);
947 int x1, y1; local
965 y1 = y0 + 4 + (mv->row >> 3);
967 constrain_line (x0+8, &x1, y0+4, &y1, width, height);
968 vp8_blit_line (x0+8, x1, y0+4, y1, y_buffer, y_stride);
973 y1 = y0 +12 + (mv->row >> 3);
975 constrain_line (x0+8, &x1, y0+12, &y1, width, height);
976 vp8_blit_line (x0+8, x1, y0+12, y1, y_buffer, y_stride);
986 y1 = y0 + 8 + (mv->row >> 3);
988 constrain_line (x0+4, &x1, y0+8, &y1, width, height)
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_aalinetemp.h 118 line.y1 = v1->attrib[FRAG_ATTRIB_WPOS][1];
120 line.dy = line.y1 - line.y0;
137 compute_plane(line.x0, line.y0, line.x1, line.y1,
142 compute_plane(line.x0, line.y0, line.x1, line.y1,
144 compute_plane(line.x0, line.y0, line.x1, line.y1,
146 compute_plane(line.x0, line.y0, line.x1, line.y1,
148 compute_plane(line.x0, line.y0, line.x1, line.y1,
162 compute_plane(line.x0, line.y0, line.x1, line.y1, invW0, invW1, line.wPlane);
174 compute_plane(line.x0, line.y0, line.x1, line.y1, a0, a1,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
postproc.c 123 extern void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch);
940 int x1, y1; local
958 y1 = y0 + 4 + (mv->row >> 3);
960 constrain_line (x0+8, &x1, y0+4, &y1, width, height);
961 vp8_blit_line (x0+8, x1, y0+4, y1, y_buffer, y_stride);
966 y1 = y0 +12 + (mv->row >> 3);
968 constrain_line (x0+8, &x1, y0+12, &y1, width, height);
969 vp8_blit_line (x0+8, x1, y0+12, y1, y_buffer, y_stride);
979 y1 = y0 + 8 + (mv->row >> 3);
981 constrain_line (x0+4, &x1, y0+8, &y1, width, height)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_draw_quad.c 100 float x0, float y0, float x1, float y1, float z)
133 v[17] = y1;
138 v[25] = y1;
  /external/opencv3/modules/core/src/opencl/
flip.cl 67 for (int y = y0, y1 = min(thread_rows, y0 + PIX_PER_WI_Y); y < y1; ++y)
98 for (int y = y0, y1 = min(thread_rows, y0 + PIX_PER_WI_Y); y < y1; ++y)
144 for (int y = y0, y1 = min(rows, y0 + PIX_PER_WI_Y); y < y1; ++y)
mixchannels.cl 67 for (int y = y0, y1 = min(y0 + rowsPerWI, rows); y < y1; ++y)
mulspectrums.cl 70 for (int y = y0, y1 = min(dst_rows, y0 + rowsPerWI); y < y1; ++y,
set_identity.cl 68 for (int y = y0, i = 0, y1 = min(rows, y0 + rowsPerWI); i < rowsPerWI; ++y, ++i, src_index += src_step)
69 if (y < y1)
  /external/opencv3/modules/cudaoptflow/src/cuda/
farneback.cu 171 int y1 = floorf(fy);
172 fx -= x1; fy -= y1;
176 if (x1 >= 0 && y1 >= 0 && x1 < width - 1 && y1 < height - 1)
183 r2 = a00 * R1(y1, x1) +
184 a01 * R1(y1, x1 + 1) +
185 a10 * R1(y1 + 1, x1) +
186 a11 * R1(y1 + 1, x1 + 1);
188 r3 = a00 * R1(height + y1, x1) +
189 a01 * R1(height + y1, x1 + 1)
    [all...]
  /external/skia/experimental/
SkSetPoly3To3.cpp 21 SkScalar y1 = pts1[i].fY - ave1.fY; local
23 op[1] += SkScalarMul(x0, y1);
25 op[3] += SkScalarMul(y0, y1);
SkSetPoly3To3_D.cpp 36 SkScalar y1 = pts1[i].fY - ave1.fY; local
38 tmp[1] += SkDScalar_setMul(x0, y1);
40 tmp[3] += SkDScalar_setMul(y0, y1);
  /external/fio/
graph.c 242 double x1, y1, x2, y2; local
258 y1 = y2 - (((v - mindata) / domain) * range);
259 cairo_move_to(cr, x1, y1);
262 cairo_line_to(cr, x2, y1);
271 double *y1, double *x2, double *y2)
280 *y1 = 0.10 * g->ydim;
291 cairo_move_to(cr, offset + *x1, *y1 - offset);
292 cairo_line_to(cr, *x2 + offset, *y1 - offset);
300 cairo_move_to(cr, *x1, *y1);
303 cairo_line_to(cr, *x2, *y1);
438 double x1, y1, x2, y2; local
529 double x1, y1, x2, y2; local
    [all...]
  /external/opencv/cv/src/
cvpyramids.cpp 101 int x, y1, k = top_row; \
106 for( y1 = 0; y1 < PD_SZ; y1++ ) \
108 rows[y1] = buffer + k; \
121 for( y1 = fst; y1 < lst; y1++, src += srcstep ) \
123 worktype *row = rows[y1]; \
137 for( y1 = fst; y1 < lst; y1++, src += srcstep )
    [all...]
_cvgeom.h 55 int icvIntersectLines( double x1, double dx1, double y1, double dy1,
  /prebuilts/go/darwin-x86/src/math/
j1.go 35 // y1(x) = sqrt(2/(pi*x))*(p1(x)*sin(x1)+q1(x)*cos(x1))
51 // Method -- y1(x):
52 // 1. screen out x<=0 cases: y1(0)=-inf, y1(x<0)=NaN
55 // y1(x) = 2/pi*(j1(x)*(ln(x/2)+Euler)-1/x-x/2+5/64*x**3-...)
56 // therefore y1(x)-2/pi*j1(x)*ln(x)-1/x is an odd function.
57 // We use the following function to approximate y1,
58 // y1(x) = x*U(z)/V(z) + (2/pi)*(j1(x)*ln(x)-1/x), z= x**2
62 // Note: For tiny x, 1/x dominate y1 and hence
63 // y1(tiny) = -2/pi/tiny, (choose tiny<2**-54
    [all...]
  /prebuilts/go/linux-x86/src/math/
j1.go 35 // y1(x) = sqrt(2/(pi*x))*(p1(x)*sin(x1)+q1(x)*cos(x1))
51 // Method -- y1(x):
52 // 1. screen out x<=0 cases: y1(0)=-inf, y1(x<0)=NaN
55 // y1(x) = 2/pi*(j1(x)*(ln(x/2)+Euler)-1/x-x/2+5/64*x**3-...)
56 // therefore y1(x)-2/pi*j1(x)*ln(x)-1/x is an odd function.
57 // We use the following function to approximate y1,
58 // y1(x) = x*U(z)/V(z) + (2/pi)*(j1(x)*ln(x)-1/x), z= x**2
62 // Note: For tiny x, 1/x dominate y1 and hence
63 // y1(tiny) = -2/pi/tiny, (choose tiny<2**-54
    [all...]
  /bionic/libc/kernel/uapi/linux/dvb/
osd.h 59 int y1; member in struct:osd_cmd_s
  /development/ndk/platforms/android-21/include/linux/dvb/
osd.h 59 int y1; member in struct:osd_cmd_s
  /external/kernel-headers/original/uapi/linux/dvb/
osd.h 34 OSD_Open, // (x0,y0,x1,y1,BitPerPixel[2/4/8](color&0x0F),mix[0..15](color&0xF0))
49 OSD_SetColor, // (color,R{x0},G{y0},B{x1},opacity{y1})
73 OSD_SetBlock, // (x0,y0,x1,y1,increment{color},data)
74 // fills pixels x0,y0 through x1,y1 with the content of data[]
81 OSD_FillBlock, // (x0,y0,x1,y1,color)
82 // fills pixels x0,y0 through x1,y1 with the color <col>
84 OSD_Line, // (x0,y0,x1,y1,color)
85 // draw a line from x0,y0 to x1,y1 with the color <col>
87 OSD_Query, // (x0,y0,x1,y1,xasp{color}}), yasp=11
105 int y1; member in struct:osd_cmd_s
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_composite.h 30 int x0, int y0, int x1, int y1);
  /external/opencv3/modules/videostab/src/
deblurring.cpp 105 int y1 = cvRound(M(1,0)*x + M(1,1)*y + M(1,2)); local
107 if (x1 >= 0 && x1 < neighbor.cols && y1 >= 0 && y1 < neighbor.rows)
110 const Point3_<uchar> &p1 = neighbor.at<Point3_<uchar> >(y1,x1);
  /external/skia/src/core/
SkEdgeClipper.h 43 void appendVLine(SkScalar x, SkScalar y0, SkScalar y1, bool reverse);
  /external/skia/src/svg/parser/
SkSVGLinearGradient.cpp 18 SVG_ATTRIBUTE(y1),
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cl_ltp.h 145 Word16 y1[], /* o : Filtered adaptive excitation Q0 */
149 Word16 g_coeff[], /* o : Correlations between xn, y1, & y2 */
gain_q.h 157 Word16 y1[], /* i : Adaptive codebook. */
159 Word16 g_coeff[], /* i : Correlations <xn y1> <y1 y1> */

Completed in 364 milliseconds

1 2 3 4 5 6 78 91011>>