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

  /external/llvm/lib/Support/
APInt.cpp     [all...]
APFloat.cpp 38 static_assert(integerPartWidth % 4 == 0, "Part width must be divisible by 4!");
80 power * 815 / (351 * integerPartWidth) + 1
92 / (351 * integerPartWidth));
100 return ((bits) + integerPartWidth - 1) / integerPartWidth;
353 if (bits <= partCount * integerPartWidth &&
418 count = bits / integerPartWidth;
419 partBits = bits % integerPartWidth + 1;
421 part = parts[count] & (~(integerPart) 0 >> (integerPartWidth - partBits));
531 assert(count != 0 && count <= integerPartWidth / 4)
    [all...]
  /external/llvm/unittests/ADT/
APIntTest.cpp 740 integerPart singleWord = ~integerPart(0) << (integerPartWidth - 1);
817 APInt A2(integerPartWidth*4, E2);
819 for (unsigned j = 0; j < integerPartWidth; ++j) {
821 A2[i*integerPartWidth + j]);
856 APInt A4(integerPartWidth*4, I4);
861 APInt A5(integerPartWidth*4, I5);
866 APInt A6(integerPartWidth*4, I6);
  /external/llvm/include/llvm/ADT/
APInt.h 40 const unsigned int integerPartWidth =
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp     [all...]
SelectionDAG.cpp     [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp 713 = valueBits.getRawData()[digitBitIndex / llvm::integerPartWidth];
714 hexDigit >>= (digitBitIndex % llvm::integerPartWidth);
    [all...]

Completed in 556 milliseconds