Home
last modified time | relevance | path

Searched refs:AlignType (Results 1 – 3 of 3) sorted by relevance

/external/llvm/lib/IR/
DDataLayout.cpp101 retval.AlignType = align_type; in get()
110 return (AlignType == rhs.AlignType in operator ==()
183 setAlignment((AlignTypeEnum)E.AlignType, E.ABIAlign, E.PrefAlign, in reset()
289 AlignTypeEnum AlignType; in parseSpecifier() local
292 case 'i': AlignType = INTEGER_ALIGN; break; in parseSpecifier()
293 case 'v': AlignType = VECTOR_ALIGN; break; in parseSpecifier()
294 case 'f': AlignType = FLOAT_ALIGN; break; in parseSpecifier()
295 case 'a': AlignType = AGGREGATE_ALIGN; break; in parseSpecifier()
301 if (AlignType == AGGREGATE_ALIGN && Size != 0) in parseSpecifier()
311 if (AlignType != AGGREGATE_ALIGN && !ABIAlign) in parseSpecifier()
[all …]
/external/ceres-solver/include/ceres/internal/
Dmanual_constructor.h55 template<int alignment, int size> struct AlignType { }; struct
56 template<int size> struct AlignType<0, size> { typedef char result[size]; };
63 template<int size> struct AlignType<X, size> { \
86 typename AlignType<CERES_ALIGN_OF(T), sizeof(T) * Size>::result
/external/llvm/include/llvm/IR/
DDataLayout.h70 unsigned AlignType : 8; member