/external/clang/test/SemaCXX/ |
copy-initialization.cpp | 13 X x2 = 0; local
|
default-constructor-initializers.cpp | 7 struct X2 : X1 { // expected-note 2 {{'X2' declared here}} 8 X2(int); 11 struct X3 : public X2 { // expected-error {{implicit default constructor for 'X3' must explicitly initialize the base class 'X2' which does not have a default constructor}} 16 struct X4 { // expected-error {{must explicitly initialize the member 'x2'}} \ 18 X2 x2; // expected-note {{member is declared here}} member in struct:X4 19 X2 & rx2; // expected-note {{declared here}}
|
linkage2.cpp | 27 extern int x2; 32 int x2; member in namespace:test3::__anon6888
|
warn-bad-memaccess.cpp | 25 struct X2 : virtual S1 {} x2; variable in typeref:struct:X2 31 memset(&x2, 0, sizeof x2); // \ 57 __builtin_memset(&x2, 0, sizeof x2); // \ 77 __builtin___memset_chk(&x2, 0, sizeof x2, sizeof x2); // \
|
/external/compiler-rt/lib/asan/tests/ |
asan_mem_test.cc | 78 static bool AllocateTwoAdjacentArrays(char **x1, char **x2, size_t size) { 88 *x2 = v[j]; 98 if (res && v[i] == *x2) continue; 106 char *x1, *x2; local 107 if (!Ident(AllocateTwoAdjacentArrays)(&x1, &x2, size)) 109 // fprintf(stderr, " large oob memset: %p %p %zd\n", x1, x2, size); 110 // Do a memset on x1 with huge out-of-bound access that will end up in x2. 114 delete [] x2;
|
/external/freetype/src/autofit/ |
afwarp.h | 36 FT_Pos x1, x2; member in struct:AF_WarperRec_
|
/external/openssh/ |
jpake.h | 48 BIGNUM *x2; /* random in Z*q */ member in struct:jpake_ctx 58 BIGNUM *g_x2; /* g^x2 */ 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 116 const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx) 129 if (!group->meth->field_mul(group, z1, z1, x2, ctx)) goto err; 143 /* Compute the x, y affine coordinates from the point (x1, z1) (x2, z2) 153 BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) 160 BN_zero(x2); 167 if (!BN_copy(x2, x)) return 0; 187 if (!BN_GF2m_add(z2, z2, x2)) goto err; 198 if (!group->meth->field_mul(group, x2, x1, t3, ctx)) goto err 220 BIGNUM *x1, *x2, *z1, *z2; local [all...] |
/external/qemu/android/skin/ |
rect.h | 61 int x2, y2; member in struct:__anon13088 64 extern void skin_box_init( SkinBox* box, int x1, int y1, int x2, int y2 );
|
/external/valgrind/main/memcheck/tests/ |
mempool.c | 115 char *x1, *x2, *x3, *x4, *x5; local 122 x2 = allocate(p, 20); 128 *x2 = 'b'; // valid 139 *x2 = 'f'; // valid
|
mempool2.c | 118 char *x1, *x2; local 131 x2 = allocate(p2, 20); 140 res += x2[-1]; // invalid 141 res += x2[20]; // invalid 150 VALGRIND_MEMPOOL_FREE(p2, x2); 151 res += x2[11]; 159 VALGRIND_MEMPOOL_FREE(p2, x2);
|
/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)); 76 double x2() const { return m_x2; } function in class:WebCore::CSSCubicBezierTimingFunctionValue 80 CSSCubicBezierTimingFunctionValue(double x1, double y1, double x2, double y2) 83 , m_x2(x2)
|
/external/webkit/Source/WebCore/svg/ |
LinearGradientAttributes.h | 42 SVGLength x2() const { return m_x2; } 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) 37 , m_x2(x2) 70 float x2() const { return m_x2; } function in class:WebCore::SVGPathSegCurvetoCubic 71 void setX2(float x2) 73 m_x2 = x2; 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 | 164 float x2; local 170 || !parseNumber(m_current, m_end, x2) 176 point2 = FloatPoint(x2, y2); 199 float x2; local 203 if (!parseNumber(m_current, m_end, x2) 208 point2 = FloatPoint(x2, y2);
|
/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 | 35 x2 RN 11 label 76 LDM pSrc, {x0, x1, x2} 82 STM pDst!, {x0, x1, x2} ;// Store aligned output row 87 LDM pSrc, {x0, x1, x2} 96 ORR x1, x1, x2, LSL #24 97 MOV x2, x2, LSR #8 98 STM pDst!, {x0, x1, x2} ;// Store aligned output row 103 LDM pSrc, {x0, x1, x2} 112 ORR x1, x1, x2, LSL #1 [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/ |
armVCM4P10_InterpolateLuma_Align_unsafe_s.s | 35 x2 RN 11 label 76 LDM pSrc, {x0, x1, x2} 82 STM pDst!, {x0, x1, x2} ;// Store aligned output row 87 LDM pSrc, {x0, x1, x2} 96 ORR x1, x1, x2, LSL #24 97 MOV x2, x2, LSR #8 98 STM pDst!, {x0, x1, x2} ;// Store aligned output row 103 LDM pSrc, {x0, x1, x2} 112 ORR x1, x1, x2, LSL #1 [all...] |
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicColorMatrix.cpp | 118 uint32_t x2 = xend; local 120 if(x2 > x1) { 122 int32_t len = (x2 - x1) >> 2; 131 while(x1 != x2) { 145 uint32_t x2 = xend; local 147 if(x2 > x1) { 149 int32_t len = (x2 - x1) >> 2; 158 while(x1 != x2) { 172 uint32_t x2 = xend; local 174 if(x2 > x1) [all...] |
rsCpuIntrinsicLUT.cpp | 64 uint32_t x2 = xend; local 71 while (x1 < x2) {
|
/external/chromium/chrome/browser/ui/gtk/ |
nine_box.cc | 119 int x2 = images_[2] ? dst_width - gdk_pixbuf_get_width(images_[2]) : x1; local 122 if (x2 < x1 || y2 < y1) 143 TileImage(cr, images_[1], x1, 0, x2 - x1, y1, opacity); 145 DrawPixbuf(cr, images_[2], x2, 0, opacity); 151 TileImage(cr, images_[4], x1, y1, x2 - x1, y2 - y1, opacity); 153 TileImage(cr, images_[5], x2, y1, dst_width - x2, y2 - y1, opacity); 159 TileImage(cr, images_[7], x1, y2, x2 - x1, dst_height - y2, opacity); 161 DrawPixbuf(cr, images_[8], x2, y2, opacity); 206 int x2 = width - gdk_pixbuf_get_width(images_[2]) local [all...] |
/external/clang/test/ASTMerge/Inputs/ |
enum1.c | 13 } x2; variable in typeref:enum:E2
|
enum2.c | 13 } x2; variable in typeref:enum:E2
|
struct1.c | 21 struct S2 { int i; float f; } x2; variable in typeref:struct:S2
|
struct2.c | 18 union S2 { int i; float f; } x2; variable in typeref:union:S2
|