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

  /external/llvm/lib/IR/
AsmWriter.cpp 834 int shiftcount; local
842 shiftcount = 12;
844 for (int j=0; j<width; j+=4, shiftcount-=4) {
845 unsigned int nibble = (word>>shiftcount) & 15;
850 if (shiftcount == 0 && j+4 < width) {
852 shiftcount = 64;
854 shiftcount = width-j-4;
859 shiftcount = 60;
862 shiftcount = 60;
865 shiftcount = 12
    [all...]
  /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 92 milliseconds