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

/external/clang/lib/Rewrite/
H A DDeltaTree.cpp361 const SourceDelta &IVal = N->getValue(i); local
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/deqp/modules/glshared/
H A DglsBuiltinPrecisionTests.cpp200 * 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)
233 bool contains (const typename Traits<T>::IVal& ival, const T& value)
240 void printIVal (const FloatFormat& fmt, const typename Traits<T>::IVal& ival, ostream& os)
246 string intervalToString (const FloatFormat& fmt, const typename Traits<T>::IVal& ival)
272 typename Traits<T>::IVal round (const FloatFormat& fmt, const T& value)
278 typename Traits<T>::IVal conver
288 typedef Interval IVal; typedef in struct:deqp::gls::BuiltinPrecisionTests::ScalarTraits
385 typedef I IVal; typedef in struct:deqp::gls::BuiltinPrecisionTests::ContainerTraits
484 typedef Void IVal; typedef in struct:deqp::gls::BuiltinPrecisionTests::Traits
832 typedef typename Traits<T>::IVal IVal; typedef in class:deqp::gls::BuiltinPrecisionTests::Expr
1003 typedef typename Expr<T>::IVal IVal; typedef in class:deqp::gls::BuiltinPrecisionTests::Variable
1043 typedef typename Expr<T>::IVal IVal; typedef in class:deqp::gls::BuiltinPrecisionTests::Constant
1258 typedef typename Expr<Ret>::IVal IVal; typedef in class:deqp::gls::BuiltinPrecisionTests::Apply
1393 typedef typename Expr<Ret>::IVal IVal; typedef in class:deqp::gls::BuiltinPrecisionTests::ApplyVar
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp113 const APInt *IVal; local
118 if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2())
120 Elts.push_back(ConstantInt::get(Elt->getType(), IVal->logBase2()));
193 const APInt *IVal; local
196 match(C1, m_APInt(IVal))) {
211 if (match(C1, m_APInt(IVal)) && IVal->isPowerOf2())
213 NewCst = ConstantInt::get(NewOp->getType(), IVal->logBase2());
/external/llvm/lib/TableGen/
H A DTGParser.cpp344 TypedInit *IVal = dyn_cast<TypedInit>(IterVals[i].IterValue); local
345 if (!IVal)
348 IterRec->addValue(RecordVal(IterVar->getName(), IVal->getType(), false));
351 std::vector<unsigned>(), IVal))
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp1776 if (Instruction *IVal = dyn_cast<Instruction>(Val))
1777 IVal->eraseFromParent();
1801 if (Instruction *IVal = dyn_cast<Instruction>(Val))
1802 IVal->eraseFromParent();
1826 if (Instruction *IVal = dyn_cast<Instruction>(Val))
1827 IVal->eraseFromParent();
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9727 /// Check to see if IVal is something that provides a value as specified by
9729 /// truncated IVal.
9732 SDValue IVal, StoreSDNode *St,
9738 // Check to see if IVal is all zeros in the part being masked in by the 'or'
9740 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
9742 if (!DAG.MaskedValueIsZero(IVal, Mask)) return nullptr;
9751 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
9754 IVal = DAG.getNode(ISD::SRL, SDLoc(IVal), IVal
9731 ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo, SDValue IVal, StoreSDNode *St, DAGCombiner *DC) argument
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp490 Value *IVal = SI->getValueOperand(); local
491 T1 = IVal->getType();

Completed in 277 milliseconds