Home
last modified time | relevance | path

Searched refs:IVal (Results 1 – 9 of 9) sorted by relevance

/external/deqp/modules/glshared/
DglsBuiltinPrecisionTests.cpp227 typename Traits<T>::IVal makeIVal (const T& value) in makeIVal()
234 typename Traits<T>::IVal unionIVal (const typename Traits<T>::IVal& a, in unionIVal()
235 const typename Traits<T>::IVal& b) in unionIVal()
242 bool contains (const typename Traits<T>::IVal& ival, const T& value) in contains()
249 void printIVal (const FloatFormat& fmt, const typename Traits<T>::IVal& ival, ostream& os) in printIVal()
255 string intervalToString (const FloatFormat& fmt, const typename Traits<T>::IVal& ival) in intervalToString()
281 typename Traits<T>::IVal round (const FloatFormat& fmt, const T& value) in round()
287 typename Traits<T>::IVal convert (const FloatFormat& fmt, in convert()
288 const typename Traits<T>::IVal& value) in convert()
297 typedef Interval IVal; typedef
[all …]
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderBuiltinPrecisionTests.cpp206 typename Traits<T>::IVal makeIVal (const T& value) in makeIVal()
213 typename Traits<T>::IVal unionIVal (const typename Traits<T>::IVal& a, in unionIVal()
214 const typename Traits<T>::IVal& b) in unionIVal()
221 bool contains (const typename Traits<T>::IVal& ival, const T& value) in contains()
228 void printIVal (const FloatFormat& fmt, const typename Traits<T>::IVal& ival, ostream& os) in printIVal()
234 string intervalToString (const FloatFormat& fmt, const typename Traits<T>::IVal& ival) in intervalToString()
260 typename Traits<T>::IVal round (const FloatFormat& fmt, const T& value) in round()
266 typename Traits<T>::IVal convert (const FloatFormat& fmt, in convert()
267 const typename Traits<T>::IVal& value) in convert()
276 typedef Interval IVal; typedef
[all …]
/external/clang/lib/Rewrite/
DDeltaTree.cpp361 const SourceDelta &IVal = N->getValue(i); in VerifyTree() local
364 assert(IN->getValue(i-1).FileLoc < IVal.FileLoc); in VerifyTree()
365 FullDelta += IVal.Delta; in VerifyTree()
370 IVal.FileLoc); in VerifyTree()
373 assert(IN->getChild(i+1)->getValue(0).FileLoc > IVal.FileLoc); in VerifyTree()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp120 const APInt *IVal; in getLogBase2Vector() local
125 if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2()) in getLogBase2Vector()
127 Elts.push_back(ConstantInt::get(Elt->getType(), IVal->logBase2())); in getLogBase2Vector()
200 const APInt *IVal; in visitMul() local
203 match(C1, m_APInt(IVal))) { in visitMul()
218 if (match(C1, m_APInt(IVal)) && IVal->isPowerOf2()) in visitMul()
220 NewCst = ConstantInt::get(NewOp->getType(), IVal->logBase2()); in visitMul()
/external/llvm/lib/TableGen/
DTGParser.cpp329 TypedInit *IVal = dyn_cast<TypedInit>(IR.IterValue); in ProcessForeachDefs() local
330 if (!IVal) in ProcessForeachDefs()
333 IterRec->addValue(RecordVal(IterVar->getName(), IVal->getType(), false)); in ProcessForeachDefs()
336 std::vector<unsigned>(), IVal)) in ProcessForeachDefs()
/external/llvm/lib/CodeGen/
DCodeGenPrepare.cpp2256 if (Instruction *IVal = dyn_cast<Instruction>(Val)) in undo() local
2257 IVal->eraseFromParent(); in undo()
2281 if (Instruction *IVal = dyn_cast<Instruction>(Val)) in undo() local
2282 IVal->eraseFromParent(); in undo()
2306 if (Instruction *IVal = dyn_cast<Instruction>(Val)) in undo() local
2307 IVal->eraseFromParent(); in undo()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp10678 SDValue IVal, StoreSDNode *St, in ShrinkLoadReplaceStoreWithStore() argument
10686 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(), in ShrinkLoadReplaceStoreWithStore()
10688 if (!DAG.MaskedValueIsZero(IVal, Mask)) return nullptr; in ShrinkLoadReplaceStoreWithStore()
10700 SDLoc DL(IVal); in ShrinkLoadReplaceStoreWithStore()
10701 IVal = DAG.getNode(ISD::SRL, DL, IVal.getValueType(), IVal, in ShrinkLoadReplaceStoreWithStore()
10703 DC->getShiftAmountTy(IVal.getValueType()))); in ShrinkLoadReplaceStoreWithStore()
10713 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes; in ShrinkLoadReplaceStoreWithStore()
10717 SDLoc DL(IVal); in ShrinkLoadReplaceStoreWithStore()
10724 IVal = DAG.getNode(ISD::TRUNCATE, SDLoc(IVal), VT, IVal); in ShrinkLoadReplaceStoreWithStore()
10727 return DAG.getStore(St->getChain(), SDLoc(St), IVal, Ptr, in ShrinkLoadReplaceStoreWithStore()
/external/llvm/lib/Target/Hexagon/
DHexagonInstrInfo.cpp990 APInt IVal = FVal.bitcastToAPInt(); in expandPostRAPseudo() local
996 MI->addOperand(MachineOperand::CreateImm(IVal.getZExtValue())); in expandPostRAPseudo()
/external/llvm/lib/Transforms/Vectorize/
DBBVectorize.cpp498 Value *IVal = SI->getValueOperand(); in getInstructionTypes() local
499 T1 = IVal->getType(); in getInstructionTypes()