Searched defs:y0 (Results 176 - 200 of 255) sorted by relevance

1234567891011

/external/speex/libspeex/
H A Dfilters.c502 spx_sig_t y0, y1, y2, y3; local
505 y0 = y1 = y2 = y3 = 0;
520 y0 = MAC16_16(MAC16_16(y0, a0, x11), NEG16(a0), x21);
525 y0 = ADD32(y0,MULT16_16(a0, x11-x21));
537 y0 = MAC16_16(MAC16_16(y0, a0, x10), NEG16(a0), x20);
542 y0 = ADD32(y0,MULT16_1
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
H A Dpostproc.c123 extern void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch);
938 int x0, y0; local
940 for (y0 = 0; y0 < height; y0 += 16)
962 y1 = y0 + 4 + (mv->row >> 3);
964 constrain_line (x0+8, &x1, y0+4, &y1, width, height);
965 vp8_blit_line (x0+8, x1, y0+4, y1, y_buffer, y_stride);
970 y1 = y0 +12 + (mv->row >> 3);
972 constrain_line (x0+8, &x1, y0
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_soa.c692 LLVMValueRef x0, y0, z0, x1, y1, z1; local
725 &y0, &y1, &t_fpart);
726 lp_build_name(y0, "tex.y0.wrapped");
747 y0 = y1 = t_fpart = NULL;
757 x0, y0, z0,
762 x1, y0, z0,
804 /* get x0/x1/y0/y1 texels at z1 */
807 x0, y0, z1,
812 x1, y0, z
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Darc.c89 /* Given: Points (x0, y0) and (x1, y1)
94 find_unit_circles(double x0, double y0, double x1, double y1, argument
100 double dy = y0 - y1;
102 double ym = (y0 + y1)/2;
129 * endpoints (x0, y0) and (x1, y1)
135 double x0, double y0, double x1, double y1,
143 /* Transform (x0, y0) and (x1, y1) into unit space */
145 x0p = (x0*COS + y0*SIN)/rh;
146 y0p = (-x0*SIN + y0*COS)/rv;
176 /* Transform (x0, y0) an
134 find_ellipses(double rh, double rv, double rot, double x0, double y0, double x1, double y1, double *cx0, double *cy0, double *cx1, double *cy1) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
H A Dxa_renderer.c478 float x0, y0, x1, y1; local
490 y0 = dy;
495 add_vertex_1tex(r, x0, y0, s0, t0);
496 add_vertex_1tex(r, x1, y0, s1, t0);
532 int x0, int y0, int x1, int y1, float *color)
536 * x0, y0, x1, y1, color[0], color[1], color[2], color[3]); */
541 add_vertex_color(r, x0, y0, color);
543 add_vertex_color(r, x1, y0, color);
531 renderer_solid(struct xa_context *r, int x0, int y0, int x1, int y1, float *color) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_renderer.c467 int x0, int y0,
473 x0, y0, x1, y1, color[0], color[1], color[2], color[3]);*/
478 add_vertex_color(r, x0, y0, color);
480 add_vertex_color(r, x1, y0, color);
466 renderer_solid(struct xorg_renderer *r, int x0, int y0, int x1, int y1, float *color) argument
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_drawpixels.c566 draw_quad(struct gl_context *ctx, GLfloat x0, GLfloat y0, GLfloat z, argument
587 const GLfloat clip_y0 = y0 / fb_height * 2.0f - 1.0f;
668 GLfloat x0, y0, x1, y1; local
796 y0 = (GLfloat) y;
802 draw_quad(ctx, x0, y0, z, x1, y1, color, invertTex,
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_aaline.c44 GLfloat x0, y0; /* start */ member in struct:LineInfo
79 * Input: (x0, y0) and (x1,y1) are the endpoints of the line.
89 compute_plane(GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, argument
95 const GLfloat py = y1 - y0;
103 const GLfloat d = -(a * x0 + b * y0 + c * z0);
111 const GLfloat py = y1 - y0;
116 const GLfloat d = -(a * x0 + b * y0 + c * z0);
344 const GLfloat y0 = line->y0 + t0 * line->dy; local
346 const GLfloat y1 = line->y0
[all...]
/external/chromium_org/third_party/skia/src/gpu/
H A DGrPathUtils.cpp196 // [y0 y1 y2]
203 double y0 = qPts[0].fY; local
208 double det = x0*y1 - y0*x1 + x2*y0 - y2*x0 + x1*y2 - y1*x2;
258 a3 = y2-y0;
260 a5 = x2*y0-x0*y2;
262 a6 = y0-y1;
264 a8 = x0*y1-x1*y0;
308 // k = (y2 - y0, x0 - x2, (x2 - x0)*y0
[all...]
/external/chromium_org/ui/events/gesture_detection/
H A Dgesture_provider_unittest.cc73 float y0,
76 return MockMotionEvent(action, event_time, x0, y0, x1, y1);
82 float y0,
87 return MockMotionEvent(action, event_time, x0, y0, x1, y1, x2, y2);
70 ObtainMotionEvent(base::TimeTicks event_time, MotionEvent::Action action, float x0, float y0, float x1, float y1) argument
79 ObtainMotionEvent(base::TimeTicks event_time, MotionEvent::Action action, float x0, float y0, float x1, float y1, float x2, float y2) argument
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.cpp224 int y0 = de::max(a.y(), b.y()); local
228 int h = de::max(0, y1-y0);
230 return tcu::IVec4(x0, y0, w, h);
/external/deqp/framework/referencerenderer/
H A DrrRasterizer.cpp57 static inline void initEdgeCCW (EdgeFunction& edge, const HorizontalFill horizontalFill, const VerticalFill verticalFill, const deInt64 x0, const deInt64 y0, const deInt64 x1, const deInt64 y1) argument
62 const deInt64 yd = y1-y0;
70 edge.a = (y0 - y1);
72 edge.c = x0*y1 - y0*x1;
436 const deInt64 y0 = toSubpixelCoord(v0.y()); local
445 initEdgeCCW(m_edge01, m_horizontalFill, m_verticalFill, x0, y0, x1, y1);
447 initEdgeCCW(m_edge20, m_horizontalFill, m_verticalFill, x2, y2, x0, y0);
452 initEdgeCCW(m_edge01, m_horizontalFill, m_verticalFill, x1, y1, x0, y0);
454 initEdgeCCW(m_edge20, m_horizontalFill, m_verticalFill, x0, y0, x2, y2);
473 const deInt64 yMin = de::min(de::min(y0, y
505 const int y0 = m_curPos.y(); local
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderBuiltinVarTests.cpp559 const int y0 = deRoundFloatToInt32(float(height)*(pointIter->y()*0.5f + 0.5f) - pointIter->z()*0.5f); local
563 const int h = y1-y0;
573 const int dy = y0+yo;
835 const float y0 = -1.0f + quadY*h; local
839 m_positions[vtxNdx+0] = tcu::Vec4(x0, y0, 0.0f, 1.0f);
840 m_positions[vtxNdx+1] = tcu::Vec4(x0+w, y0+h, 0.0f, 1.0f);
841 m_positions[vtxNdx+2] = tcu::Vec4(x0, y0+h, 0.0f, 1.0f);
845 m_positions[vtxNdx+0] = tcu::Vec4(x0+w, y0+h, 0.0f, 1.0f);
846 m_positions[vtxNdx+1] = tcu::Vec4(x0, y0, 0.0f, 1.0f);
847 m_positions[vtxNdx+2] = tcu::Vec4(x0+w, y0, 0.
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fMultisampleTests.cpp794 float y0 = (float)(row+0) / (float)numQuadRowsCols * 2.0f - 1.0f; local
825 renderQuad(Vec2(x0, y0), Vec2(x1, y0), Vec2(x0, y1), Vec2(x1, y1), baseGreen + alpha0, baseGreen + alpha1, baseGreen + alpha0, baseGreen + alpha1);
826 renderQuad(Vec2(x0, y0), Vec2(x1, y0), Vec2(x0, y1), Vec2(x1, y1), baseRed + alpha0, baseRed + alpha1, baseRed + alpha0, baseRed + alpha1);
932 float y0 = (float)(row+0) / (float)numQuadRowsCols * 2.0f - 1.0f; local
951 renderQuad(Vec2(x0, y0), Vec2(x1, y0), Vec2(x0, y1), Vec2(x1, y1), baseGreen, baseGreen, baseGreen, baseGreen);
963 renderQuad(Vec2(x0, y0), Vec2(x1, y0), Vec
[all...]
/external/libvorbis/lib/
H A Dfloor1.c272 static int render_point(int x0,int x1,int y0,int y1,int x){ argument
273 y0&=0x7fff; /* mask off flag */
277 int dy=y1-y0;
283 if(dy<0)return(y0-off);
284 return(y0+off);
362 static void render_line(int n, int x0,int x1,int y0,int y1,float *d){ argument
363 int dy=y1-y0;
369 int y=y0;
391 static void render_line0(int n, int x0,int x1,int y0,int y1,int *d){ argument
392 int dy=y1-y0;
471 fit_line(lsfit_acc *a,int fits,int *y0,int *y1, vorbis_info_floor1 *info) argument
531 inspect_error(int x0,int x1,int y0,int y1,const float *mask, const float *mdct, vorbis_info_floor1 *info) argument
627 int y0=-200; local
728 int y0=output[ln]; local
810 int y0=post[ln]; local
[all...]
/external/libvpx/libvpx/vp8/common/
H A Dpostproc.c123 extern void vp8_blit_line(int x0, int x1, int y0, int y1, unsigned char *image, const int pitch);
934 int x0, y0; local
936 for (y0 = 0; y0 < height; y0 += 16)
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
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_soa.c692 LLVMValueRef x0, y0, z0, x1, y1, z1; local
725 &y0, &y1, &t_fpart);
726 lp_build_name(y0, "tex.y0.wrapped");
747 y0 = y1 = t_fpart = NULL;
757 x0, y0, z0,
762 x1, y0, z0,
804 /* get x0/x1/y0/y1 texels at z1 */
807 x0, y0, z1,
812 x1, y0, z
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Darc.c89 /* Given: Points (x0, y0) and (x1, y1)
94 find_unit_circles(double x0, double y0, double x1, double y1, argument
100 double dy = y0 - y1;
102 double ym = (y0 + y1)/2;
129 * endpoints (x0, y0) and (x1, y1)
135 double x0, double y0, double x1, double y1,
143 /* Transform (x0, y0) and (x1, y1) into unit space */
145 x0p = (x0*COS + y0*SIN)/rh;
146 y0p = (-x0*SIN + y0*COS)/rv;
176 /* Transform (x0, y0) an
134 find_ellipses(double rh, double rv, double rot, double x0, double y0, double x1, double y1, double *cx0, double *cy0, double *cx1, double *cy1) argument
[all...]
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_renderer.c478 float x0, y0, x1, y1; local
490 y0 = dy;
495 add_vertex_1tex(r, x0, y0, s0, t0);
496 add_vertex_1tex(r, x1, y0, s1, t0);
532 int x0, int y0, int x1, int y1, float *color)
536 * x0, y0, x1, y1, color[0], color[1], color[2], color[3]); */
541 add_vertex_color(r, x0, y0, color);
543 add_vertex_color(r, x1, y0, color);
531 renderer_solid(struct xa_context *r, int x0, int y0, int x1, int y1, float *color) argument
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_renderer.c467 int x0, int y0,
473 x0, y0, x1, y1, color[0], color[1], color[2], color[3]);*/
478 add_vertex_color(r, x0, y0, color);
480 add_vertex_color(r, x1, y0, color);
466 renderer_solid(struct xorg_renderer *r, int x0, int y0, int x1, int y1, float *color) argument
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_drawpixels.c566 draw_quad(struct gl_context *ctx, GLfloat x0, GLfloat y0, GLfloat z, argument
587 const GLfloat clip_y0 = y0 / fb_height * 2.0f - 1.0f;
668 GLfloat x0, y0, x1, y1; local
796 y0 = (GLfloat) y;
802 draw_quad(ctx, x0, y0, z, x1, y1, color, invertTex,
/external/mesa3d/src/mesa/swrast/
H A Ds_aaline.c44 GLfloat x0, y0; /* start */ member in struct:LineInfo
79 * Input: (x0, y0) and (x1,y1) are the endpoints of the line.
89 compute_plane(GLfloat x0, GLfloat y0, GLfloat x1, GLfloat y1, argument
95 const GLfloat py = y1 - y0;
103 const GLfloat d = -(a * x0 + b * y0 + c * z0);
111 const GLfloat py = y1 - y0;
116 const GLfloat d = -(a * x0 + b * y0 + c * z0);
344 const GLfloat y0 = line->y0 + t0 * line->dy; local
346 const GLfloat y1 = line->y0
[all...]
/external/opencv/cv/src/
H A Dcvshapedescr.cpp567 double xi, yi, xi_1, yi_1, x0, y0, dxy, sk, sk1, t; local
588 a00 = x0 = y0 = xi_1 = yi_1 = 0;
621 y0 = yi_1;
638 dxy = xi * y0 - x0 * yi;
649 y0 = yi;
670 dxy = x_s * y0 - x0 * y_s;
681 y0 = y_s;
698 yi = y0;
790 double x0, y0, idet, scale, offx = 0, offy = 0; local
904 | b/2 c | | y0 | |
[all...]
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsgamma.c881 int y0, y1; local
892 y0 = LutTable[i];
895 if (y0 <= y1) { // Increasing
896 if (In >= y0 && In <= y1) return i;
899 if (y1 < y0) { // Decreasing
900 if (In >= y1 && In <= y0) return i;
908 y0 = LutTable[i];
911 if (y0 <= y1) { // Increasing
912 if (In >= y0 && In <= y1) return i;
915 if (y1 < y0) { // Decreasin
[all...]
H A Dcmsintrp.c190 cmsUInt16Number y1, y0; local
208 y0 = LutTable[cell0];
212 Output[0] = LinearInterp(rest, y0, y1);
227 cmsFloat32Number y1, y0; local
248 y0 = LutTable[cell0] ;
251 Output[0] = y0 + (y1 - y0) * rest;
293 cmsFloat32Number y1, y0; local
320 y0 = LutTable[cell0 + OutChan] ;
323 Output[OutChan] = y0
339 int x0, y0, local
394 int x0, y0; local
451 int x0, y0, z0, local
525 int x0, y0, z0; local
598 int x0, y0, z0, local
700 int x0, y0, z0; local
837 int x0, y0, z0; local
1047 cmsFloat32Number y0 = Tmp1[i]; local
1135 cmsFloat32Number y0 = Tmp1[i]; local
1222 cmsFloat32Number y0 = Tmp1[i]; local
1308 cmsFloat32Number y0 = Tmp1[i]; local
1393 cmsFloat32Number y0 = Tmp1[i]; local
[all...]

Completed in 743 milliseconds

1234567891011