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

  /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];
  /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...]
  /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...]
  /external/v8/src/compiler/
wasm-compiler.cc     [all...]

Completed in 2252 milliseconds