Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/modules/glshared/
DglsBuiltinPrecisionTests.cpp228 typename Traits<T>::IVal makeIVal (const T& value) in makeIVal()
235 typename Traits<T>::IVal unionIVal (const typename Traits<T>::IVal& a, in unionIVal()
236 const typename Traits<T>::IVal& b) in unionIVal()
243 bool contains (const typename Traits<T>::IVal& ival, const T& value) in contains()
250 bool containsWarning(const typename Traits<T>::IVal& ival, const T& value) in containsWarning()
257 void printIVal (const FloatFormat& fmt, const typename Traits<T>::IVal& ival, ostream& os) in printIVal()
263 string intervalToString (const FloatFormat& fmt, const typename Traits<T>::IVal& ival) in intervalToString()
289 typename Traits<T>::IVal round (const FloatFormat& fmt, const T& value) in round()
295 typename Traits<T>::IVal convert (const FloatFormat& fmt, in convert()
296 const typename Traits<T>::IVal& value) in convert()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DCFLAndersAliasAnalysis.cpp151 InstantiatedValue IVal; member
156 return LHS.IVal == RHS.IVal && LHS.Offset == RHS.Offset; in operator ==()
312 std::make_pair(OVal.IVal, OVal.Offset)); in getHashValue()
373 auto IVal = Mapping.first; in populateAttrMap() local
376 auto &Attr = AttrMap[IVal.Val]; in populateAttrMap()
378 if (IVal.DerefLevel == 0) in populateAttrMap()
493 if (auto IVal = getInterfaceValue(Mapping.first, RetVals)) { in populateExternalAttributes() local
496 ExtAttributes.push_back(ExternalAttribute{*IVal, Attr}); in populateExternalAttributes()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderexecutor/
DvktShaderBuiltinPrecisionTests.cpp282 typename Traits<T>::IVal makeIVal (const T& value) in makeIVal()
289 typename Traits<T>::IVal unionIVal (const typename Traits<T>::IVal& a, in unionIVal()
290 const typename Traits<T>::IVal& b) in unionIVal()
297 bool contains (const typename Traits<T>::IVal& ival, const T& value, bool is16Bit = false, const tc… in contains()
304 void printIVal (const FloatFormat& fmt, const typename Traits<T>::IVal& ival, ostream& os) in printIVal()
310 string intervalToString (const FloatFormat& fmt, const typename Traits<T>::IVal& ival) in intervalToString()
455 typename Traits<T>::IVal round (const FloatFormat& fmt, const T& value) in round()
461 typename Traits<T>::IVal convert (const FloatFormat& fmt, in convert()
462 const typename Traits<T>::IVal& value) in convert()
501 typedef Interval IVal; typedef
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp103 const APInt *IVal; in getLogBase2() local
104 if (match(C, m_APInt(IVal)) && IVal->isPowerOf2()) in getLogBase2()
105 return ConstantInt::get(Ty, IVal->logBase2()); in getLogBase2()
119 if (!match(Elt, m_APInt(IVal)) || !IVal->isPowerOf2()) in getLogBase2()
121 Elts.push_back(ConstantInt::get(Ty->getScalarType(), IVal->logBase2())); in getLogBase2()
198 const APInt *IVal; in visitMul() local
201 match(C1, m_APInt(IVal))) { in visitMul()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DCodeGenPrepare.cpp2529 if (Instruction *IVal = dyn_cast<Instruction>(Val)) in undo() local
2530 IVal->eraseFromParent(); in undo()
2555 if (Instruction *IVal = dyn_cast<Instruction>(Val)) in undo() local
2556 IVal->eraseFromParent(); in undo()
2581 if (Instruction *IVal = dyn_cast<Instruction>(Val)) in undo() local
2582 IVal->eraseFromParent(); in undo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/AsmParser/
DAMDGPUAsmParser.cpp3733 int64_t IVal; in ParseDirectiveAMDHSAKernel() local
3734 if (getParser().parseAbsoluteExpression(IVal)) in ParseDirectiveAMDHSAKernel()
3739 if (IVal < 0) in ParseDirectiveAMDHSAKernel()
3742 uint64_t Val = IVal; in ParseDirectiveAMDHSAKernel()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp15033 SDValue IVal, StoreSDNode *St, in ShrinkLoadReplaceStoreWithStore() argument
15041 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(), in ShrinkLoadReplaceStoreWithStore()
15043 if (!DAG.MaskedValueIsZero(IVal, Mask)) return SDValue(); in ShrinkLoadReplaceStoreWithStore()
15060 SDLoc DL(IVal); in ShrinkLoadReplaceStoreWithStore()
15061 IVal = DAG.getNode(ISD::SRL, DL, IVal.getValueType(), IVal, in ShrinkLoadReplaceStoreWithStore()
15063 DC->getShiftAmountTy(IVal.getValueType()))); in ShrinkLoadReplaceStoreWithStore()
15073 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes; in ShrinkLoadReplaceStoreWithStore()
15077 SDLoc DL(IVal); in ShrinkLoadReplaceStoreWithStore()
15083 IVal = DAG.getNode(ISD::TRUNCATE, SDLoc(IVal), VT, IVal); in ShrinkLoadReplaceStoreWithStore()
15087 .getStore(St->getChain(), SDLoc(St), IVal, Ptr, in ShrinkLoadReplaceStoreWithStore()