Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp577 APInt APInt::getSplat(unsigned NewLen, const APInt &V) { in getSplat() argument
578 assert(NewLen >= V.getBitWidth() && "Can't splat to smaller bit width!"); in getSplat()
580 APInt Val = V.zextOrSelf(NewLen); in getSplat()
581 for (unsigned I = V.getBitWidth(); I < NewLen; I <<= 1) in getSplat()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h671 static APInt getSplat(unsigned NewLen, const APInt &V);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DLegalizerHelper.cpp3769 unsigned NewLen = PowerOf2Ceil(Len); in lowerBitCount() local
3770 for (unsigned i = 0; (1U << i) <= (NewLen / 2); ++i) { in lowerBitCount()