Home
last modified time | relevance | path

Searched refs:NewLen (Results 1 – 4 of 4) sorted by relevance

/external/llvm/include/llvm/ADT/
DAPInt.h546 static APInt getSplat(unsigned NewLen, const APInt &V) { in getSplat() argument
547 assert(NewLen >= V.getBitWidth() && "Can't splat to smaller bit width!"); in getSplat()
549 APInt Val = V.zextOrSelf(NewLen); in getSplat()
550 for (unsigned I = V.getBitWidth(); I < NewLen; I <<= 1) in getSplat()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h550 static APInt getSplat(unsigned NewLen, const APInt &V) { in getSplat() argument
551 assert(NewLen >= V.getBitWidth() && "Can't splat to smaller bit width!"); in getSplat()
553 APInt Val = V.zextOrSelf(NewLen); in getSplat()
554 for (unsigned I = V.getBitWidth(); I < NewLen; I <<= 1) in getSplat()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DAPInt.cpp521 APInt APInt::getSplat(unsigned NewLen, const APInt &V) { in getSplat() argument
522 assert(NewLen >= V.getBitWidth() && "Can't splat to smaller bit width!"); in getSplat()
524 APInt Val = V.zextOrSelf(NewLen); in getSplat()
525 for (unsigned I = V.getBitWidth(); I < NewLen; I <<= 1) in getSplat()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DAPInt.h654 static APInt getSplat(unsigned NewLen, const APInt &V);