HomeSort by relevance Sort by last modified time
    Searched defs:x1 (Results 51 - 75 of 241) sorted by null

1 23 4 5 6 7 8 910

  /frameworks/base/services/sensorservice/
Fusion.h 37 vec3_t x1; member in class:android::Fusion
74 enum { ACC=0x1, MAG=0x2, GYRO=0x4 };
  /external/clang/test/Analysis/
stack-addr-ps.cpp 33 const int &x1 = get_value(); // expected-note {{binding reference variable 'x1' here}} local
34 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here}}
45 int x1; local
46 int &x2 = x1; // expected-note {{binding reference variable 'x2' here}}
47 return &x2; // expected-warning {{address of stack memory associated with local variable 'x1' returned}}
51 int x1; local
52 int *const &x2 = &x1; // expected-note {{binding reference variable 'x2' here}}
53 return x2; // expected-warning {{address of stack memory associated with local variable 'x1' returned}}
57 const int &x1 = get_value(); // expected-note {{binding reference variable 'x1' here} local
    [all...]
  /external/clang/test/Lexer/
ms-extensions.c 3 __int8 x1 = 3i8; variable
  /external/clang/test/Sema/
struct-decl.c 47 unsigned int x1; member in struct:x0
tentative-decls.c 4 struct a x1; // expected-note 2{{forward declaration of 'struct a'}} variable in typeref:struct:a
  /external/clang/test/SemaCXX/
warn-bad-memaccess.cpp 18 struct X1 { virtual void f(); } x1; variable in typeref:struct:X1
22 memset(&x1, 0, sizeof x1); // \
29 memmove(&x1, 0, sizeof x1); // \
32 memmove(0, &x1, sizeof x1); // \
35 memcpy(&x1, 0, sizeof x1); // \
    [all...]
warn-unused-filescoped.cpp 42 static int x1; // expected-warning{{unused}} variable
  /external/clang/test/SemaTemplate/
instantiate-template-template-parm.cpp 35 struct X1 { };
39 X1<TT> x1; // expected-error{{has different template parameters}} member in struct:X2
70 template<class T> struct X1
84 template<class T> template<class U> struct X1<T>::Inner
95 X1<double> simplex_;
  /external/freetype/src/autofit/
afwarp.h 36 FT_Pos x1, x2; member in struct:AF_WarperRec_
  /external/openssl/crypto/ec/
ec2_mult.c 107 /* Compute the x-coordinate x1/z1 for the point (x1/z1)+(x2/x2) in Montgomery
113 static int gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1,
126 if (!group->meth->field_mul(group, x1, x1, z2, ctx)) goto err;
128 if (!group->meth->field_mul(group, t2, x1, z1, ctx)) goto err;
129 if (!BN_GF2m_add(z1, z1, x1)) goto err;
131 if (!group->meth->field_mul(group, x1, z1, t1, ctx)) goto err;
132 if (!BN_GF2m_add(x1, x1, t2)) goto err
218 BIGNUM *x1, *x2, *z1, *z2; local
    [all...]
  /external/qemu/android/skin/
rect.h 60 int x1, y1; member in struct:__anon9280
64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
  /external/skia/src/opts/
SkBitmapProcState_opts_SSE2.cpp 62 uint32_t XX = *xy++; // x0:14 | 4 | x1:14
64 unsigned x1 = XX & 0x3FFF; local
80 __m128i a01 = _mm_cvtsi32_si128(row0[x1]);
82 __m128i a11 = _mm_cvtsi32_si128(row1[x1]);
172 uint32_t XX = *xy++; // x0:14 | 4 | x1:14
174 unsigned x1 = XX & 0x3FFF; local
190 __m128i a01 = _mm_cvtsi32_si128(row0[x1]);
192 __m128i a11 = _mm_cvtsi32_si128(row1[x1]);
  /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
  /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/base/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/base/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/base/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...]
  /system/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);
  /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

Completed in 952 milliseconds

1 23 4 5 6 7 8 910