HomeSort by relevance Sort by last modified time
    Searched defs:IVal (Results 1 - 5 of 5) sorted by null

  /external/clang/lib/Rewrite/
DeltaTree.cpp 361 const SourceDelta &IVal = N->getValue(i);
364 assert(IN->getValue(i-1).FileLoc < IVal.FileLoc);
365 FullDelta += IVal.Delta;
370 IVal.FileLoc);
373 assert(IN->getChild(i+1)->getValue(0).FileLoc > IVal.FileLoc);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 113 const APInt *IVal;
118 if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2())
120 Elts.push_back(ConstantInt::get(Elt->getType(), IVal->logBase2()));
193 const APInt *IVal;
196 match(C1, m_APInt(IVal))) {
211 if (match(C1, m_APInt(IVal)) && IVal->isPowerOf2())
213 NewCst = ConstantInt::get(NewOp->getType(), IVal->logBase2());
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 344 TypedInit *IVal = dyn_cast<TypedInit>(IterVals[i].IterValue);
345 if (!IVal)
348 IterRec->addValue(RecordVal(IterVar->getName(), IVal->getType(), false));
351 std::vector<unsigned>(), IVal))
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 490 Value *IVal = SI->getValueOperand();
491 T1 = IVal->getType();
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp 200 * The type Traits<T>::IVal is the approximation of T: it is `Interval` for
218 typename Traits<T>::IVal makeIVal (const T& value)
225 typename Traits<T>::IVal unionIVal (const typename Traits<T>::IVal& a,
226 const typename Traits<T>::IVal& b)
231 //! Returns true iff every element of `ival` contains the corresponding element of `value`.
233 bool contains (const typename Traits<T>::IVal& ival, const T& value)
235 return Traits<T>::doContains(ival, value);
240 void printIVal (const FloatFormat& fmt, const typename Traits<T>::IVal& ival, ostream& os
    [all...]

Completed in 1733 milliseconds