Home
last modified time | relevance | path

Searched refs:constIdx (Results 1 – 6 of 6) sorted by relevance

/external/angle/src/compiler/translator/
DValidateClipCullDistance.cpp107 const TConstantUnion *constIdx = node->getRight()->getConstantValue(); in visitBinary() local
108 if (constIdx) in visitBinary()
111 switch (constIdx->getType()) in visitBinary()
114 idx = constIdx->getIConst(); in visitBinary()
117 idx = constIdx->getUConst(); in visitBinary()
120 idx = static_cast<unsigned int>(constIdx->getFConst()); in visitBinary()
123 idx = constIdx->getBConst() ? 1 : 0; in visitBinary()
/external/angle/src/compiler/translator/tree_util/
DReplaceClipCullDistanceVariable.cpp119 const TConstantUnion *constIdx = node->getRight()->getConstantValue(); in visitBinary() local
120 if (!constIdx) in visitBinary()
127 switch (constIdx->getType()) in visitBinary()
130 idx = constIdx->getIConst(); in visitBinary()
133 idx = constIdx->getUConst(); in visitBinary()
136 idx = static_cast<unsigned int>(constIdx->getFConst()); in visitBinary()
139 idx = constIdx->getBConst() ? 1 : 0; in visitBinary()
DRewriteSampleMaskVariable.cpp81 const TConstantUnion *constIdx = node->getRight()->getConstantValue(); in visitBinary() local
82 if (!constIdx) in visitBinary()
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsm8bitStorageTests.cpp3078 deUint32 constIdx = constantIndices[constIndexIdx].constantIndex; in addGraphics8BitStorageUniformInt8To32Group() local
3092 specs["constarrayidx"] = de::toString(constIdx); in addGraphics8BitStorageUniformInt8To32Group()
3104 name += string("_const_idx_") + de::toString(constIdx); in addGraphics8BitStorageUniformInt8To32Group()
3287 deUint32 constIdx = constantIndices[constIndexIdx].constantIndex; in addGraphics8BitStoragePushConstantInt8To32Group() local
3296 constIdxData.push_back(sOutputs[constIdx]); in addGraphics8BitStoragePushConstantInt8To32Group()
3299 specs["constarrayidx"] = de::toString(constIdx); in addGraphics8BitStoragePushConstantInt8To32Group()
3306 testName += string("_const_idx_") + de::toString(constIdx); in addGraphics8BitStoragePushConstantInt8To32Group()
3330 deUint32 constIdx = constantIndices[constIndexIdx].constantIndex; in addGraphics8BitStoragePushConstantInt8To32Group() local
3339 constIdxData.push_back(uOutputs[constIdx]); in addGraphics8BitStoragePushConstantInt8To32Group()
3342 specs["constarrayidx"] = de::toString(constIdx); in addGraphics8BitStoragePushConstantInt8To32Group()
[all …]
DvktSpvAsm16bitStorageTests.cpp4818 deUint32 constIdx = constantIndices[constIndexIdx].constantIndex; in addGraphics16BitStoragePushConstantFloat16To32Group() local
4827 float32ConstIdxData.push_back(float32Data[constIdx]); in addGraphics16BitStoragePushConstantFloat16To32Group()
4830 specs["constarrayidx"] = de::toString(constIdx); in addGraphics16BitStoragePushConstantFloat16To32Group()
4843 testName += string("_const_idx_") + de::toString(constIdx); in addGraphics16BitStoragePushConstantFloat16To32Group()
4887 deUint32 constIdx = constantIndices[constIndexIdx].constantIndex; in addGraphics16BitStoragePushConstantFloat16To32Group() local
4896 float32ConstIdxData.push_back(float32Data[constIdx * 4 + numIdx % 4]); in addGraphics16BitStoragePushConstantFloat16To32Group()
4899 specs["constarrayidx"] = de::toString(constIdx); in addGraphics16BitStoragePushConstantFloat16To32Group()
4912 testName += string("_const_idx_") + de::toString(constIdx); in addGraphics16BitStoragePushConstantFloat16To32Group()
4963 deUint32 constIdx = constantIndices[constIndexIdx].constantIndex; in addGraphics16BitStoragePushConstantFloat16To32Group() local
4978 float32ConstIdxData.push_back(float32Data[constIdx * 8 + numIdx % 8]); in addGraphics16BitStoragePushConstantFloat16To32Group()
[all …]
/external/angle/src/compiler/translator/tree_ops/vulkan/
DReplaceForShaderFramebufferFetch.cpp161 const TConstantUnion *constIdx = node->getRight()->getConstantValue(); in visitBinary() local
162 if (!constIdx) in visitBinary()
176 switch (constIdx->getType()) in visitBinary()
179 idx = constIdx->getIConst(); in visitBinary()
182 idx = constIdx->getUConst(); in visitBinary()
185 idx = static_cast<unsigned int>(constIdx->getFConst()); in visitBinary()
188 idx = constIdx->getBConst() ? 1 : 0; in visitBinary()