HomeSort by relevance Sort by last modified time
    Searched refs:AlignOf (Results 1 - 17 of 17) sorted by null

  /external/llvm/unittests/Support/
AlignOfTest.cpp 10 #include "llvm/Support/AlignOf.h"
92 [AlignOf<char>::Alignment > 0]
93 [AlignOf<short>::Alignment > 0]
94 [AlignOf<int>::Alignment > 0]
95 [AlignOf<long>::Alignment > 0]
96 [AlignOf<long long>::Alignment > 0]
97 [AlignOf<float>::Alignment > 0]
98 [AlignOf<double>::Alignment > 0]
99 [AlignOf<long double>::Alignment > 0]
100 [AlignOf<void *>::Alignment > 0
    [all...]
  /external/clang/lib/AST/
DeclGroup.cpp 23 void* Mem = C.Allocate(Size, llvm::AlignOf<DeclGroup>::Alignment);
Expr.cpp 426 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
445 void *Mem = Context.Allocate(Size, llvm::alignOf<DeclRefExpr>());
751 llvm::alignOf<StringLiteral>());
768 llvm::alignOf<StringLiteral>());
    [all...]
  /external/llvm/include/llvm/Support/
RecyclingAllocator.h 26 size_t Size = sizeof(T), size_t Align = AlignOf<T>::Alignment>
ArrayRecycler.h 30 template<class T, size_t Align = AlignOf<T>::Alignment>
57 assert(Align >= AlignOf<FreeList>::Alignment && "Object underaligned");
Recycler.h 19 #include "llvm/Support/AlignOf.h"
66 template<class T, size_t Size = sizeof(T), size_t Align = AlignOf<T>::Alignment>
105 assert(AlignOf<SubClass>::Alignment <= Align &&
AlignOf.h 1 //===--- AlignOf.h - Portable calculation of type alignment -----*- C++ -*-===//
10 // This file defines the AlignOf function that computes alignments for
30 /// AlignOf - A templated class that contains an enum value representing
32 /// AlignOf<int>::Alignment represents the alignment of type "int". The
38 struct AlignOf {
53 /// alignOf - A templated function that returns the minimum alignment of
54 /// of a type. This provides no extra functionality beyond the AlignOf
56 /// alignOf<int>() returns the alignment of an int.
58 inline unsigned alignOf() { return AlignOf<T>::Alignment;
    [all...]
Allocator.h 17 #include "llvm/Support/AlignOf.h"
156 return static_cast<T*>(Allocate(sizeof(T),AlignOf<T>::Alignment));
163 return static_cast<T*>(Allocate(Num * sizeof(T), AlignOf<T>::Alignment));
209 Ptr = Allocator.AlignPtr(Ptr, alignOf<T>());
Endian.h 17 #include "llvm/Support/AlignOf.h"
30 /// \brief ::value is either alignment, or alignof(T) if alignment is 0.
33 enum {value = alignment == 0 ? AlignOf<T>::Alignment : alignment};
  /external/clang/lib/Sema/
AttributeList.cpp 52 return Alloc.Allocate(size, llvm::AlignOf<AttributeFactory>::Alignment);
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 241 AlignOf<Ty>::Alignment));
SelectionDAG.h 152 AlignOf<MostAlignedSDNode>::Alignment>
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 122 AlignOf<BBInfo*>::Alignment));
  /external/clang/lib/Basic/
SourceManager.cpp 445 unsigned EntryAlign = llvm::AlignOf<ContentCache>::Alignment;
477 unsigned EntryAlign = llvm::AlignOf<ContentCache>::Alignment;
    [all...]
  /external/llvm/lib/IR/
Type.cpp 372 AlignOf<FunctionType>::Alignment);
  /external/clang/lib/Analysis/
CFG.cpp     [all...]
  /external/llvm/include/llvm/Object/
ELF.h 49 enum {value = AlignOf<T>::Alignment > max_align ? max_align
50 : AlignOf<T>::Alignment};
    [all...]

Completed in 775 milliseconds