Searched refs:srcBits (Results 1 - 9 of 9) sorted by path

/external/compiler-rt/lib/builtins/
H A Dfp_extend_impl.inc44 const int srcBits = sizeof(src_t)*CHAR_BIT;
45 const int srcExpBits = srcBits - srcSigBits - 1;
106 const dst_rep_t result = absResult | (dst_rep_t)sign << (dstBits - srcBits);
H A Dfp_trunc_impl.inc45 const int srcBits = sizeof(src_t)*CHAR_BIT;
46 const int srcExpBits = srcBits - srcSigBits - 1;
119 const bool sticky = significand << (srcBits - shift);
133 const dst_rep_t result = absResult | sign >> (srcBits - dstBits);
/external/deqp/modules/gles3/functional/
H A Des3fFboTestUtil.cpp1040 static int calculateU8ConversionError (int srcBits) argument
1042 if (srcBits > 0)
1044 const int clampedBits = de::clamp<int>(srcBits, 0, 8);
1071 static int getToSRGB8ConversionError (int srcBits) argument
1092 DE_ASSERT(srcBits >= 0);
1093 if (srcBits < DE_LENGTH_OF_ARRAY(errors))
1094 return errors[srcBits];
/external/deqp/modules/gles31/functional/
H A Des31fCopyImageTests.cpp1442 const tcu::IVec4 srcBits = tcu::getTextureFormatBitDepth(sourceFormat); local
1445 return Vec4(1.0f) / ((tcu::IVec4(1) << (tcu::min(srcBits, readBits))) - tcu::IVec4(1)).cast<float>();
H A Des31fDrawBuffersIndexedTests.cpp442 const tcu::IVec4 srcBits = tcu::getTextureFormatBitDepth(sourceFormat); local
445 return Vec4(3.0f) / ((tcu::Vector<deUint64, 4>(1) << (tcu::min(srcBits, readBits).cast<deUint64>())) - tcu::Vector<deUint64, 4>(1)).cast<float>();
H A Des31fFboTestUtil.cpp588 static int calculateU8ConversionError (int srcBits) argument
590 if (srcBits > 0)
592 const int clampedBits = de::clamp<int>(srcBits, 0, 8);
/external/llvm/include/llvm/ADT/
H A DAPInt.h1613 const integerPart *, unsigned int srcBits,
/external/llvm/lib/Support/
H A DAPInt.cpp2450 unsigned int srcBits, unsigned int srcLSB)
2454 dstParts = (srcBits + integerPartWidth - 1) / integerPartWidth;
2464 in DST. If this is less that srcBits, append the rest, else
2467 if (n < srcBits) {
2468 integerPart mask = lowBitMask (srcBits - n);
2471 } else if (n > srcBits) {
2472 if (srcBits % integerPartWidth)
2473 dst[dstParts - 1] &= lowBitMask (srcBits % integerPartWidth);
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDILISelLowering.cpp428 unsigned srcBits = DVT.isSimple() ? DVT.getScalarType().getSizeInBits() : 1; local
429 unsigned shiftBits = srcBits - baseBits;
430 if (srcBits < 32) {
443 if (srcBits < 32) {

Completed in 361 milliseconds