HomeSort by relevance Sort by last modified time
    Searched defs:x1 (Results 176 - 200 of 244) sorted by null

1 2 3 4 5 6 78 910

  /external/webkit/Source/WebCore/platform/graphics/cairo/
GraphicsContextCairo.cpp 157 double x1 = 0; local
161 cairo_stroke_extents(cairoContext, &x0, &y0, &x1, &y1);
162 solidFigureExtents = FloatRect(x0, y0, x1 - x0, y1 - y0);
165 cairo_fill_extents(cairoContext, &x0, &y0, &x1, &y1);
166 FloatRect fillExtents(x0, y0, x1 - x0, y1 - y0);
1072 double x1, y1, x2, y2; local
1073 cairo_clip_extents(cr, &x1, &y1, &x2, &y2);
1074 cairo_rectangle(cr, x1, y1, x2 - x1, y2 - y1);
1107 double x1, y1, x2, y2 local
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderTableCell.cpp 844 int x1; member in struct:WebCore::CollapsedBorder
    [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 258 float x1 = x0; local
270 else if (x > x1) {
271 x1 = x;
297 float dx = x1 - x0;
315 static inline float dot3(float x0, float y0, float z0, float x1, float y1, float z1) {
316 return x0 * x1 + y0 * y1 + z0 * z1;
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Blend.cpp 144 double z, x0, y0, x1, y1, x2, y2, x3, y3; local
170 FrameToMosaic(mb->trs, 0.0, mb->height-1.0, x1, y1);
174 if(x0 < xLeftCorners[0] || x1 < xLeftCorners[1]) // If either of the left corners is lower
177 xLeftCorners[1] = x1;
200 FindQuadCentroid(x0, y0, x1, y1, x2, y2, x3, y3, csite->getVCenter().x, csite->getVCenter().y);
981 int x1 = (xx >= 0.0) ? (int) xx : (int) floor(xx); local
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
msm_q6vdec.h 114 u32 x1; member in struct:vdec_cropping_window
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
msm_q6vdec.h 114 u32 x1; member in struct:vdec_cropping_window
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PreviewIconFactory.java 327 int x1 = parentX + info.getLeft(); local
331 if (x1 != x2 && y1 != y2) {
332 savePreview(file, image, x1, y1, x2, y2);
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
TreeView.java 880 float x1 = node.left + DrawableViewNode.NODE_WIDTH; local
    [all...]
  /system/core/libpixelflinger/
trap.cpp 516 int32_t x1 = v1[0]; local
521 int32_t dx01 = x0 - x1;
529 swap(x0, x1);
531 dx01 = x0 - x1;
536 int32_t dx12 = x1 - x2;
540 const int32_t bminx = TRI_FLOOR(min(x0, x1, x2)) >> TRI_FRACTION_BITS;
542 const int32_t bmaxx = TRI_CEIL( max(x0, x1, x2)) >> TRI_FRACTION_BITS;
555 int32_t ey1 = dy12 * (x1 - mx) - dx12 * (y1 - my);
694 const int x1 = top[0]; local
695 const int dx = bot[0] - x1;
880 const int x1 = top[0]; local
    [all...]
  /system/core/toolbox/
newfs_msdos.c 271 u_int fat, bss, rds, cls, dir, lsn, x, x1, x2; local
569 x1 = bpb.res + rds;
571 if (x1 + (u_int64_t)x * bpb.nft > bpb.bsec)
573 x1 += x * bpb.nft;
574 x = (u_int64_t)(bpb.bsec - x1) * bpb.bps * NPB /
580 x1 += (bpb.bspf - 1) * bpb.nft;
582 cls = (bpb.bsec - x1) / bpb.spc;
594 bpb.bsec = x1 + (cls + 1) * bpb.spc - 1;
640 x1 = sizeof(struct bs);
641 bsbpb = (struct bsbpb *)(img + x1);
    [all...]
  /prebuilt/common/http-client/
commons-logging-1.1.1.jar 
  /bionic/libc/stdlib/
strtod.c 825 ULong *x, *x1, *xe, z; local
844 x1 = b1->x;
846 *x1++ = 0;
854 *x1++ = *x << k | z;
858 if ((*x1 = z) != 0)
866 *x1++ = *x << k & 0xffff | z;
870 if (*x1 = z)
875 *x1++ = *x++;
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_gtk.cc 1851 gint x1, x2, y1, y2; local
    [all...]
  /external/opencv/cv/src/
cvfundam.cpp 703 double x1 = m2[i].x, y1 = m2[i].y; local
705 a[i*9+0] = x1*x0;
706 a[i*9+1] = x1*y0;
707 a[i*9+2] = x1;
851 double x1 = (m2[i].x - m1c.x)*scale1; local
853 double r[9] = { x1*x0, x1*y0, x1, y1*x0, y1*y0, y1, x0, y0, 1 };
    [all...]
cvhough.cpp 910 int sx, sy, x0, y0, x1, y1, r, k; local
939 for( x1 = x0, y1 = y0, r = min_radius; r <= max_radius; x1 += sx, y1 += sy, r++ )
941 int x2 = x1 >> SHIFT, y2 = y1 >> SHIFT;
    [all...]
  /external/opencv/cvaux/src/
cvtrifocal.cpp 961 double x1,y1,x2,y2; local
962 x1 = cvmGet(tmpProjPoints[currImage],0,i);
968 dx = x1-x2;
1242 double x1,y1,x2,y2; local
1469 double x1,y1,w1,x2,y2,w2; local
    [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 89 int x1, y1, x2, y2; local
99 x1 = pt1->x; y1 = pt1->y; x2 = pt2->x; y2 = pt2->y;
100 c1 = (x1 < 0) + (x1 > right) * 2 + (y1 < 0) * 4 + (y1 > bottom) * 8;
110 x1 += (int) (((int64) (a - y1)) * (x2 - x1) / (y2 - y1));
112 c1 = (x1 < 0) + (x1 > right) * 2;
117 x2 += (int) (((int64) (a - y2)) * (x2 - x1) / (y2 - y1));
126 y1 += (int) (((int64) (a - x1)) * (y2 - y1) / (x2 - x1))
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 665 int x0 = src[5], x1 = src[3]; local
668 int x4 = x0 + x1; x0 -= x1;
670 x1 = x2 + x3; x2 -= x3;
671 x3 = x1 + x4; x1 -= x4;
676 x1 = descale( x1*C1_414, fixb);
679 x1 -= x0;
680 x2 += x1;
717 int x0 = work[8*5], x1 = work[8*3]; local
1112 int i, s = 0, mcu, x1 = 0, y1 = 0; local
1522 int x0 = src[0], x1 = src[7]; local
1569 int x0 = work[8*0], x1 = work[8*7]; local
    [all...]
  /external/skia/src/core/
SkMatrix.cpp 1386 SkFixed x0, y0, x1, y1, x2, y2; local
1519 float x0, y0, x1, y1, x2, y2; local
    [all...]
  /external/svox/pico/lib/
picocep.c 108 #define POW1 (0x1)
196 picoos_int32 xi[5], x1[2], x2[3], xm[3], xn[2]; member in struct:cep_subobj
822 cep->x1[0] = -1;
823 cep->x1[1] = 2;
    [all...]
  /external/v8/test/cctest/
test-heap-profiler.cc 360 "function C(x) { this.x1 = x; this.x2 = x; }\n"
456 "function C2(x) { this.x1 = x; this.x2 = x; this[1] = x; }\n"
493 // -a-> X1 --a
505 const v8::HeapGraphNode* x1 = local
507 CHECK_NE(NULL, x1);
514 CHECK_EQ(x1->GetSelfSize(), x1->GetRetainedSize(false));
518 CHECK_EQ(x1->GetSelfSize(), x1->GetRetainedSize(true));
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
GraphicsContextWinCE.cpp 90 void map(double x1, double y1, double* x2, double* y2) const
92 x1 += m_preShiftX;
94 *x2 = x1 * m_cosA + y1 * m_sinA + m_postShiftX;
95 *y2 = y1 * m_cosA - x1 * m_sinA + m_postShiftY;
97 void map(int x1, int y1, int* x2, int* y2) const
99 x1 += m_preShiftX;
101 *x2 = stableRound(x1 * m_cosA + y1 * m_sinA) + m_postShiftX;
102 *y2 = stableRound(y1 * m_cosA - x1 * m_sinA) + m_postShiftY;
397 int x1 = x + transform.m_preShiftX; local
399 int srcX = x1 * cosA + transform.m_postShiftX
412 int x1 = x + transform.m_preShiftX; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
intra_est.cpp 737 int x0, x1, x2, x3, x4, x5; local
1151 x1 = P_B + P_C + 1;
1165 temp1 |= ((x1 >> 1) << 8);
1171 temp2 = ((x0 + x1) >> 2);
1172 temp2 |= (((x1 + x2) >> 2) << 8);
    [all...]
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 2186 BigDecimal x1 = (BigDecimal) x; local
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
XKBgeom.h 94 short x1,y1; member in struct:_XkbBounds
97 #define XkbBoundsWidth(b) (((b)->x2)-((b)->x1))

Completed in 1836 milliseconds

1 2 3 4 5 6 78 910