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

  /external/clang/include/clang/Basic/
TargetInfo.h 173 /// getTypeWidth - Return the width (in bits) of the specified integer type
175 unsigned getTypeWidth(IntType T) const;
228 unsigned getWCharWidth() const { return getTypeWidth(WCharType); }
233 unsigned getChar16Width() const { return getTypeWidth(Char16Type); }
238 unsigned getChar32Width() const { return getTypeWidth(Char32Type); }
283 return getTypeWidth(IntMaxType);
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 168 DefineTypeSize(MacroName, TI.getTypeWidth(Ty), TI.getTypeConstantSuffix(Ty),
179 Builder.defineMacro(MacroName, Twine(TI.getTypeWidth(Ty)));
190 int TypeWidth = TI.getTypeWidth(Ty);
468 TI.getTypeWidth(TI.getPtrDiffType(0)), TI, Builder);
470 TI.getTypeWidth(TI.getSizeType()), TI, Builder);
472 TI.getTypeWidth(TI.getWCharType()), TI, Builder);
474 TI.getTypeWidth(TI.getWIntType()), TI, Builder);
  /external/clang/lib/Basic/
TargetInfo.cpp 129 /// getTypeWidth - Return the width (in bits) of the specified integer type
131 unsigned TargetInfo::getTypeWidth(IntType T) const {

Completed in 394 milliseconds