OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getTypeAlign
(Results
1 - 7
of
7
) sorted by null
/external/clang/include/clang/Basic/
TargetInfo.h
154
///
getTypeAlign
- Return the alignment (in bits) of the specified integer
156
unsigned
getTypeAlign
(IntType T) const;
202
unsigned getWCharAlign() const { return
getTypeAlign
(WCharType); }
207
unsigned getChar16Align() const { return
getTypeAlign
(Char16Type); }
212
unsigned getChar32Align() const { return
getTypeAlign
(Char32Type); }
/external/clang/lib/Basic/
TargetInfo.cpp
130
///
getTypeAlign
- Return the alignment (in bits) of the specified integer type
132
unsigned TargetInfo::
getTypeAlign
(IntType T) const {
/external/clang/lib/CodeGen/
CGDebugInfo.cpp
364
uint64_t Align = CGM.getContext().
getTypeAlign
(BT);
377
uint64_t Align = CGM.getContext().
getTypeAlign
(Ty);
481
uint64_t Align = CGM.getContext().
getTypeAlign
(Ty);
532
FieldAlign = CGM.getContext().
getTypeAlign
(Ty);
[
all
...]
TargetInfo.cpp
650
unsigned TypeAlign = getContext().
getTypeAlign
(Ty) / 8;
[
all
...]
/external/clang/include/clang/AST/
ASTContext.h
[
all
...]
/external/clang/lib/Sema/
SemaDeclAttr.cpp
269
S.Context.
getTypeAlign
(FD->getType()) <= 8)
[
all
...]
/external/clang/lib/AST/
ASTContext.cpp
772
Align =
getTypeAlign
(cast<ArrayType>(T)->getElementType());
[
all
...]
Completed in 23 milliseconds