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

  /external/qemu/fpu/
softfloat.c 216 int8 shiftCount;
218 shiftCount = countLeadingZeros32( aSig ) - 8;
219 *zSigPtr = aSig<<shiftCount;
220 *zExpPtr = 1 - shiftCount;
330 int8 shiftCount;
332 shiftCount = countLeadingZeros32( zSig ) - 1;
333 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount STATUS_VAR);
380 int8 shiftCount;
382 shiftCount = countLeadingZeros64( aSig ) - 11
    [all...]
softfloat-macros.h 632 int8 shiftCount;
634 shiftCount = 0;
636 shiftCount += 16;
640 shiftCount += 8;
643 shiftCount += countLeadingZerosHigh[ a>>24 ];
644 return shiftCount;
655 int8 shiftCount;
657 shiftCount = 0;
659 shiftCount += 32;
664 shiftCount += countLeadingZeros32( a )
    [all...]
  /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];
  /dalvik/vm/analysis/
CodeVerify.c     [all...]

Completed in 2482 milliseconds