Searched refs:srcBits (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.3-release/contrib/compiler-rt/lib/
H A Dtruncdfsf2.c74 const int srcBits = sizeof(src_t)*CHAR_BIT; local
75 const int srcExpBits = srcBits - srcSigBits - 1;
151 const bool sticky = significand << (srcBits - shift);
165 const dst_rep_t result = absResult | sign >> (srcBits - dstBits);
H A Dextendsfdf2.c75 const int srcBits = sizeof(src_t)*CHAR_BIT; local
76 const int srcExpBits = srcBits - srcSigBits - 1;
135 const dst_rep_t result = absResult | (dst_rep_t)sign << (dstBits - srcBits);
/freebsd-10.3-release/contrib/llvm/lib/Target/R600/
H A DAMDILISelLowering.cpp333 unsigned srcBits = DVT.isSimple() ? DVT.getScalarType().getSizeInBits() : 1; local
334 unsigned shiftBits = srcBits - baseBits;
335 if (srcBits < 32) {
348 if (srcBits < 32) {
/freebsd-10.3-release/contrib/llvm/lib/Support/
H A DAPInt.cpp2423 unsigned int srcBits, unsigned int srcLSB)
2427 dstParts = (srcBits + integerPartWidth - 1) / integerPartWidth;
2437 in DST. If this is less that srcBits, append the rest, else
2440 if (n < srcBits) {
2441 integerPart mask = lowBitMask (srcBits - n);
2444 } else if (n > srcBits) {
2445 if (srcBits % integerPartWidth)
2446 dst[dstParts - 1] &= lowBitMask (srcBits % integerPartWidth);
/freebsd-10.3-release/contrib/llvm/include/llvm/ADT/
H A DAPInt.h1570 const integerPart *, unsigned int srcBits,

Completed in 117 milliseconds