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

  /external/qemu/fpu/
softfloat.c 261 int8 shiftCount;
263 shiftCount = countLeadingZeros32( aSig ) - 8;
264 *zSigPtr = aSig<<shiftCount;
265 *zExpPtr = 1 - shiftCount;
378 int8 shiftCount;
380 shiftCount = countLeadingZeros32( zSig ) - 1;
381 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount STATUS_VAR);
443 int8 shiftCount;
445 shiftCount = countLeadingZeros64( aSig ) - 11
    [all...]
softfloat-macros.h 655 int8 shiftCount;
657 shiftCount = 0;
659 shiftCount += 16;
663 shiftCount += 8;
666 shiftCount += countLeadingZerosHigh[ a>>24 ];
667 return shiftCount;
685 int8 shiftCount;
687 shiftCount = 0;
689 shiftCount += 32;
694 shiftCount += countLeadingZeros32( a )
    [all...]
  /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/icu4c/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/llvm/lib/Support/
APInt.cpp     [all...]
  /dalvik/vm/analysis/
CodeVerify.cpp     [all...]

Completed in 639 milliseconds