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

  /external/clang/lib/CodeGen/
CGExprConstant.cpp 165 const uint64_t CharWidth = Context.getCharWidth();
222 Tmp = Tmp.zext(CharWidth);
227 Tmp = Tmp.shl(CharWidth - BitsInPreviousByte);
246 assert(AT->getElementType()->isIntegerTy(CharWidth) &&
258 Elements.back()->getType()->isIntegerTy(CharWidth) &&
269 while (FieldValue.getBitWidth() > CharWidth) {
275 FieldValue.lshr(FieldValue.getBitWidth() - CharWidth).trunc(CharWidth);
278 Tmp = FieldValue.trunc(CharWidth);
280 FieldValue = FieldValue.lshr(CharWidth);
    [all...]
  /external/clang/lib/Lex/
LiteralSupport.cpp 56 FullSourceLoc Loc, unsigned CharWidth,
122 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
124 ResultChar &= ~0U >> (32-CharWidth);
149 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
152 ResultChar &= ~0U >> (32-CharWidth);
917 unsigned CharWidth = getCharWidth(Kind, PP.getTargetInfo());
921 CharWidth, &PP.getDiagnostics());
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 61 uint64_t CharWidth;
98 assert(FieldOffset % CharWidth == 0 &&
124 : Context(Context), CharWidth(Context.getCharWidth()), Class(Class) {
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]

Completed in 60 milliseconds