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

1 2 3 4 5 6 78 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/video/wscons/
SDL_wsconsvideo.c 477 int x1, y1, x2, y2; local
485 x1 = rects[i].x;
487 x2 = x1 + rects[i].w;
490 if (x1 < 0) {
491 x1 = 0;
492 } else if (x1 > width) {
493 x1 = width;
510 if (x2 <= x1 || y2 <= y1) {
516 sha_x1 = scr_x1 = x1;
527 scr_y2 = width - x1;
    [all...]
  /external/libffi/src/powerpc/
darwin_closure.S 255 .byte 0x1 ; CIE Version
257 .byte 0x1 ; uleb128 0x1; CIE Code Alignment Factor
260 .byte 0x1 ; uleb128 0x1; Augmentation size
263 .byte 0x1 ; uleb128 0x1
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/gscripts/
android.widget.RelativeLayout.groovy 191 int x1 = bounds.x;
195 int x2 = x1 + w;
204 if (x <= x1 + n && y >= y1 && y <= y2) {
205 r = new Rect(x1 - n, y1, n2, h);
212 } else if (y <= y1 + n && x >= x1 && x <= x2) {
213 r = new Rect(x1, y1 - n, w, n2);
216 } else if (y >= y2 - n && x >= x1 && x <= x2) {
217 r = new Rect(x1, y2 - n, w, n2);
263 int x1 = b.x + ((b.w - wt) / 2);
266 def bounds = new Rect(x1, y1, wt, ht)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Path.java 230 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
233 * @param x1 The x-coordinate of the control point on a quadratic curve
238 public void quadTo(float x1, float y1, float x2, float y2) {
239 native_quadTo(mNativePath, x1, y1, x2, y2);
262 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
265 * @param x1 The x-coordinate of the 1st control point on a cubic curve
272 public void cubicTo(float x1, float y1, float x2, float y2,
274 native_cubicTo(mNativePath, x1, y1, x2, y2, x3, y3);
282 public void rCubicTo(float x1, float y1, float x2, float y2,
284 native_rCubicTo(mNativePath, x1, y1, x2, y2, x3, y3)
    [all...]
  /external/opencore/fileformats/mp4/parser/src/
esdescriptor.cpp 70 _streamDependenceFlag = ((data >> 7) & 0x1) == 1 ? true : false; // leading bit
71 _urlFlag = ((data >> 6) & 0x1) == 1 ? true : false; // next bit
72 _OCRStreamFlag = (uint8)((data >> 5) & 0x1); // next bit
  /external/skia/experimental/
SkSetPoly3To3.cpp 10 SkScalar x1 = pts1[i].fX - ave1.fX; local
12 op[0] += SkScalarMul(x0, x1);
14 op[2] += SkScalarMul(y0, x1);
SkSetPoly3To3_D.cpp 25 SkScalar x1 = pts1[i].fX - ave1.fX; local
27 tmp[0] += SkDScalar_setMul(x0, x1);
29 tmp[2] += SkDScalar_setMul(y0, x1);
  /external/skia/src/core/
SkBitmapProcState_shaderproc.h 46 unsigned x1 = TILEX_PROCF((fx + oneX), maxX); local
50 SRC_TO_FILTER(row0[x1]),
52 SRC_TO_FILTER(row1[x1]),
  /external/opencore/codecs_v2/video/m4v_h263/enc/src/
motion_comp.cpp 1127 ULong x1, x2, x1m, x2m, y1, y2, y1m, y2m; \/* new way *\/ local
    [all...]
  /external/iptables/include/linux/netfilter_ipv4/
ipt_policy.h 12 IPT_POLICY_MATCH_IN = 0x1,
  /external/iptables/include/linux/netfilter_ipv6/
ip6t_policy.h 8 IP6T_POLICY_MATCH_IN = 0x1,
  /external/kernel-headers/original/linux/
coda_fs_i.h 43 #define C_VATTR 0x1 /* Validity of vattr in inode */
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/dec/src/
d2_9pf.cpp 227 i = sign & 0x1;
  /external/opencore/codecs_v2/video/m4v_h263/dec/src/
motion_comp.h 37 #define CBP_MASK_CHROMA_BLK5 0x1
  /external/qemu/android/utils/
mapfile.h 29 #define PROT_READ 0x1
  /external/qemu/slirp/
debug.h 16 #define DBG_CALL 0x1
main.h 50 #define PROTO_SLIP 0x1
  /external/qemu/slirp-android/
debug.h 16 #define DBG_CALL 0x1
main.h 54 #define PROTO_SLIP 0x1
  /external/skia/include/utils/
SkCullPoints.h 48 bool sect_test(int x0, int y0, int x1, int y1) const;
  /external/skia/src/svg/
SkSVGLinearGradient.cpp 24 SVG_ATTRIBUTE(x1),
  /external/webkit/WebCore/svg/
LinearGradientAttributes.h 41 SVGLength x1() const { return m_x1; } function in struct:WebCore::LinearGradientAttributes
SVGLineElement.h 56 DECLARE_ANIMATED_PROPERTY(SVGLineElement, SVGNames::x1Attr, SVGLength, X1, x1)
  /frameworks/base/awt/org/apache/harmony/awt/gl/render/
JavaArcRasterizer.java 31 int x1 = 0; local
35 if (x1 <= finish && x2 >= start) {
36 mra.addRect(cx + Math.max(x1, start), y, cx + Math.min(x2, finish), y);
38 x1 = x2 + 1;
43 int x1 = 0; local
47 if (x1 <= finish && x2 >= start) {
48 mra.addRect(cx + Math.max(x1, start), y, cx + Math.min(x2, finish), y);
50 x1 = x2 + 1;
55 int x1 = 0; local
59 if (x1 <= finish && x2 >= start)
67 int x1 = 0; local
    [all...]
  /frameworks/base/core/java/android/text/
AndroidBidi.java 43 result = (result & 0x1) == 0 ? Layout.DIR_LEFT_TO_RIGHT : Layout.DIR_RIGHT_TO_LEFT;

Completed in 852 milliseconds

1 2 3 4 5 6 78 91011>>