HomeSort by relevance Sort by last modified time
    Searched refs:integerPart (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/ADT/
APFloat.h 184 APFloat(const fltSemantics &, integerPart);
285 opStatus convertToInteger(integerPart *, unsigned int, bool,
290 opStatus convertFromSignExtendedInteger(const integerPart *, unsigned int,
292 opStatus convertFromZeroExtendedInteger(const integerPart *, unsigned int,
365 integerPart *significandParts();
366 const integerPart *significandParts() const;
370 integerPart addSignificand(const APFloat &);
371 integerPart subtractSignificand(const APFloat &, integerPart);
398 opStatus convertToSignExtendedInteger(integerPart *, unsigned int, bool
    [all...]
APInt.h 37 typedef uint64_t integerPart;
41 static_cast<unsigned int>(sizeof(integerPart));
    [all...]
  /external/llvm/lib/Support/
APInt.cpp 782 integerPart MSWMask;
783 if (BitsInMSW) MSWMask = (integerPart(1) << BitsInMSW) - 1;
785 MSWMask = ~integerPart(0);
790 integerPart MSW = pVal[i-1] & MSWMask;
    [all...]
APFloat.cpp 352 lostFractionThroughTruncation(const integerPart *parts,
374 shiftRight(integerPart *dst, unsigned int parts, unsigned int bits)
421 static integerPart
422 ulpsFromBoundary(const integerPart *parts, unsigned int bits, bool isNearest)
425 integerPart part, boundary;
433 part = parts[count] & (~(integerPart) 0 >> (integerPartWidth - partBits));
436 boundary = (integerPart) 1 << (partBits - 1);
450 return ~(integerPart) 0; /* A lot. */
456 return ~(integerPart) 0; /* A lot. */
461 return ~(integerPart) 0; /* A lot. *
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
NumberPrototype.cpp 251 double integerPart = floor(x);
256 double d = integerPart;
268 d = x - integerPart;
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]

Completed in 201 milliseconds