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 39 COMPILE_TIME_ASSERT(integerPartWidth % 4 == 0);
81 power * 815 / (351 * integerPartWidth) + 1
93 / (351 * integerPartWidth));
101 return ((bits) + integerPartWidth - 1) / integerPartWidth;
354 if (bits <= partCount * integerPartWidth &&
419 count = bits / integerPartWidth;
420 partBits = bits % integerPartWidth + 1;
422 part = parts[count] & (~(integerPart) 0 >> (integerPartWidth - partBits));
532 assert(count != 0 && count <= integerPartWidth / 4)
    [all...]
  /external/llvm/unittests/ADT/
APIntTest.cpp 540 integerPart singleWord = ~integerPart(0) << (integerPartWidth - 1);
617 APInt A2(integerPartWidth*4, ArrayRef<integerPart>(E2, 4));
619 for (unsigned j = 0; j < integerPartWidth; ++j) {
621 A2[i*integerPartWidth + j]);
656 APInt A4(integerPartWidth*4, ArrayRef<integerPart>(I4, 4));
661 APInt A5(integerPartWidth*4, ArrayRef<integerPart>(I5, 4));
666 APInt A6(integerPartWidth*4, ArrayRef<integerPart>(I6, 4));
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp     [all...]
SelectionDAG.cpp     [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 42 const unsigned int integerPartWidth =
    [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp 695 = valueBits.getRawData()[digitBitIndex / llvm::integerPartWidth];
696 hexDigit >>= (digitBitIndex % llvm::integerPartWidth);
    [all...]

Completed in 287 milliseconds