/sdk/emulator/opengl/host/libs/renderControl_dec/ |
renderControl.attrib | 7 len major sizeof(EGLint) 9 len minor sizeof(EGLint) 21 len numAttribs sizeof(uint32_t) 32 len configs configs_size*sizeof(uint32_t)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/forward/ |
forward.pass.cpp | 43 static_assert(sizeof(test(std::forward<A&>(a))) == 1, ""); 44 static_assert(sizeof(test(std::forward<A>(a))) == 4, ""); 45 static_assert(sizeof(test(std::forward<A>(source()))) == 4, ""); 47 static_assert(sizeof(test(std::forward<const A&>(a))) == 2, ""); 48 // static_assert(sizeof(test(std::forward<const A&>(source()))) == 2, ""); 49 static_assert(sizeof(test(std::forward<const A>(a))) == 8, ""); 50 static_assert(sizeof(test(std::forward<const A>(source()))) == 8, ""); 52 static_assert(sizeof(test(std::forward<const A&>(ca))) == 2, ""); 53 // static_assert(sizeof(test(std::forward<const A&>(csource()))) == 2, ""); 54 static_assert(sizeof(test(std::forward<const A>(ca))) == 8, "") [all...] |
/external/clang/test/Analysis/ |
malloc-overflow.c | 4 typedef __typeof__(sizeof(int)) size_t; 9 return malloc(n * sizeof(int)); // expected-warning {{the computation of the size of the memory allocation may overflow}} 14 return malloc(sizeof(int) * n); // // expected-warning {{the computation of the size of the memory allocation may overflow}} 19 return malloc(4 * sizeof(int)); // no-warning 29 return malloc(s->n * sizeof(int)); // expected-warning {{the computation of the size of the memory allocation may overflow}} 35 return malloc(s2.n * sizeof(int)); // expected-warning {{the computation of the size of the memory allocation may overflow}} 40 return malloc((n + 1) * sizeof(int)); // expected-warning {{the computation of the size of the memory allocation may overflow}} 49 return malloc(n * sizeof(int)); // no-warning 55 return malloc(n * sizeof(int)); // no-warning 62 int * x = malloc(n * sizeof(int)); // expected-warning {{the computation of the size of the memory allocation may overflow} [all...] |
sizeofpointer.c | 7 return sizeof(p); // expected-warning{{The code calls sizeof() on a pointer type. This can produce an unexpected result}}
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.special/ |
non_member_swap.pass.cpp | 36 M m1(ar1, ar1+sizeof(ar1)/sizeof(ar1[0])); 37 M m2(ar2, ar2+sizeof(ar2)/sizeof(ar2[0])); 59 M m1(ar1, ar1+sizeof(ar1)/sizeof(ar1[0])); 60 M m2(ar2, ar2+sizeof(ar2)/sizeof(ar2[0])); 78 M m1(ar1, ar1+sizeof(ar1)/sizeof(ar1[0])) [all...] |
member_swap.pass.cpp | 33 M m1(ar1, ar1+sizeof(ar1)/sizeof(ar1[0])); 34 M m2(ar2, ar2+sizeof(ar2)/sizeof(ar2[0])); 56 M m1(ar1, ar1+sizeof(ar1)/sizeof(ar1[0])); 57 M m2(ar2, ar2+sizeof(ar2)/sizeof(ar2[0])); 75 M m1(ar1, ar1+sizeof(ar1)/sizeof(ar1[0])) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.special/ |
non_member_swap.pass.cpp | 36 M m1(ar1, ar1+sizeof(ar1)/sizeof(ar1[0])); 37 M m2(ar2, ar2+sizeof(ar2)/sizeof(ar2[0])); 59 M m1(ar1, ar1+sizeof(ar1)/sizeof(ar1[0])); 60 M m2(ar2, ar2+sizeof(ar2)/sizeof(ar2[0])); 78 M m1(ar1, ar1+sizeof(ar1)/sizeof(ar1[0])) [all...] |
member_swap.pass.cpp | 33 M m1(ar1, ar1+sizeof(ar1)/sizeof(ar1[0])); 34 M m2(ar2, ar2+sizeof(ar2)/sizeof(ar2[0])); 56 M m1(ar1, ar1+sizeof(ar1)/sizeof(ar1[0])); 57 M m2(ar2, ar2+sizeof(ar2)/sizeof(ar2[0])); 75 M m1(ar1, ar1+sizeof(ar1)/sizeof(ar1[0])) [all...] |
/external/clang/test/CodeGen/ |
override-layout.c | 22 void use_X0() { struct X0 x0; x0.x[5] = sizeof(struct X0); }; 30 void use_X1() { struct X1 x1; x1.x[5] = sizeof(struct X1); }; 38 void use_X2() { struct X2 x2; x2.y = sizeof(struct X2); }; 46 void use_X3() { struct X3 x3; x3.y = sizeof(struct X3); }; 56 void use_X4() { struct X4 x4; x4.y = sizeof(struct X4); }; 61 void use_X5() { struct X5 x5; x5.b = sizeof(struct X5); }; 66 void use_X6() { struct X6 x6; x6.b = sizeof(struct X6); }; 74 void use_X7() { struct X7 x7; x7.y = x7.x = sizeof(struct X7); } 134 typedef int X8array[sizeof(union X8)]; 135 x8.y = sizeof(union X8) [all...] |
/external/clang/test/SemaCXX/ |
empty-class-layout.cpp | 9 SA(0, sizeof(A) == 4); 12 SA(1, sizeof(B) == 1); 15 SA(2, sizeof(C) == 4); 22 SA(3, sizeof(G) == 2); 29 SA(4, sizeof(I) == 2); 34 SA(5, sizeof(J) == 3); 43 SA(6, sizeof(S1) == 24); 48 SA(7, sizeof(S2) == 24); 56 SA(8, sizeof(S4) == 2); 59 SA(9, sizeof(S5) == 2) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
tgmath.h | 69 (__extension__ ((sizeof (Val) == sizeof (double) \ 72 : (sizeof (Val) == sizeof (float)) \ 77 (__extension__ ((sizeof (Val) == sizeof (double) \ 80 : (sizeof (Val) == sizeof (float)) \ 85 (__extension__ ((sizeof (Val1) == sizeof (double) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/ |
tgmath.h | 78 (__extension__ ((sizeof (Val) == sizeof (double) \ 81 : (sizeof (Val) == sizeof (float)) \ 86 (__extension__ ((sizeof (Val) == sizeof (double) \ 89 : (sizeof (Val) == sizeof (float)) \ 94 (__extension__ ((sizeof (Val1) == sizeof (double) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
tgmath.h | 69 (__extension__ ((sizeof (Val) == sizeof (double) \ 72 : (sizeof (Val) == sizeof (float)) \ 77 (__extension__ ((sizeof (Val) == sizeof (double) \ 80 : (sizeof (Val) == sizeof (float)) \ 85 (__extension__ ((sizeof (Val1) == sizeof (double) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/ |
tgmath.h | 78 (__extension__ ((sizeof (Val) == sizeof (double) \ 81 : (sizeof (Val) == sizeof (float)) \ 86 (__extension__ ((sizeof (Val) == sizeof (double) \ 89 : (sizeof (Val) == sizeof (float)) \ 94 (__extension__ ((sizeof (Val1) == sizeof (double) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
tgmath.h | 69 (__extension__ ((sizeof (Val) == sizeof (double) \ 72 : (sizeof (Val) == sizeof (float)) \ 77 (__extension__ ((sizeof (Val) == sizeof (double) \ 80 : (sizeof (Val) == sizeof (float)) \ 85 (__extension__ ((sizeof (Val1) == sizeof (double) [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/ |
glapi_gentable.c | 108 struct _glapi_table *disp = calloc(1, sizeof(struct _glapi_table)); 120 snprintf(symboln, sizeof(symboln), "%sNewList", symbol_prefix); 127 snprintf(symboln, sizeof(symboln), "%sEndList", symbol_prefix); 134 snprintf(symboln, sizeof(symboln), "%sCallList", symbol_prefix); 141 snprintf(symboln, sizeof(symboln), "%sCallLists", symbol_prefix); 148 snprintf(symboln, sizeof(symboln), "%sDeleteLists", symbol_prefix); 155 snprintf(symboln, sizeof(symboln), "%sGenLists", symbol_prefix); 162 snprintf(symboln, sizeof(symboln), "%sListBase", symbol_prefix); 169 snprintf(symboln, sizeof(symboln), "%sBegin", symbol_prefix); 176 snprintf(symboln, sizeof(symboln), "%sBitmap", symbol_prefix) [all...] |
/external/chromium_org/mojo/public/bindings/generators/cpp_templates/ |
struct_definition | 3 return new (buf->Allocate(sizeof($CLASS), dtor)) $CLASS(); 7 _header_.num_bytes = sizeof(*this);
|
/external/clang/test/CXX/basic/basic.link/ |
p6.cpp | 17 int value = sizeof(test0_array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}} 25 int x = sizeof(test1_array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}} 32 int value = sizeof(test2_array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}} 39 int x = sizeof(test3_array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}}
|
/external/clang/test/CodeGenCXX/ |
virtual-base-ctor.cpp | 6 typedef __typeof(sizeof(int)) size_t; 7 struct A { int a; A() { y = ((size_t)this - (size_t)&x) / sizeof(void*); } };
|
/external/clang/test/PCH/Inputs/ |
arc.h | 23 typedef int array0[sizeof((BRIDGE id)CFCreateSomething())]; 24 typedef int array1[sizeof((BRIDGE CFTypeRef)CreateSomething())];
|
/external/clang/test/Parser/ |
control-scope.c | 5 if (z + sizeof (enum {a})) // expected-note {{previous definition is here}} 6 return 1 + sizeof (enum {a}); // expected-error {{redefinition of enumerator 'a'}}
|
/external/clang/test/Sema/ |
PR2727.c | 7 // sizeof applied to a type should not delete the type. 8 return sizeof (int[x]);
|
/external/clang/test/SemaObjC/ |
enum-fixed-type.m | 11 int array[sizeof(Enumeration) == sizeof(long)? 1 : -1]; 31 int arr[(sizeof(__typeof__(Foo)) == sizeof(__typeof__(IntegerEnum)))? 1 : -1]; 32 int arr1[(sizeof(__typeof__(Foo)) == sizeof(__typeof__(long)))? 1 : -1]; 33 int arr2[(sizeof(__typeof__(IntegerEnum)) == sizeof(__typeof__(long)))? 1 : -1];
|
/external/iptables/extensions/ |
libip6t_eui64.c | 8 .size = XT_ALIGN(sizeof(int)), 9 .userspacesize = XT_ALIGN(sizeof(int)),
|
/external/libvpx/libvpx/vp8/common/ |
common.h | 24 assert( sizeof( Dest) == sizeof( Src)); \ 25 vpx_memcpy( Dest, Src, sizeof( Src)); \ 31 assert( sizeof( *Dest) == sizeof( *Src)); \ 32 vpx_memcpy( Dest, Src, N * sizeof( *Src)); \ 35 #define vp8_zero( Dest) vpx_memset( &Dest, 0, sizeof( Dest)); 37 #define vp8_zero_array( Dest, N) vpx_memset( Dest, 0, N * sizeof( *Dest));
|