Searched refs:shiftCount (Results 1 – 8 of 8) sorted by relevance
/external/qemu/fpu/ |
D | softfloat.c | 264 int8 shiftCount; in normalizeFloat32Subnormal() local 266 shiftCount = countLeadingZeros32( aSig ) - 8; in normalizeFloat32Subnormal() 267 *zSigPtr = aSig<<shiftCount; in normalizeFloat32Subnormal() 268 *zExpPtr = 1 - shiftCount; in normalizeFloat32Subnormal() 381 int8 shiftCount; in normalizeRoundAndPackFloat32() local 383 shiftCount = countLeadingZeros32( zSig ) - 1; in normalizeRoundAndPackFloat32() 384 return roundAndPackFloat32( zSign, zExp - shiftCount, zSig<<shiftCount STATUS_VAR); in normalizeRoundAndPackFloat32() 446 int8 shiftCount; in normalizeFloat64Subnormal() local 448 shiftCount = countLeadingZeros64( aSig ) - 11; in normalizeFloat64Subnormal() 449 *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/chromium-trace/trace-viewer/src/tracing/trace_model/ |
D | thread_test.js | 60 var shiftCount = 0; 63 shiftCount++; 68 assertEquals(1, shiftCount); 79 var shiftCount = 0; 82 shiftCount++; 87 assertEquals(1, shiftCount);
|
D | process_test.js | 26 var shiftCount = 0; 29 shiftCount++; 33 shiftCount++; 36 assertEquals(2, shiftCount);
|
D | cpu_test.js | 39 var shiftCount = 0; 42 shiftCount++; 46 assertEquals(shiftCount, 1);
|
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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 | 2679 unsigned int n, shiftCount; in tcDivide() local 2684 shiftCount = tcMSB(rhs, parts) + 1; in tcDivide() 2685 if (shiftCount == 0) in tcDivide() 2688 shiftCount = parts * integerPartWidth - shiftCount; in tcDivide() 2689 n = shiftCount / integerPartWidth; in tcDivide() 2690 mask = (integerPart) 1 << (shiftCount % integerPartWidth); in tcDivide() 2693 tcShiftLeft(srhs, parts, shiftCount); in tcDivide() 2708 if (shiftCount == 0) in tcDivide() 2710 shiftCount--; in tcDivide()
|