HomeSort by: relevance | last modified time | path
    Searched refs:shiftCount (Results 1 - 6 of 6) sorted by relevancy

  /src/lib/libc/softfloat/bits64/
softfloat.c 265 int8 shiftCount;
267 shiftCount = countLeadingZeros32( aSig ) - 8;
268 *zSigPtr = aSig<<shiftCount;
269 *zExpPtr = 1 - shiftCount;
380 int8 shiftCount;
382 shiftCount = countLeadingZeros32( zSig ) - 1;
383 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount );
434 int8 shiftCount;
436 shiftCount = countLeadingZeros64( aSig ) - 11
    [all...]
softfloat-macros 652 int8 shiftCount;
654 shiftCount = 0;
656 shiftCount += 16;
660 shiftCount += 8;
663 shiftCount += countLeadingZerosHigh[ a>>24 ];
664 return shiftCount;
676 int8 shiftCount;
678 shiftCount = 0;
680 shiftCount += 32;
685 shiftCount += (int8)countLeadingZeros32( (bits32)a )
    [all...]
  /src/sys/lib/libkern/
softfloat.c 272 int8 shiftCount;
274 shiftCount = countLeadingZeros32( aSig ) - 8;
275 *zSigPtr = aSig<<shiftCount;
276 *zExpPtr = 1 - shiftCount;
384 int8 shiftCount;
386 shiftCount = countLeadingZeros32( zSig ) - 1;
387 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount );
433 int8 shiftCount;
435 shiftCount = countLeadingZeros64( aSig ) - 11
    [all...]
softfloat-macros.h 628 int8 shiftCount;
630 shiftCount = 0;
632 shiftCount += 16;
636 shiftCount += 8;
639 shiftCount += countLeadingZerosHigh[ a>>24 ];
640 return shiftCount;
651 int8 shiftCount;
653 shiftCount = 0;
655 shiftCount += 32;
660 shiftCount += countLeadingZeros32( a )
    [all...]
  /src/lib/libc/softfloat/bits32/
softfloat.c 159 int8 shiftCount;
161 shiftCount = countLeadingZeros32( aSig ) - 8;
162 *zSigPtr = aSig<<shiftCount;
163 *zExpPtr = 1 - shiftCount;
274 int8 shiftCount;
276 shiftCount = countLeadingZeros32( zSig ) - 1;
277 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount );
351 int8 shiftCount;
354 shiftCount = countLeadingZeros32( aSig1 ) - 11
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
APInt.cpp 2674 unsigned shiftCount = tcMSB(rhs, parts) + 1;
2675 if (shiftCount == 0)
2678 shiftCount = parts * APINT_BITS_PER_WORD - shiftCount;
2679 unsigned n = shiftCount / APINT_BITS_PER_WORD;
2680 WordType mask = (WordType) 1 << (shiftCount % APINT_BITS_PER_WORD);
2683 tcShiftLeft(srhs, parts, shiftCount);
2696 if (shiftCount == 0)
2698 shiftCount--;

Completed in 53 milliseconds