HomeSort by: relevance | last modified time | path
    Searched refs:IntPart (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
APFixedPoint.cpp 379 APSInt IntPart = Val >> Scale;
387 IntPart.toString(Str, /*Radix=*/10);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 1078 struct IntPart {
1085 static Optional<IntPart> matchIntPart(Value *V) {
1103 static Value *extractIntPart(const IntPart &P, IRBuilderBase &Builder) {
1125 Optional<IntPart> L0 = matchIntPart(Cmp0->getOperand(0));
1126 Optional<IntPart> R0 = matchIntPart(Cmp0->getOperand(1));
1127 Optional<IntPart> L1 = matchIntPart(Cmp1->getOperand(0));
1128 Optional<IntPart> R1 = matchIntPart(Cmp1->getOperand(1));
1152 IntPart L = {L0->From, L0->StartBit, L0->NumBits + L1->NumBits};
1153 IntPart R = {R0->From, R0->StartBit, R0->NumBits + R1->NumBits};

Completed in 58 milliseconds