/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
hp_wsp.c | 87 Word16 x0, x1, x2, x3; local 98 x1 = mem[7]; 104 x2 = x1; 105 x1 = x0; 119 L_tmp += (x1 * b[1])<<1; 142 mem[7] = x1;
|
/frameworks/av/media/libstagefright/foundation/ |
base64.cpp | 106 uint8_t x1 = data[i]; local 110 out->append(encode6Bit(x1 >> 2)); 111 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f)); 120 uint8_t x1 = data[i]; local 122 out->append(encode6Bit(x1 >> 2)); 123 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f)); 130 uint8_t x1 = data[i]; local 131 out->append(encode6Bit(x1 >> 2)); 132 out->append(encode6Bit((x1 << 4) & 0x3f));
|
/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}} 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}} expected-warning {{Address of stack memory associated with local variable 'x1' returne (…) 57 const int &x1 = get_value(); \/\/ expected-note {{binding reference variable 'x1' here}} local [all...] |
/external/clang/test/Lexer/ |
ms-extensions.c | 4 __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/ |
copy-initialization.cpp | 12 X x1 = y; // expected-error{{no matching constructor for initialization of 'X'}} local
|
warn-bad-memaccess.cpp | 19 struct X1 { virtual void f(); } x1; variable in typeref:struct:X1 23 memset(&x1, 0, sizeof x1); // \ 30 memmove(&x1, 0, sizeof x1); // \ 31 // expected-warning{{destination for this 'memmove' call is a pointer to dynamic class 'struct X1'; vtable pointer will be overwritten}} \ 33 memmove(0, &x1, sizeof x1); // \ 34 // expected-warning{{source of this 'memmove' call is a pointer to dynamic class 'struct X1'; vtable pointer will be moved}} [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/openssh/ |
jpake.h | 47 BIGNUM *x1; /* random in Zq */ member in struct:jpake_ctx 57 BIGNUM *g_x1; /* g^x1 */ 67 BIGNUM *a; /* g^((x1+x3+x4)*x2*s) */ 70 BIGNUM *b; /* g^((x1+x2+x3)*x4*s) */
|
/external/openssl/crypto/ec/ |
ec2_mult.c | 109 /* Compute the x-coordinate x1/z1 for the point (x1/z1)+(x2/x2) in Montgomery 115 static int gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, 128 if (!group->meth->field_mul(group, x1, x1, z2, ctx)) goto err; 130 if (!group->meth->field_mul(group, t2, x1, z1, ctx)) goto err; 131 if (!BN_GF2m_add(z1, z1, x1)) goto err; 133 if (!group->meth->field_mul(group, x1, z1, t1, ctx)) goto err; 134 if (!BN_GF2m_add(x1, x1, t2)) goto err 220 BIGNUM *x1, *x2, *z1, *z2; local [all...] |
/external/qemu/android/skin/ |
rect.h | 60 int x1, y1; member in struct:__anon10503 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...] |