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

1 2

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckPlacementNew.cpp 95 C.getASTContext().getCharWidth(),
173 return StorageTAlign / C.getASTContext().getCharWidth();
222 TheOffsetRegion.getOffset() / C.getASTContext().getCharWidth();
252 Offset.getOffset() / C.getASTContext().getCharWidth();
280 C.getASTContext().getCharWidth();
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
DynamicExtent.cpp 72 MRegion->getMemRegionManager().getContext().getCharWidth());
MemRegion.cpp 1497 Offset += BaseOffset.getQuantity() * R->getContext().getCharWidth();
  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Context.cpp 110 return Ctx.getTargetInfo().getCharWidth();
ByteCodeExprGen.h 99 return ASTContext.getTargetInfo().getCharWidth();
  /src/external/apache2/llvm/dist/clang/lib/Basic/
TargetInfo.cpp 199 if (getCharWidth() < getIntWidth())
237 case UnsignedChar: return getCharWidth();
251 if (getCharWidth() == BitWidth)
266 if (getCharWidth() >= BitWidth)
427 NewAlign = Opts.NewAlignOverride * getCharWidth();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCRuntime.cpp 34 CGM.getContext().getCharWidth();
42 CGM.getContext().getCharWidth();
91 uint64_t BitOffset = FieldBitOffset % CGF.CGM.getContext().getCharWidth();
CodeGenTBAA.cpp 301 Layout.getFieldOffset(idx) / Context.getCharWidth();
CGRecordLayoutBuilder.cpp 130 unsigned AlignedBits = llvm::alignTo(NumBits, Context.getCharWidth());
136 Context.getCharWidth());
CGNonTrivialStruct.cpp 119 uint64_t RoundedFEnd = llvm::alignTo(FEndInBits, Ctx.getCharWidth());
541 Size.getQuantity() * this->CGF->getContext().getCharWidth());
CGCoroutine.cpp 546 unsigned NewAlign = TI.getNewAlign() / TI.getCharWidth();
CGObjCGNU.cpp 281 CGM.getContext().getCharWidth());
1177 CGM.getContext().getCharWidth());
1833 CGM.getContext().getCharWidth());
2808 CGM.getContext().getCharWidth());
2951 CGM.getContext().getCharWidth());
CGCall.cpp 2066 Context.getTargetInfo().getCharWidth());
3268 int CharWidth = Context.getCharWidth();
3330 (uint64_t(1) << Context.getCharWidth()) - 1);
3364 int CharWidth = CGM.getContext().getCharWidth();
3382 int CharWidth = CGM.getContext().getCharWidth();
CGClass.cpp 952 FirstByteOffset + Ctx.getCharWidth() - 1;
1742 Context.getCharWidth() - 1);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
InitPreprocessor.cpp 205 Twine(BitWidth / TI.getCharWidth()));
412 Twine(TI.getNewAlign() / TI.getCharWidth()) +
865 assert(TI.getCharWidth() == 8 && "Only support 8-bit char so far");
866 Builder.defineMacro("__CHAR_BIT__", Twine(TI.getCharWidth()));
946 Twine(TI.getSuitableAlign() / TI.getCharWidth()) );
960 if (TI.getShortWidth() > TI.getCharWidth())
976 if (TI.getShortWidth() > TI.getCharWidth()) {
  /src/external/apache2/llvm/dist/clang/lib/Lex/
LiteralSupport.cpp 39 static unsigned getCharWidth(tok::TokenKind kind, const TargetInfo &Target) {
46 return Target.getCharWidth();
1295 assert(PP.getTargetInfo().getCharWidth() == 8 &&
1382 unsigned CharWidth = getCharWidth(Kind, PP.getTargetInfo());
1557 CharByteWidth = getCharWidth(Kind, Target);
PPExpressions.cpp 394 NumBits = TI.getCharWidth();
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
TargetInfo.h 438 unsigned getCharWidth() const { return 8; } // FIXME
712 (AtomicSizeInBits <= getCharWidth() ||
713 llvm::isPowerOf2_64(AtomicSizeInBits / getCharWidth()));
  /src/external/apache2/llvm/dist/clang/lib/AST/
RecordLayoutBuilder.cpp 171 : Context(Context), CharWidth(Context.getCharWidth()), Class(Class) {
807 assert(Size % Context.getCharWidth() == 0);
818 assert(DataSize % Context.getCharWidth() == 0);
1792 : Context.getTargetInfo().getCharWidth());
2129 unsigned CharBitNum = Context.getTargetInfo().getCharWidth();
2226 unsigned CharBitNum = Context.getTargetInfo().getCharWidth();
ASTContext.cpp 1704 unsigned Align = Target->getCharWidth();
1758 Align = Target->getCharWidth();
2011 Width = Target->getCharWidth();
2266 getCharWidth(), llvm::PowerOf2Ceil(EIT->getNumBits()))),
2356 Width = Target->getCharWidth();
2411 return CharUnits::fromQuantity(BitSize / getCharWidth());
2416 return CharSize.getQuantity() * getCharWidth();
ExprConstant.cpp 3383 APSInt Value(S->getCharByteWidth() * Info.Ctx.getCharWidth(),
3406 APSInt Value(S->getCharByteWidth() * Info.Ctx.getCharWidth(),
6873 assert(FieldOffsetBits % Info.Ctx.getCharWidth() == 0 &&
7014 APSInt Val(SizeOf.getQuantity() * Info.Ctx.getCharWidth(), true);
7080 assert(FieldOffsetBits % Info.Ctx.getCharWidth() == 0);
7083 CharUnits::fromQuantity(FieldOffsetBits / Info.Ctx.getCharWidth()) +
7225 assert(CHAR_BIT == 8 && Info.Ctx.getTargetInfo().getCharWidth() == 8 &&
9134 DesiredVal = Desired.trunc(Info.Ctx.getCharWidth()).getZExtValue();
MicrosoftMangle.cpp 659 assert(FieldOffset % getASTContext().getCharWidth() == 0 &&
661 FieldOffset /= getASTContext().getCharWidth();
  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
X86.h 161 MaxVectorAlign = MaxTLSAlign = 8192u * getCharWidth();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprCXX.cpp 2250 Alignment / Context.getCharWidth()),
2280 << unsigned(Alignment / Context.getCharWidth())
2281 << unsigned(NewAlignment / Context.getCharWidth());
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTContext.h 2168 uint64_t getCharWidth() const {

Completed in 87 milliseconds

1 2