Searched defs:y0 (Results 126 - 150 of 255) sorted by relevance

1234567891011

/external/skia/src/core/
H A DSkRegion_path.cpp383 void set(int x, int y0, int y1) { argument
384 SkASSERT(y0 != y1);
387 fY0 = (SkRegion::RunType)(y0);
408 int y0 = base->fY0; local
415 if ((e->fFlags & Edge::kY1Link) == 0 && y0 == e->fY1) {
/external/skia/src/effects/
H A DSkBicubicImageFilter.cpp134 int y0 = SkClampMax(sy - 1, src.height() - 1); local
138 SkPMColor s00 = *src.getAddr32(x0, y0);
139 SkPMColor s10 = *src.getAddr32(x1, y0);
140 SkPMColor s20 = *src.getAddr32(x2, y0);
141 SkPMColor s30 = *src.getAddr32(x3, y0);
/external/skia/src/opts/
H A DSkBitmapFilter_opts_SSE2.cpp65 int y0 = SkTMax(0, int(ceil(sy-s.getBitmapFilter()->width() + 0.5f))); local
70 for (int src_y = y0; src_y <= y1; src_y++) {
122 int y0 = SkTMax(0, int(ceil(sy-s.getBitmapFilter()->width() + 0.5f))); local
137 for (int src_y = y0; src_y <= y1; src_y++) {
H A DSkBitmapProcState_opts_SSE2.cpp25 unsigned y0 = XY >> 14; local
26 const uint32_t* row0 = reinterpret_cast<const uint32_t*>(srcAddr + (y0 >> 4) * rb);
28 unsigned subY = y0 & 0xF;
131 unsigned y0 = XY >> 14; local
132 const uint32_t* row0 = reinterpret_cast<const uint32_t*>(srcAddr + (y0 >> 4) * rb);
134 unsigned subY = y0 & 0xF;
652 unsigned y0 = XY >> 14; local
653 const uint32_t* row0 = reinterpret_cast<const uint32_t*>(srcAddr + (y0 >> 4) * rb);
655 unsigned subY = y0 & 0xF;
H A DSkBitmapProcState_opts_SSSE3.cpp92 // (4x(y1), 4x(y0), 4x(x1), 4x(x0)) upon return.
94 // (4x(16-y1), 4x(16-y0), 4x(16-x1), 4x(16-x0)).
118 // (x1, y1, x0, y0)
120 // (y1, y0, x1, x0)
122 // (4x(y1), 4x(y0), 4x(x1), 4x(x0))
126 // (4x(16-y1), 4x(16-y0), 4x(16-x1), 4x(16-x0))
338 // y0 * (Aa2' * (16-x1) + Aa3' * x1),
340 // (16-y0) * (Ra0 * (16 - x0) + Ra1 * x0)) +
341 // y0 * (Ra0' * (16-x0) + Ra1' * x0))
409 const unsigned y0 local
658 unsigned y0 = data >> 14; local
[all...]
/external/skia/src/views/
H A DSkTouchGesture.cpp98 static bool close_enough_for_jitter(float x0, float y0, float x1, float y1) { argument
100 sk_float_abs(y0 - y1) <= MAX_JITTER_RADIUS;
/external/skia/tests/
H A DAAClipTest.cpp174 static void icubicTo(SkPath& path, int x0, int y0, int x1, int y1, int x2, int y2) { argument
175 path.cubicTo(SkIntToScalar(x0), SkIntToScalar(y0),
/external/tremolo/Tremolo/
H A Dfloor1.c205 int render_point(int x0,int x1,int y0,int y1,int x){ argument
206 y0&=0x7fff; /* mask off flag */
210 int dy=y1-y0;
216 if(dy<0)return(y0-off);
217 return(y0+off);
225 static void render_line(int n,int x0,int x1,int y0,int y1,ogg_int32_t *d){ argument
237 dy=y1-y0;
242 floor=&FLOOR_fromdB_LOOKUP[y0];
/external/aac/libFDK/src/
H A Dqmf.cpp496 FIXP_QMF x0, x1, y0, y1; local
500 y0 = timeIn[L2 - 1 - i] >> 1;
503 rSubband[i] = x0 - y0;
505 iSubband[i] = x0 + y0;
/external/chromium_org/content/browser/renderer_host/input/
H A Dtouch_event_queue_unittest.cc150 float y0,
154 touch_event_.MovePoint(index0, x0, y0);
148 MoveTouchPoints(int index0, float x0, float y0, int index1, float x1, float y1) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_reconinter.c399 int xs, ys, x0, y0, x0_16, y0_16, frame_width, frame_height, buf_stride, local
431 y0 = sf->scale_value_y(y_start + y, sf);
441 y0 = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)) + y;
445 y0_16 = y0 << SUBPEL_BITS;
456 y0 += scaled_mv.row >> SUBPEL_BITS;
461 buf_ptr = ref_frame + y0 * pre_buf->stride + x0;
480 y0 -= VP9_INTERP_EXTEND - 1;
487 y0 < 0 || y0 > frame_height - 1 || y1 < 0 || y1 > frame_height - 1) {
488 uint8_t *buf_ptr1 = ref_frame + y0 * pre_bu
[all...]
H A Dvp9_reconintra.c646 int x0, y0; local
667 y0 = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)) + y;
673 if (y0 + bs <= frame_height) {
677 const int extend_bottom = frame_height - y0;
775 int x0, y0; local
796 y0 = (-xd->mb_to_top_edge >> (3 + pd->subsampling_y)) + y;
804 if (y0 + bs <= frame_height) {
808 const int extend_bottom = frame_height - y0;
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_blit.c329 float x0, float y0, float x1, float y1,
336 ctx->vertices[0][0][1] = y0;
342 ctx->vertices[1][0][1] = y0;
328 setup_vertex_data_tex(struct blit_state *ctx, float x0, float y0, float x1, float y1, float s0, float t0, float s1, float t1, float z) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
H A Dnv50_surface.c872 float x0, x1, y0, y1, z; local
892 (float)(info->src.y1 - info->src.y0) /
893 (float)(info->dst.y1 - info->dst.y0);
896 y0 = (float)info->src.y0 - y_range * (float)info->dst.y0;
899 y1 = y0 + 16384.0f * y_range;
903 y0 *= (float)(1 << nv50_miptree(src)->ms_y);
923 PUSH_DATA (push, (info->dst.y1 << 16) | info->dst.y0);
929 PUSH_DATAf(push, y0);
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
H A Dnvc0_surface.c958 float x0, x1, y0, y1; local
984 (float)(info->src.y1 - info->src.y0) /
985 (float)(info->dst.y1 - info->dst.y0);
988 y0 = (float)info->src.y0 - y_range * (float)info->dst.y0;
991 y1 = y0 + 16384.0f * y_range;
995 y0 *= (float)(1 << nv50_miptree(src)->ms_y);
1012 PUSH_DATA (push, (info->dst.y1 << 16) | info->dst.y0);
1020 PUSH_DATAf(push, y0);
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_composite.c570 int x0, int y0, int x1, int y1)
573 x0, y0, x1, y1, exa->solid_color);
568 xorg_solid(struct exa_context *exa, struct exa_pixmap_priv *pixmap, int x0, int y0, int x1, int y1) argument
H A Dxorg_exa.c378 ExaSolid(PixmapPtr pPixmap, int x0, int y0, int x1, int y1) argument
385 exa_debug_printf("\tExaSolid(%d, %d, %d, %d)\n", x0, y0, x1, y1);
387 if (x0 == 0 && y0 == 0 &&
398 xorg_solid(exa, priv, x0, y0, x1, y1) ;
/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/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_cb_bitmap.c342 const GLfloat y0 = (GLfloat)y; local
347 const GLfloat clip_y0 = (GLfloat)(y0 / fb_height * 2.0 - 1.0);
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_texfetch_tmp.h1444 const GLubyte y0 = (*src0 >> 8) & 0xff; /* luminance */ local
1448 const GLubyte y = (i & 1) ? y1 : y0; /* choose even/odd luminance */
1474 const GLubyte y0 = *src0 & 0xff; /* luminance */ local
1478 const GLubyte y = (i & 1) ? y1 : y0; /* choose even/odd luminance */
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DSkAntiEdge.cpp20 float y0 = SkFixedToFloat(y); local
25 float numer = (x2 - x1) * (y1 - y0) - (x1 - x0) * (y2 - y1);
/external/chromium_org/third_party/skia/samplecode/
H A DSamplePatch.cpp97 SkScalar y0 = SkScalarMul(UV, edge[TL].fY) + SkScalarMul(uV, edge[TR].fY) + local
107 SkScalarMul(SK_Scalar1 - u, edge[BL+nv-iv].fY) - y0;
H A DSampleWarp.cpp113 static void set_cubic(SkPoint pts[4], SkScalar x0, SkScalar y0, argument
117 pts[0].set(x0, y0);
/external/chromium_org/third_party/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/deqp/framework/randomshaders/
H A DrsgProgramExecutor.cpp192 int y0 = (int)deFloatFloor((float)y / cellHeight); local
193 return tcu::IVec4(y0*gridVtxWidth + x0, y0*gridVtxWidth + x0 + 1, (y0+1)*gridVtxWidth + x0, (y0+1)*gridVtxWidth + x0 + 1);

Completed in 578 milliseconds

1234567891011