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

  /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/bits64/
softfloat.c 262 int8 shiftCount;
264 shiftCount = countLeadingZeros32( aSig ) - 8;
265 *zSigPtr = aSig<<shiftCount;
266 *zExpPtr = 1 - shiftCount;
377 int8 shiftCount;
379 shiftCount = countLeadingZeros32( zSig ) - 1;
380 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount );
431 int8 shiftCount;
433 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...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/ArmSoftFloatLib/bits32/
softfloat.c 158 int8 shiftCount;
160 shiftCount = countLeadingZeros32( aSig ) - 8;
161 *zSigPtr = aSig<<shiftCount;
162 *zExpPtr = 1 - shiftCount;
273 int8 shiftCount;
275 shiftCount = countLeadingZeros32( zSig ) - 1;
276 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount );
350 int8 shiftCount;
353 shiftCount = countLeadingZeros32( aSig1 ) - 11;
    [all...]
  /device/linaro/bootloader/edk2/StdLib/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...]
  /external/icu/icu4c/source/common/
utrace.c 128 int32_t shiftCount;
129 for (shiftCount=(charsToOutput-1)*4; shiftCount >= 0; shiftCount-=4) {
130 char c = gHexChars[(val >> shiftCount) & 0xf];
  /external/llvm/lib/Support/
APInt.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
APInt.cpp     [all...]
  /external/v8/src/compiler/
wasm-compiler.cc     [all...]

Completed in 281 milliseconds