Searched refs:y0 (Results 26 - 50 of 395) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_draw_quad.h56 float x0, float y0, float x1, float y1, float z);
H A Du_format_yuv.c555 uint8_t y0, y1, u, v; local
565 y0 = (value >> 8) & 0xff;
569 util_format_yuv_to_rgb_float(y0, u, v, &dst[0], &dst[1], &dst[2]);
586 y0 = (value >> 8) & 0xff;
590 util_format_yuv_to_rgb_float(y0, u, v, &dst[0], &dst[1], &dst[2]);
611 uint8_t y0, y1, u, v; local
621 y0 = (value >> 8) & 0xff;
625 util_format_yuv_to_rgb_8unorm(y0, u, v, &dst[0], &dst[1], &dst[2]);
642 y0 = (value >> 8) & 0xff;
646 util_format_yuv_to_rgb_8unorm(y0,
666 uint8_t y0, y1, u, v; local
670 uint8_t y0, y1, u0, u1, v0, v1, u, v; local
727 uint8_t y0, y1, u, v; local
731 uint8_t y0, y1, u0, u1, v0, v1, u, v; local
808 uint8_t y0, y1, u, v; local
864 uint8_t y0, y1, u, v; local
919 uint8_t y0, y1, u, v; local
923 uint8_t y0, y1, u0, u1, v0, v1, u, v; local
980 uint8_t y0, y1, u, v; local
984 uint8_t y0, y1, u0, u1, v0, v1, u, v; local
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-literal-conversion.cpp8 int y0 = 1.2222F; // expected-warning {{implicit conversion from 'float' to 'int' changes value from 1.2222 to 1}} local
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_draw_quad.h56 float x0, float y0, float x1, float y1, float z);
H A Du_format_yuv.c555 uint8_t y0, y1, u, v; local
565 y0 = (value >> 8) & 0xff;
569 util_format_yuv_to_rgb_float(y0, u, v, &dst[0], &dst[1], &dst[2]);
586 y0 = (value >> 8) & 0xff;
590 util_format_yuv_to_rgb_float(y0, u, v, &dst[0], &dst[1], &dst[2]);
611 uint8_t y0, y1, u, v; local
621 y0 = (value >> 8) & 0xff;
625 util_format_yuv_to_rgb_8unorm(y0, u, v, &dst[0], &dst[1], &dst[2]);
642 y0 = (value >> 8) & 0xff;
646 util_format_yuv_to_rgb_8unorm(y0,
666 uint8_t y0, y1, u, v; local
670 uint8_t y0, y1, u0, u1, v0, v1, u, v; local
727 uint8_t y0, y1, u, v; local
731 uint8_t y0, y1, u0, u1, v0, v1, u, v; local
808 uint8_t y0, y1, u, v; local
864 uint8_t y0, y1, u, v; local
919 uint8_t y0, y1, u, v; local
923 uint8_t y0, y1, u0, u1, v0, v1, u, v; local
980 uint8_t y0, y1, u, v; local
984 uint8_t y0, y1, u0, u1, v0, v1, u, v; local
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkCullPoints.cpp18 bool SkCullPoints::sect_test(int x0, int y0, int x1, int y1) const { argument
23 (y0 < r.fTop && y1 < r.fTop) ||
24 (y0 > r.fBottom && y1 > r.fBottom)) {
29 if (r.contains(x0, y0) || r.contains(x1, y1)) {
37 vec.set(x1 - x0, y1 - y0);
38 bool isNeg = cross_product_is_neg(vec, x0 - rAsQuad[0].fX, y0 - rAsQuad[0].fY);
40 if (cross_product_is_neg(vec, x0 - rAsQuad[i].fX, y0 - rAsQuad[i].fY) != isNeg) {
83 int y0 = fPrevPt.fY; local
88 if (this->sect_test(x0, y0, x, y)) {
89 line[0].set(x0, y0);
[all...]
/external/skia/src/utils/
H A DSkCullPoints.cpp18 bool SkCullPoints::sect_test(int x0, int y0, int x1, int y1) const { argument
23 (y0 < r.fTop && y1 < r.fTop) ||
24 (y0 > r.fBottom && y1 > r.fBottom)) {
29 if (r.contains(x0, y0) || r.contains(x1, y1)) {
37 vec.set(x1 - x0, y1 - y0);
38 bool isNeg = cross_product_is_neg(vec, x0 - rAsQuad[0].fX, y0 - rAsQuad[0].fY);
40 if (cross_product_is_neg(vec, x0 - rAsQuad[i].fX, y0 - rAsQuad[i].fY) != isNeg) {
83 int y0 = fPrevPt.fY; local
88 if (this->sect_test(x0, y0, x, y)) {
89 line[0].set(x0, y0);
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_noise.c257 float y0 = y - Y0; local
266 if (x0 > y0) {
280 y1 = y0 - j1 + G2;
282 y2 = y0 - 1.0f + 2.0f * G2;
289 t0 = 0.5f - x0 * x0 - y0 * y0;
294 n0 = t0 * t0 * grad2(perm[ii + perm[jj]], x0, y0);
343 float y0 = y - Y0; local
356 if (x0 >= y0) {
357 if (y0 >
504 float y0 = y - Y0; local
[all...]
/external/mesa3d/src/mesa/program/
H A Dprog_noise.c257 float y0 = y - Y0; local
266 if (x0 > y0) {
280 y1 = y0 - j1 + G2;
282 y2 = y0 - 1.0f + 2.0f * G2;
289 t0 = 0.5f - x0 * x0 - y0 * y0;
294 n0 = t0 * t0 * grad2(perm[ii + perm[jj]], x0, y0);
343 float y0 = y - Y0; local
356 if (x0 >= y0) {
357 if (y0 >
504 float y0 = y - Y0; local
[all...]
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dtcd.h93 OPJ_INT32 x0, y0, x1, y1; /* dimension of the code-blocks : left upper corner (x0, y0) right low corner (x1,y1) */ member in struct:opj_tcd_cblk_enc
105 OPJ_INT32 x0, y0, x1, y1; /* position of the code-blocks : left upper corner (x0, y0) right low corner (x1,y1) */ member in struct:opj_tcd_cblk_dec
120 OPJ_INT32 x0, y0, x1, y1; /* dimension of the precinct : left upper corner (x0, y0) right low corner (x1,y1) */ member in struct:opj_tcd_precinct
135 OPJ_INT32 x0, y0, x1, y1; /* dimension of the subband : left upper corner (x0, y0) right low corner (x1,y1) */ member in struct:opj_tcd_band
147 OPJ_INT32 x0, y0, x1, y1; /* dimension of the resolution level : left upper corner (x0, y0) righ member in struct:opj_tcd_resolution
158 OPJ_INT32 x0, y0, x1, y1; /* dimension of component : left upper corner (x0, y0) right low corner (x1,y1) */ member in struct:opj_tcd_tilecomp
173 OPJ_INT32 x0, y0, x1, y1; /* dimension of the tile : left upper corner (x0, y0) right low corner (x1,y1) */ member in struct:opj_tcd_tile
[all...]
H A Dimage.c62 comp->y0 = cmptparms[compno].y0;
115 l_y0 = opj_int_max((OPJ_INT32)p_cp->ty0 , (OPJ_INT32)p_image_header->y0);
130 l_img_comp->y0 = (OPJ_UINT32)l_comp_y0/*l_y0*/;
153 p_image_dest->y0 = p_image_src->y0;
232 comp->y0 = cmptparms[compno].y0;
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_linetemp.h73 GLint y0 = (GLint) vert0->attrib[FRAG_ATTRIB_WPOS][1]; local
142 if ((y0==h) | (y1==h)) {
143 if ((y0==h) & (y1==h))
145 y0 -= y0==h;
152 dy = y1 - y0;
169 zPtr = (DEPTH_TYPE *) _swrast_pixel_address(zrb, x0, y0);
172 pixelPtr = (PIXEL_TYPE *) PIXEL_ADDRESS(x0,y0);
313 PLOT( x0, y0 );
316 span.array->y[i] = y0;
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_linetemp.h73 GLint y0 = (GLint) vert0->attrib[FRAG_ATTRIB_WPOS][1]; local
142 if ((y0==h) | (y1==h)) {
143 if ((y0==h) & (y1==h))
145 y0 -= y0==h;
152 dy = y1 - y0;
169 zPtr = (DEPTH_TYPE *) _swrast_pixel_address(zrb, x0, y0);
172 pixelPtr = (PIXEL_TYPE *) PIXEL_ADDRESS(x0,y0);
313 PLOT( x0, y0 );
316 span.array->y[i] = y0;
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dpath.c297 VGfloat y0 = sy; local
298 matrix_map_point(matrix, x0, y0, &x0, &y0);
299 polygon_vertex_append(current, x0, y0);
365 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
413 y0 = data[1];
414 map_if_relative(ox, oy, relative, &x0, &y0);
416 sy = y0;
418 oy = y0;
420 py = y0;
1027 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1058 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1088 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1234 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1281 VGfloat y0 = sy; local
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpath.c297 VGfloat y0 = sy; local
298 matrix_map_point(matrix, x0, y0, &x0, &y0);
299 polygon_vertex_append(current, x0, y0);
365 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
413 y0 = data[1];
414 map_if_relative(ox, oy, relative, &x0, &y0);
416 sy = y0;
418 oy = y0;
420 py = y0;
1027 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1058 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1088 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1234 VGfloat x0, y0, x1, y1, x2, y2, x3, y3; local
1281 VGfloat y0 = sy; local
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_postproc.c569 static void constrain_line(int x0, int *x1, int y0, int *y1, argument
576 dy = *y1 - y0;
580 *y1 = ((width - x0) * dy) / dx + y0;
584 dy = *y1 - y0;
588 *y1 = ((0 - x0) * dy) / dx + y0;
592 dy = *y1 - y0;
596 *x1 = ((height - y0) * dx) / dy + x0;
600 dy = *y1 - y0;
604 *x1 = ((0 - y0) * dx) / dy + x0;
735 int x0, y0;
[all...]
/external/chromium_org/ui/events/test/
H A Dmock_motion_event.cc42 float y0)
43 : MotionEventGeneric(action, time, CreatePointer(x0, y0, 0)) {
49 float y0,
52 : MotionEventGeneric(action, time, CreatePointer(x0, y0, 0)) {
61 float y0,
66 : MotionEventGeneric(action, time, CreatePointer(x0, y0, 0)) {
39 MockMotionEvent(Action action, TimeTicks time, float x0, float y0) argument
46 MockMotionEvent(Action action, TimeTicks time, float x0, float y0, float x1, float y1) argument
58 MockMotionEvent(Action action, TimeTicks time, float x0, float y0, float x1, float y1, float x2, float y2) argument
H A Dmock_motion_event.h24 float y0,
30 float y0,
/external/speex/libspeex/
H A Dltp_arm4.h101 spx_word32_t y0, y1, y2, y3; local
102 y0=*y++;
173 : "+r" (y0), "+r" (y1), "+r" (y2), "+r" (y3),
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv30_transfer.h16 unsigned y0; member in struct:nv30_rect
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_quad.h64 int x0, y0; /**< quad window pos, always even */ member in struct:quad_header_input
/external/clang/test/Index/
H A Dload-exprs.c30 struct Y y0 = { .array[StartIndex].b = bval, .array[StartIndex].a = aval }; local
67 // CHECK: load-exprs.c:30:12: VarDecl=y0:30:12 (Definition) Extent=[30:3 - 30:77]
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_transfer.h16 unsigned y0; member in struct:nv30_rect
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad.h64 int x0, y0; /**< quad window pos, always even */ member in struct:quad_header_input
/external/chromium_org/v8/third_party/fdlibm/
H A Dfdlibm.js36 // precision, r is returned as two values y0 and y1 such that r = y0 + y1
39 var n, y0, y1;
49 y0 = z - PIO2_1T;
50 y1 = (z - y0) - PIO2_1T;
54 y0 = z - PIO2_2T;
55 y1 = (z - y0) - PIO2_2T;
63 y0 = z + PIO2_1T;
64 y1 = (z - y0) + PIO2_1T;
68 y0
[all...]

Completed in 470 milliseconds

1234567891011>>