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 80 FullSourceLoc Loc, unsigned CharWidth,
152 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
154 ResultChar &= ~0U >> (32-CharWidth);
180 if (CharWidth != 32 && (ResultChar >> CharWidth) != 0) {
184 ResultChar &= ~0U >> (32-CharWidth);
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 62 uint64_t CharWidth;
99 assert(FieldOffset % CharWidth == 0 &&
125 : Context(Context), CharWidth(Context.getCharWidth()), Class(Class) {
    [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]

Completed in 251 milliseconds