Home
last modified time | relevance | path

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

/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
DIcuFunctions.java45 int loBits = (int) (millis & 0xFFFFFFFFL);
46 return hiBits + " " + loBits;
/external/llvm-project/llvm/include/llvm/ADT/
DAPInt.h1505 void setLowBits(unsigned loBits) {
1506 return setBits(0, loBits);
1535 void clearLowBits(unsigned loBits) {
1536 assert(loBits <= BitWidth && "More bits than bitwidth");
1537 APInt Keep = getHighBitsSet(BitWidth, BitWidth - loBits);
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h1490 void setLowBits(unsigned loBits) { in setLowBits() argument
1491 return setBits(0, loBits); in setLowBits()
1520 void clearLowBits(unsigned loBits) { in clearLowBits() argument
1521 assert(loBits <= BitWidth && "More bits than bitwidth"); in clearLowBits()
1522 APInt Keep = getHighBitsSet(BitWidth, BitWidth - loBits); in clearLowBits()