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

1 2 3 4 5 6 7

  /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/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/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);
c16rtomb.c 91 __CTASSERT(alignof(struct c16rtombstate) <= alignof(mbstate_t));
c8rtomb.c 81 __CTASSERT(alignof(struct c8rtombstate) <= alignof(mbstate_t));
mbrtoc16.c 97 __CTASSERT(alignof(struct mbrtoc16state) <= alignof(mbstate_t));
mbrtoc32.c 86 __CTASSERT(alignof(struct mbrtoc32state) <= alignof(mbstate_t));
  /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)];
AllocatorBase.h 69 return static_cast<T *>(Allocate(Num * sizeof(T), alignof(T)));
76 Deallocate(static_cast<const void *>(Ptr), Num * sizeof(T), alignof(T));
Recycler.h 33 template <class T, size_t Size = sizeof(T), size_t Align = alignof(T)>
84 static_assert(alignof(SubClass) <= Align,
TrailingObjects.h 49 #include "llvm/Support/AlignOf.h"
65 FirstAlignment = alignof(First),
77 enum { Alignment = alignof(First) };
124 static const bool value = alignof(PrevTy) < alignof(NextTy);
180 (requiresRealignment() ? llvm::alignTo<alignof(NextTy)>(SizeSoFar)
  /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),
ItaniumManglingCanonicalizer.cpp 76 class alignas(alignof(Node *)) NodeHeader : public llvm::FoldingSetNode {
99 return {new (RawAlloc.Allocate(sizeof(T), alignof(T)))
114 static_assert(alignof(T) <= alignof(NodeHeader),
117 RawAlloc.Allocate(sizeof(NodeHeader) + sizeof(T), alignof(NodeHeader));
130 return RawAlloc.Allocate(sizeof(Node *) * sz, alignof(Node *));
  /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));
StmtObjC.cpp 52 void *Mem = Context.Allocate(Size, alignof(ObjCAtTryStmt));
62 void *Mem = Context.Allocate(Size, alignof(ObjCAtTryStmt));
  /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/apache2/llvm/dist/clang/lib/AST/Interp/
PrimType.h 58 return ((Size + alignof(void *) - 1) / alignof(void *)) * alignof(void *);
  /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))
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
sso_string.cc 75 static_assert(alignof(__sso_string) == alignof(std::string),
76 "alignof(std::string) has changed");

Completed in 41 milliseconds

1 2 3 4 5 6 7