HomeSort by relevance Sort by last modified time
    Searched defs:alignof (Results 26 - 50 of 56) sorted by null

12 3

  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/include/
stdalign.h 32 #define alignof _Alignof macro
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9.x/include/
stdalign.h 32 #define alignof _Alignof macro
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9.x/include/
stdalign.h 32 #define alignof _Alignof macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/gcc/x86_64-linux/4.8/include/
stdalign.h 32 #define alignof _Alignof macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
stdalign.h 32 #define alignof _Alignof macro
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9.x/include/
stdalign.h 32 #define alignof _Alignof macro
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/include/
stdalign.h 32 #define alignof _Alignof macro
  /prebuilts/misc/darwin-x86/analyzer/lib/clang/3.3/include/
stdalign.h 29 #define alignof _Alignof macro
  /prebuilts/misc/linux-x86/analyzer/lib/clang/3.3/include/
stdalign.h 29 #define alignof _Alignof macro
  /prebuilts/sdk/renderscript/clang-include/
stdalign.h 29 #define alignof _Alignof macro
  /external/boringssl/src/crypto/
refcount_c11.c 29 static_assert(alignof(CRYPTO_refcount_t) == alignof(_Atomic CRYPTO_refcount_t), variable
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p7.cpp 7 static_assert(alignof(X<char, int, sizeof(int)>) == alignof(int), ""); variable
8 static_assert(alignof(X<int, char, 1>) == alignof(int), ""); variable
15 static_assert(alignof(Y<char, int, sizeof(int)>) == alignof(int), ""); variable
16 static_assert(alignof(Y<int, char, 1>) == alignof(int), ""); // expected-note {{in instantiation of}} variable
19 int x = alignof int; // expected-error {{expected parentheses around type name in alignof expression}
    [all...]
  /external/clang/test/SemaCXX/
attr-cxx0x.cpp 28 template <typename... B> struct alignas(alignof(A) * alignof(B)...) inner {};
36 static_assert(alignof(align_big) == alignof(int), "k's alignment is wrong"); // expected-warning{{'alignof' applied to an expression is a GNU extension}}
37 static_assert(alignof(align_small) == 1, "j's alignment is wrong"); // expected-warning{{'alignof' applied to an expression is a GNU extension}}
38 static_assert(alignof(align_multiple) == 8, "l's alignment is wrong"); // expected-warning{{'alignof' applied to an expression is a GNU extension}}
39 static_assert(alignof(align_member) == 8, "quuux's alignment is wrong")
43 static_assert(alignof(align_class_temp_pack_type<short, int, long>) == alignof(long), "template's alignment is wrong"); variable
45 static_assert(alignof(outer<int,char>::inner<double,short>) == alignof(int) * alignof(double), "template's alignment is wrong"); variable
    [all...]
alignof.cpp 7 static const int test0 = __alignof__(x); // expected-error {{invalid application of 'alignof' to a field of a class still being defined}}
8 static const int test1 = __alignof__(S0::x); // expected-error {{invalid application of 'alignof' to a field of a class still being defined}}
9 auto test2() -> char(&)[__alignof__(x)]; // expected-error {{invalid application of 'alignof' to a field of a class still being defined}}
14 const int test3 = __alignof__(s1); // expected-error {{invalid application of 'alignof' to an incomplete type 'S1'}}
22 int test5 = __alignof__(s); // expected-error {{invalid application of 'alignof' to an incomplete type 'S1'}}
26 const int test7 = __alignof__(S2::s); // expected-error {{invalid application of 'alignof' to an incomplete type 'S1'}}
37 static const int test9 = __alignof__(s2.s); // expected-error {{invalid application of 'alignof' to an incomplete type 'S1'}}
40 static const int test12 = __alignof__(S3::s2.s); // expected-error {{invalid application of 'alignof' to an incomplete type 'S1'}}
64 static_assert(alignof(test14) == 8, "foo"); // expected-warning {{'alignof' applied to an expression is a GNU extension}
67 static_assert(alignof(int[]) == alignof(int), ""); \/\/ ok variable
78 static_assert(alignof(S<-1>::a) == alignof(int), ""); \/\/ expected-warning {{GNU extension}} member in namespace:alignof_array_expr
    [all...]
  /external/clang/test/Sema/
alignas.c 25 _Static_assert(alignof(align_big) == alignof(int), "k's alignment is wrong"); variable
26 _Static_assert(alignof(align_small) == 1, "j's alignment is wrong");
27 _Static_assert(alignof(align_multiple) == 8, "l's alignment is wrong");
28 _Static_assert(alignof(struct align_member) == 8, "quuux's alignment is wrong");
  /device/google/contexthub/firmware/os/inc/
util.h 29 #ifndef alignof
30 #define alignof(type) offsetof(struct { char x; type field; }, field) macro
  /prebuilts/go/darwin-x86/src/go/types/
sizes.go 11 // Alignof returns the alignment of a variable of type T.
12 // Alignof must implement the alignment guarantees required by the spec.
13 Alignof(T Type) int64
48 func (s *StdSizes) Alignof(T Type) int64 {
53 // spec: "For a variable x of array type: unsafe.Alignof(x)
54 // is the same as unsafe.Alignof(x[0]), but at least 1."
55 return s.Alignof(t.elem)
57 // spec: "For a variable x of struct type: unsafe.Alignof(x)
58 // is the largest of the values unsafe.Alignof(x.f) for each
62 if a := s.Alignof(f.typ); a > max
194 func (conf *Config) alignof(T Type) int64 { func
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
sizes.go 11 // Alignof returns the alignment of a variable of type T.
12 // Alignof must implement the alignment guarantees required by the spec.
13 Alignof(T Type) int64
48 func (s *StdSizes) Alignof(T Type) int64 {
53 // spec: "For a variable x of array type: unsafe.Alignof(x)
54 // is the same as unsafe.Alignof(x[0]), but at least 1."
55 return s.Alignof(t.elem)
57 // spec: "For a variable x of struct type: unsafe.Alignof(x)
58 // is the largest of the values unsafe.Alignof(x.f) for each
62 if a := s.Alignof(f.typ); a > max
194 func (conf *Config) alignof(T Type) int64 { func
    [all...]
  /device/google/contexthub/firmware/os/platform/stm32/inc/plat/
plat.h 72 #if defined(__GNUC__) && !defined(alignof)
73 #define alignof(type) ((__alignof__(type) > 4) ? 4 : __alignof__(type)) macro
  /external/clang/test/Lexer/
cxx0x_keyword_as_cxx98.cpp 19 extern int CONCAT(align,of); // expected-warning {{'alignof' is a keyword in C++11}}
28 int alignof; // already diagnosed in this TU variable
keywords_test.cpp 45 CXX11_KEYWORD(alignof); variable
  /external/libcxx/src/support/win32/
thread_win32.cpp 19 static_assert(alignof(__libcpp_mutex_t) == alignof(SRWLOCK), ""); variable
23 static_assert(alignof(__libcpp_recursive_mutex_t) == alignof(CRITICAL_SECTION), variable
27 static_assert(alignof(__libcpp_condvar_t) == alignof(CONDITION_VARIABLE), ""); variable
30 static_assert(alignof(__libcpp_exec_once_flag) == alignof(INIT_ONCE), ""); variable
33 static_assert(alignof(__libcpp_thread_id) == alignof(DWORD), "") variable
36 static_assert(alignof(__libcpp_thread_t) == alignof(HANDLE), ""); variable
39 static_assert(alignof(__libcpp_tls_key) == alignof(DWORD), ""); variable
    [all...]
  /art/libartbase/base/
atomic.h 241 static_assert(alignof(AtomicInteger) == alignof(int32_t), member in namespace:art
249 static_assert(alignof(Atomic<int64_t>) == alignof(int64_t), member in namespace:art
  /art/runtime/jit/
debugger_interface.cc 115 static_assert(alignof(std::atomic_uint32_t) == alignof(uint32_t), "Weird alignment"); variable
117 static_assert(alignof(std::atomic<void*>) == alignof(void*), "Weird alignment"); variable
  /toolchain/binutils/binutils-2.27/libiberty/
sha1.c 233 # define alignof(type) offsetof (struct { char c; type x; }, x) macro
234 # define UNALIGNED_P(p) (((size_t) p) % alignof (sha1_uint32) != 0)

Completed in 916 milliseconds

12 3