HomeSort by relevance Sort by last modified time
    Searched defs:shiftCount (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/icu/source/common/
utrace.c 126 int32_t shiftCount;
127 for (shiftCount=(charsToOutput-1)*4; shiftCount >= 0; shiftCount-=4) {
128 char c = gHexChars[(val >> shiftCount) & 0xf];
  /external/icu/icu4c/source/common/
utrace.c 126 int32_t shiftCount;
127 for (shiftCount=(charsToOutput-1)*4; shiftCount >= 0; shiftCount-=4) {
128 char c = gHexChars[(val >> shiftCount) & 0xf];
  /external/qemu/fpu/
softfloat.c 264 int8 shiftCount;
266 shiftCount = countLeadingZeros32( aSig ) - 8;
267 *zSigPtr = aSig<<shiftCount;
268 *zExpPtr = 1 - shiftCount;
381 int8 shiftCount;
383 shiftCount = countLeadingZeros32( zSig ) - 1;
384 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount STATUS_VAR);
446 int8 shiftCount;
448 shiftCount = countLeadingZeros64( aSig ) - 11
2154 int shiftcount; local
2334 zSig64 <<= shiftcount; local
3707 int shiftcount; local
    [all...]

Completed in 1024 milliseconds