HomeSort by: relevance | last modified time | path
    Searched refs:alignof (Results 1 - 25 of 224) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/external/apache2/llvm/dist/clang/lib/Headers/
stdalign.h 15 #define alignof _Alignof macro
  /src/external/gpl3/gcc.old/dist/gcc/ginclude/
stdalign.h 32 #define alignof _Alignof macro
  /src/sys/sys/
stdalign.h 50 #define alignof _Alignof macro
  /src/external/gpl3/gcc/dist/gcc/ginclude/
stdalign.h 33 #define alignof _Alignof macro
  /src/tests/include/
t_stddef.c 109 ATF_CHECK_MSG((a = alignof(max_align_t)) >= alignof(long long),
111 ATF_CHECK_MSG((a = alignof(max_align_t)) >= alignof(long double),
113 ATF_CHECK_MSG((a = alignof(max_align_t)) >= alignof(void *),
115 ATF_CHECK_MSG((a = alignof(max_align_t)) >= alignof(int (*)(void)),
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_thread_list.cpp 16 static ALIGNED(alignof(
23 static ALIGNED(alignof(
  /src/lib/libc/locale/
multibyte.h 46 __CTASSERT(alignof(struct _RuneStatePriv) >= alignof(void *));
47 __CTASSERT(sizeof(_RuneStatePriv) % alignof(void *) == 0);
48 __CTASSERT(alignof(struct _RuneStatePriv) >= alignof(int));
49 __CTASSERT(sizeof(_RuneStatePriv) % alignof(int) == 0);
  /src/external/apache2/llvm/dist/libcxx/src/support/win32/
thread_win32.cpp 20 static_assert(alignof(__libcpp_mutex_t) == alignof(SRWLOCK), ""); variable
24 static_assert(alignof(__libcpp_recursive_mutex_t) == alignof(CRITICAL_SECTION), variable
28 static_assert(alignof(__libcpp_condvar_t) == alignof(CONDITION_VARIABLE), ""); variable
31 static_assert(alignof(__libcpp_exec_once_flag) == alignof(INIT_ONCE), ""); variable
34 static_assert(alignof(__libcpp_thread_id) == alignof(DWORD), "") variable
37 static_assert(alignof(__libcpp_thread_t) == alignof(HANDLE), ""); variable
40 static_assert(alignof(__libcpp_tls_key) == alignof(DWORD), ""); variable
43 static_assert(alignof(__libcpp_semaphore_t) == alignof(HANDLE), ""); variable
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
AlignOf.h 1 //===--- AlignOf.h - Portable calculation of type alignment -----*- C++ -*-===//
29 alignas(alignof(AlignedUnion)) char buffer[sizeof(AlignedUnion)];
  /src/external/apache2/llvm/dist/llvm/lib/Support/
SmallVector.cpp 32 static_assert(alignof(SmallVector<Struct16B, 0>) >= alignof(Struct16B),
34 static_assert(alignof(SmallVector<Struct32B, 0>) >= alignof(Struct32B),
36 static_assert(sizeof(SmallVector<Struct16B, 0>) >= alignof(Struct16B),
38 static_assert(sizeof(SmallVector<Struct32B, 0>) >= alignof(Struct32B),
  /src/tests/usr.bin/xlint/lint1/
d_alignof.c 23 /* The plain word 'alignof' is not recognized by GCC. */
24 /* expect+2: error: function 'alignof' implicitly declared to return int [215] */
26 return alignof(short);
45 /* The plain word 'alignof' is not recognized by GCC. */
46 /* expect+2: error: 'alignof' undefined [99] */
48 return alignof 3;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCSymbol.cpp 40 static_assert((unsigned)alignof(MCSymbol) <= alignof(NameEntryStorageTy),
42 void *Storage = Ctx.allocate(Size, alignof(NameEntryStorageTy));
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclGroup.cpp 23 void *Mem = C.Allocate(Size, alignof(DeclGroup));
  /src/external/gpl3/gdb/dist/gdb/unittests/
packed-selftests.c 39 static_assert (alignof (packed<test_enum, 1>) == 1);
40 static_assert (alignof (packed<test_enum, 2>) == 1);
41 static_assert (alignof (packed<test_enum, 3>) == 1);
42 static_assert (alignof (packed<test_enum, 4>) == 1);
  /src/external/gpl3/gdb.old/dist/gdb/unittests/
packed-selftests.c 39 static_assert (alignof (packed<test_enum, 1>) == 1);
40 static_assert (alignof (packed<test_enum, 2>) == 1);
41 static_assert (alignof (packed<test_enum, 3>) == 1);
42 static_assert (alignof (packed<test_enum, 4>) == 1);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdcpp/
allocator.d 158 static if (__cpp_aligned_new && T.alignof > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
159 return cast(T*)__cpp_new_aligned(count * T.sizeof, cast(align_val_t)T.alignof);
168 static if (__cpp_aligned_new && T.alignof > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
169 __cpp_delete_aligned(cast(void*)ptr, cast(align_val_t)T.alignof);
185 static if (__cpp_aligned_new && T.alignof > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
186 return cast(T*)__cpp_new_aligned(count * T.sizeof, cast(align_val_t)T.alignof);
193 static if (__cpp_aligned_new && T.alignof > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
196 return __cpp_delete_size_aligned(cast(void*)ptr, count * T.sizeof, cast(align_val_t)T.alignof);
198 return __cpp_delete_aligned(cast(void*)ptr, cast(align_val_t)T.alignof);
296 enum _New_alignof(T) = T.alignof > __STDCPP_DEFAULT_NEW_ALIGNMENT__ ? T.alignof : __STDCPP_DEFAULT_NEW_ALIGNMENT__
    [all...]
  /src/external/gpl3/gdb/dist/gnulib/import/
stdalign.in.h 33 /* alignof (TYPE), also known as _Alignof (TYPE), yields the alignment
41 alignof (double) and alignof (long long) are 4 unless the option
65 # define _Alignof(type) alignof (type)
75 # define alignof _Alignof macro
100 - alignas (TYPE) is equivalent to alignas (alignof (TYPE)).
rawmemchr.c 47 (uintptr_t) char_ptr % alignof (longword) != 0;
  /src/external/gpl3/gdb.old/dist/gnulib/import/
stdalign.in.h 33 /* alignof (TYPE), also known as _Alignof (TYPE), yields the alignment
41 alignof (double) and alignof (long long) are 4 unless the option
65 # define _Alignof(type) alignof (type)
75 # define alignof _Alignof macro
100 - alignas (TYPE) is equivalent to alignas (alignof (TYPE)).
rawmemchr.c 47 (uintptr_t) char_ptr % alignof (longword) != 0;
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
PrimType.h 58 return ((Size + alignof(void *) - 1) / alignof(void *)) * alignof(void *);
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
new_allocator.h 144 if (alignof(_Tp) > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
146 std::align_val_t __al = std::align_val_t(alignof(_Tp));
165 if (alignof(_Tp) > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
168 std::align_val_t(alignof(_Tp)));
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
malloc_allocator.h 125 if (alignof(_Tp) > alignof(std::max_align_t))
127 __ret = static_cast<_Tp*>(::aligned_alloc(alignof(_Tp),
140 if (reinterpret_cast<std::size_t>(__ret) % alignof(_Tp))
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
new_allocator.h 141 if (alignof(_Tp) > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
143 std::align_val_t __al = std::align_val_t(alignof(_Tp));
162 if (alignof(_Tp) > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
165 std::align_val_t(alignof(_Tp)));
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
malloc_allocator.h 123 if (alignof(_Tp) > alignof(std::max_align_t))
125 __ret = static_cast<_Tp*>(::aligned_alloc(alignof(_Tp),
138 if (reinterpret_cast<std::size_t>(__ret) % alignof(_Tp))

Completed in 44 milliseconds

1 2 3 4 5 6 7 8 9