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

/external/clang/lib/Rewrite/Core/
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.cpp198 * The type Traits<T>::IVal is the approximation of T: it is `Interval` for
216 typename Traits<T>::IVal makeIVal (const T& value)
223 typename Traits<T>::IVal unionIVal (const typename Traits<T>::IVal& a,
224 const typename Traits<T>::IVal& b)
231 bool contains (const typename Traits<T>::IVal& ival, const T& value)
238 void printIVal (const FloatFormat& fmt, const typename Traits<T>::IVal& ival, ostream& os)
244 string intervalToString (const FloatFormat& fmt, const typename Traits<T>::IVal& ival)
270 typename Traits<T>::IVal round (const FloatFormat& fmt, const T& value)
276 typename Traits<T>::IVal conver
286 typedef Interval IVal; typedef in struct:deqp::gls::BuiltinPrecisionTests::ScalarTraits
383 typedef I IVal; typedef in struct:deqp::gls::BuiltinPrecisionTests::ContainerTraits
482 typedef Void IVal; typedef in struct:deqp::gls::BuiltinPrecisionTests::Traits
830 typedef typename Traits<T>::IVal IVal; typedef in class:deqp::gls::BuiltinPrecisionTests::Expr
1001 typedef typename Expr<T>::IVal IVal; typedef in class:deqp::gls::BuiltinPrecisionTests::Variable
1041 typedef typename Expr<T>::IVal IVal; typedef in class:deqp::gls::BuiltinPrecisionTests::Constant
1256 typedef typename Expr<Ret>::IVal IVal; typedef in class:deqp::gls::BuiltinPrecisionTests::Apply
1359 typedef typename Expr<Ret>::IVal IVal; typedef in class:deqp::gls::BuiltinPrecisionTests::ApplyVar
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp106 const APInt *IVal; local
111 if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2())
113 Elts.push_back(ConstantInt::get(Elt->getType(), IVal->logBase2()));
139 const APInt *IVal; local
142 match(C1, m_APInt(IVal)))
148 if (match(C1, m_APInt(IVal)) && IVal->isPowerOf2())
150 NewCst = ConstantInt::get(NewOp->getType(), IVal->logBase2());
/external/llvm/lib/TableGen/
H A DTGParser.cpp341 TypedInit *IVal = dyn_cast<TypedInit>(IterVals[i].IterValue); local
342 if (!IVal) {
347 IterRec->addValue(RecordVal(IterVar->getName(), IVal->getType(), false));
350 std::vector<unsigned>(), IVal)) {
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8684 /// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
8686 /// store with a narrower store of truncated IVal.
8689 SDValue IVal, StoreSDNode *St,
8695 // Check to see if IVal is all zeros in the part being masked in by the 'or'
8697 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
8699 if (!DAG.MaskedValueIsZero(IVal, Mask)) return nullptr;
8708 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
8711 IVal = DAG.getNode(ISD::SRL, SDLoc(IVal), IVal
8688 ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo, SDValue IVal, StoreSDNode *St, DAGCombiner *DC) argument
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp491 Value *IVal = SI->getValueOperand(); local
492 T1 = IVal->getType();

Completed in 1982 milliseconds