Home
last modified time | relevance | path

Searched refs:integerPart (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h37 typedef uint64_t integerPart; typedef
41 host_char_bit * static_cast<unsigned int>(sizeof(integerPart));
344 return VAL == ~integerPart(0) >> (APINT_BITS_PER_WORD - BitWidth); in isAllOnesValue()
1592 static void tcSet(integerPart *, integerPart, unsigned int);
1595 static void tcAssign(integerPart *, const integerPart *, unsigned int);
1598 static bool tcIsZero(const integerPart *, unsigned int);
1601 static int tcExtractBit(const integerPart *, unsigned int bit);
1607 static void tcExtract(integerPart *, unsigned int dstCount,
1608 const integerPart *, unsigned int srcBits,
1612 static void tcSetBit(integerPart *, unsigned int bit);
[all …]
DAPFloat.h219 IEEEFloat(const fltSemantics &, integerPart);
312 opStatus convertToInteger(integerPart *, unsigned int, bool, roundingMode,
316 opStatus convertFromSignExtendedInteger(const integerPart *, unsigned int,
318 opStatus convertFromZeroExtendedInteger(const integerPart *, unsigned int,
489 integerPart *significandParts();
490 const integerPart *significandParts() const;
498 integerPart addSignificand(const IEEEFloat &);
499 integerPart subtractSignificand(const IEEEFloat &, integerPart);
535 opStatus convertToSignExtendedInteger(integerPart *, unsigned int, bool,
537 opStatus convertFromUnsignedParts(const integerPart *, unsigned int,
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp647 integerPart V = pVal[i]; in countLeadingZerosSlowCase()
2260 static inline integerPart
2265 return ~(integerPart) 0 >> (integerPartWidth - bits); in lowBitMask()
2269 static inline integerPart
2270 lowHalf(integerPart part) in lowHalf()
2276 static inline integerPart
2277 highHalf(integerPart part) in highHalf()
2285 partMSB(integerPart value) in partMSB()
2293 partLSB(integerPart value) in partLSB()
2302 APInt::tcSet(integerPart *dst, integerPart part, unsigned int parts) in tcSet()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPFloat.cpp471 lostFractionThroughTruncation(const APFloatBase::integerPart *parts, in lostFractionThroughTruncation()
493 shiftRight(APFloatBase::integerPart *dst, unsigned int parts, unsigned int bits) in shiftRight()
540 static APFloatBase::integerPart
541 ulpsFromBoundary(const APFloatBase::integerPart *parts, unsigned int bits, in ulpsFromBoundary()
544 APFloatBase::integerPart part, boundary; in ulpsFromBoundary()
552 …part = parts[count] & (~(APFloatBase::integerPart) 0 >> (APFloatBase::integerPartWidth - partBits)… in ulpsFromBoundary()
555 boundary = (APFloatBase::integerPart) 1 << (partBits - 1); in ulpsFromBoundary()
569 return ~(APFloatBase::integerPart) 0; /* A lot. */ in ulpsFromBoundary()
575 return ~(APFloatBase::integerPart) 0; /* A lot. */ in ulpsFromBoundary()
580 return ~(APFloatBase::integerPart) 0; /* A lot. */ in ulpsFromBoundary()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPFloat.h143 typedef APInt::WordType integerPart; typedef
248 IEEEFloat(const fltSemantics &, integerPart);
296 opStatus convertToInteger(MutableArrayRef<integerPart>, unsigned int, bool,
299 opStatus convertFromSignExtendedInteger(const integerPart *, unsigned int,
301 opStatus convertFromZeroExtendedInteger(const integerPart *, unsigned int,
478 integerPart *significandParts();
479 const integerPart *significandParts() const;
487 integerPart addSignificand(const IEEEFloat &);
488 integerPart subtractSignificand(const IEEEFloat &, integerPart);
525 opStatus convertToSignExtendedInteger(MutableArrayRef<integerPart>,
[all …]