HomeSort by relevance Sort by last modified time
    Searched defs:x1 (Results 76 - 100 of 511) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/qemu/android/skin/
rect.h 60 int x1, y1; member in struct:__anon13088
64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
  /external/tremolo/Tremolo/
asm_arm.h 73 int x1, y1, l; local
79 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a)
82 *x = x1;
92 int x1, y1, l; local
98 : "=&r" (l), "=&r" (x1), "=&r" (y1), "=r" (a)
101 *x = x1 << 1;
111 int x1, y1, l; local
117 : "=&r" (l), "=&r" (x1), "=&r" (y1)
120 *x = x1 << 1;
  /external/valgrind/main/memcheck/tests/
mempool.c 115 char *x1, *x2, *x3, *x4, *x5; local
121 x1 = allocate(p, 10);
127 *x1 = 'a'; // valid
130 x1[-1] = 'h'; // invalid
131 x1[10] = 'i'; // invalid
138 *x1 = 'e'; // valid
mempool2.c 118 char *x1, *x2; local
130 x1 = allocate(p1, 10);
135 res += x1[-1];
136 res += x1[10];
145 VALGRIND_MEMPOOL_FREE(p1, x1);
146 res += x1[5];
155 VALGRIND_MEMPOOL_FREE(p1, x1);
  /external/webkit/Source/WebCore/css/
CSSTimingFunctionValue.h 69 static PassRefPtr<CSSCubicBezierTimingFunctionValue> create(double x1, double y1, double x2, double y2)
71 return adoptRef(new CSSCubicBezierTimingFunctionValue(x1, y1, x2, y2));
74 double x1() const { return m_x1; } function in class:WebCore::CSSCubicBezierTimingFunctionValue
80 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2)
81 : m_x1(x1)
  /external/webkit/Source/WebCore/svg/
LinearGradientAttributes.h 40 SVGLength x1() const { return m_x1; } function in struct:WebCore::LinearGradientAttributes
SVGPathSegCurvetoCubic.h 31 SVGPathSegCurvetoCubic(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
35 , m_x1(x1)
56 float x1() const { return m_x1; } function in class:WebCore::SVGPathSegCurvetoCubic
57 void setX1(float x1)
59 m_x1 = x1;
95 static PassRefPtr<SVGPathSegCurvetoCubicAbs> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
97 return adoptRef(new SVGPathSegCurvetoCubicAbs(element, role, x, y, x1, y1, x2, y2));
101 SVGPathSegCurvetoCubicAbs(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2)
102 : SVGPathSegCurvetoCubic(element, role, x, y, x1, y1, x2, y2)
112 static PassRefPtr<SVGPathSegCurvetoCubicRel> create(SVGPathElement* element, SVGPathSegRole role, float x, float y, float x1, float y1, float x2, float y2
    [all...]
SVGPathStringSource.cpp 162 float x1; local
168 if (!parseNumber(m_current, m_end, x1)
175 point1 = FloatPoint(x1, y1);
183 float x1; local
187 if (!parseNumber(m_current, m_end, x1)
192 point1 = FloatPoint(x1, y1);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
get_pred_adv_b_add.cpp 867 uint32 x1, x2, x1m, x2m, y1, y2, y1m, y2m; /* new way */ local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_Align_unsafe_s.s 34 x1 RN 10 label
76 LDM pSrc, {x0, x1, x2}
82 STM pDst!, {x0, x1, x2} ;// Store aligned output row
87 LDM pSrc, {x0, x1, x2}
94 ORR x0, x0, x1, LSL #24
95 MOV x1, x1, LSR #8
96 ORR x1, x1, x2, LSL #24
98 STM pDst!, {x0, x1, x2} ;// Store aligned output ro
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
armVCM4P10_InterpolateLuma_Align_unsafe_s.s 34 x1 RN 10 label
76 LDM pSrc, {x0, x1, x2}
82 STM pDst!, {x0, x1, x2} ;// Store aligned output row
87 LDM pSrc, {x0, x1, x2}
94 ORR x0, x0, x1, LSL #24
95 MOV x1, x1, LSR #8
96 ORR x1, x1, x2, LSL #24
98 STM pDst!, {x0, x1, x2} ;// Store aligned output ro
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Quad.java 75 float x1 = Collections.max(xs); local
77 return new Rectangle(x0, y0, x1 - x0, y1 - y0);
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicColorMatrix.cpp 117 uint32_t x1 = xstart; local
120 if(x2 > x1) {
122 int32_t len = (x2 - x1) >> 2;
125 x1 += len << 2;
131 while(x1 != x2) {
133 x1++;
144 uint32_t x1 = xstart; local
147 if(x2 > x1) {
149 int32_t len = (x2 - x1) >> 2;
152 x1 += len << 2
171 uint32_t x1 = xstart; local
    [all...]
rsCpuIntrinsicLUT.cpp 63 uint32_t x1 = xstart; local
71 while (x1 < x2) {
77 x1++;
  /external/aac/libFDK/src/
mdct.cpp 345 FIXP_DBL x0, x1; local
347 cplxMult(&x1, &x0, *pCurr++, - *pOvl--, pWindow[i]);
349 *pOut1 = IMDCT_SCALE_DBL(-x1);
  /external/chromium/chrome/browser/ui/gtk/
nine_box.cc 117 int x1 = gdk_pixbuf_get_width(images_[0]); local
119 int x2 = images_[2] ? dst_width - gdk_pixbuf_get_width(images_[2]) : x1;
122 if (x2 < x1 || y2 < y1)
143 TileImage(cr, images_[1], x1, 0, x2 - x1, y1, opacity);
149 TileImage(cr, images_[3], 0, y1, x1, y2 - y1, opacity);
151 TileImage(cr, images_[4], x1, y1, x2 - x1, y2 - y1, opacity);
159 TileImage(cr, images_[7], x1, y2, x2 - x1, dst_height - y2, opacity)
205 int x1 = gdk_pixbuf_get_width(images_[0]); local
    [all...]
  /external/clang/test/ASTMerge/Inputs/
enum1.c 6 } x1; variable in typeref:enum:E1
enum2.c 6 } x1; variable in typeref:enum:E1
struct1.c 18 struct S1 x1; variable in typeref:struct:S1
struct2.c 15 struct S1 x1; variable in typeref:struct:S1
  /external/clang/test/CodeGen/
decl.c 113 typedef long (*x1)(x0 x0a, x5 x6); typedef
115 x1 x4;
regparm-struct.c 10 int x1; member in struct:s1
20 int x1; member in struct:s2
37 int x1; member in struct:s3
55 int x1; member in struct:s4
74 float x1; member in struct:s5
84 float x1; member in struct:s6
95 float x1; member in struct:s7
107 float x1; member in struct:s8
118 float x1; member in struct:s9
130 double x1; member in struct:s10
140 double x1; member in struct:s11
151 double x1; member in struct:s12
    [all...]
  /external/clang/test/CodeGenCXX/
anonymous-union-member-initializer.cpp 36 X x1; local
39 x1.l = 1;
42 X x2(x1);
46 x3 = x1;
  /external/clang/test/SemaTemplate/
instantiate-complete.cpp 49 struct X1 { };
54 void refbind_base(X2<X1<int> > &x2) {
55 X1<int> &x1 = x2; local
64 void enum_constructors(X1<float> &x1) {
65 X3<X1<float> > x3 = x1;
  /external/dropbear/libtommath/etc/
pprime.c 17 mp_word x1, x2; local
21 x1 = x2;
22 x2 = x1 - ((x1 * x1) - x) / (2 * x1);
23 } while (x1 != x2);
25 if (x1 * x1 > x) {
26 --x1;
    [all...]

Completed in 1612 milliseconds

1 2 34 5 6 7 8 91011>>