Searched refs:integerPartWidth (Results 1 - 7 of 7) sorted by relevance

/external/llvm/lib/Support/
H A DAPInt.cpp2274 COMPILE_TIME_ASSERT(integerPartWidth % 2 == 0);
2284 assert(bits != 0 && bits <= integerPartWidth);
2286 return ~(integerPart) 0 >> (integerPartWidth - bits);
2293 return part & lowBitMask(integerPartWidth / 2);
2300 return part >> (integerPartWidth / 2);
2361 return (parts[bit / integerPartWidth] &
2362 ((integerPart) 1 << bit % integerPartWidth)) != 0;
2369 parts[bit / integerPartWidth] |= (integerPart) 1 << (bit % integerPartWidth);
2376 parts[bit / integerPartWidth]
[all...]
H A DAPFloat.cpp39 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 /
[all...]
/external/llvm/unittests/ADT/
H A DAPIntTest.cpp540 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/
H A DLegalizeFloatTypes.cpp854 assert(NVT.getSizeInBits() == integerPartWidth &&
858 APInt(integerPartWidth, C.getRawData()[1])),
861 APInt(integerPartWidth, C.getRawData()[0])),
H A DSelectionDAG.cpp2756 assert(integerPartWidth >= 64);
/external/llvm/include/llvm/ADT/
H A DAPInt.h42 const unsigned int integerPartWidth = member in namespace:llvm
/external/clang/lib/AST/
H A DItaniumMangle.cpp695 = valueBits.getRawData()[digitBitIndex / llvm::integerPartWidth];
696 hexDigit >>= (digitBitIndex % llvm::integerPartWidth);

Completed in 204 milliseconds