Home
last modified time | relevance | path

Searched refs:NewBitWidth (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DAPInt.cpp123 void APInt::reallocate(unsigned NewBitWidth) { in reallocate() argument
125 if (getNumWords() == getNumWords(NewBitWidth)) { in reallocate()
126 BitWidth = NewBitWidth; in reallocate()
135 BitWidth = NewBitWidth; in reallocate()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DAPInt.h169 void reallocate(unsigned NewBitWidth);
/external/clang/lib/AST/
DExprConstant.cpp1722 unsigned NewBitWidth = FD->getBitWidthValue(Info.Ctx); in truncateBitfieldValue() local
1723 if (NewBitWidth < OldBitWidth) in truncateBitfieldValue()
1724 Int = Int.trunc(NewBitWidth).extend(OldBitWidth); in truncateBitfieldValue()