Searched refs:shiftCount (Results 1 – 8 of 8) sorted by relevance
/external/qemu/fpu/ |
D | softfloat.c | 261 int8 shiftCount; in normalizeFloat32Subnormal() local 263 shiftCount = countLeadingZeros32( aSig ) - 8; in normalizeFloat32Subnormal() 264 *zSigPtr = aSig<<shiftCount; in normalizeFloat32Subnormal() 265 *zExpPtr = 1 - shiftCount; in normalizeFloat32Subnormal() 378 int8 shiftCount; in normalizeRoundAndPackFloat32() local 380 shiftCount = countLeadingZeros32( zSig ) - 1; in normalizeRoundAndPackFloat32() 381 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount STATUS_VAR); in normalizeRoundAndPackFloat32() 443 int8 shiftCount; in normalizeFloat64Subnormal() local 445 shiftCount = countLeadingZeros64( aSig ) - 11; in normalizeFloat64Subnormal() 446 *zSigPtr = aSig<<shiftCount; in normalizeFloat64Subnormal() [all …]
|
D | softfloat-macros.h | 655 int8 shiftCount; in countLeadingZeros32() 657 shiftCount = 0; in countLeadingZeros32() 659 shiftCount += 16; in countLeadingZeros32() 663 shiftCount += 8; in countLeadingZeros32() 666 shiftCount += countLeadingZerosHigh[ a>>24 ]; in countLeadingZeros32() 667 return shiftCount; in countLeadingZeros32() 685 int8 shiftCount; in countLeadingZeros64() 687 shiftCount = 0; in countLeadingZeros64() 689 shiftCount += 32; in countLeadingZeros64() 694 shiftCount += countLeadingZeros32( a ); in countLeadingZeros64() [all …]
|
/external/icu4c/common/ |
D | utrace.c | 126 int32_t shiftCount; in outputHexBytes() local 127 for (shiftCount=(charsToOutput-1)*4; shiftCount >= 0; shiftCount-=4) { in outputHexBytes() 128 char c = gHexChars[(val >> shiftCount) & 0xf]; in outputHexBytes()
|
/external/llvm/lib/Support/ |
D | APInt.cpp | 2712 unsigned int n, shiftCount; in tcDivide() local 2717 shiftCount = tcMSB(rhs, parts) + 1; in tcDivide() 2718 if (shiftCount == 0) in tcDivide() 2721 shiftCount = parts * integerPartWidth - shiftCount; in tcDivide() 2722 n = shiftCount / integerPartWidth; in tcDivide() 2723 mask = (integerPart) 1 << (shiftCount % integerPartWidth); in tcDivide() 2726 tcShiftLeft(srhs, parts, shiftCount); in tcDivide() 2741 if (shiftCount == 0) in tcDivide() 2743 shiftCount--; in tcDivide()
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | JSArray.h | 88 void shiftCount(ExecState*, int count);
|
D | ArrayPrototype.cpp | 452 ((JSArray *)thisObj)->shiftCount(exec, 1); in arrayProtoFuncShift() 589 ((JSArray *)thisObj)->shiftCount(exec, deleteCount - additionalArgs); in arrayProtoFuncSplice()
|
D | JSArray.cpp | 767 void JSArray::shiftCount(ExecState* exec, int count) in shiftCount() function in JSC::JSArray
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2011-02-16 | 16328 (JSC::JSArray::shiftCount): 17626 (JSC::JSArray::shiftCount): 18745 (JSC::JSArray::shiftCount): 18980 (JSC::JSArray::shiftCount):
|