Home
last modified time | relevance | path

Searched refs:shiftCount (Results 1 – 2 of 2) sorted by relevance

/external/icu/icu4c/source/common/
Dutrace.c126 int32_t shiftCount; in outputHexBytes() local
127 for (shiftCount=(charsToOutput-1)*4; shiftCount >= 0; shiftCount-=4) { in outputHexBytes()
128 char c = gHexChars[(val >> shiftCount) & 0xf]; in outputHexBytes()
/external/llvm/lib/Support/
DAPInt.cpp2705 unsigned int n, shiftCount; in tcDivide() local
2710 shiftCount = tcMSB(rhs, parts) + 1; in tcDivide()
2711 if (shiftCount == 0) in tcDivide()
2714 shiftCount = parts * integerPartWidth - shiftCount; in tcDivide()
2715 n = shiftCount / integerPartWidth; in tcDivide()
2716 mask = (integerPart) 1 << (shiftCount % integerPartWidth); in tcDivide()
2719 tcShiftLeft(srhs, parts, shiftCount); in tcDivide()
2734 if (shiftCount == 0) in tcDivide()
2736 shiftCount--; in tcDivide()