Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ycbcr/
DvktYCbCrUtil.cpp1757 Interval rValue, bValue; in calculateBounds() local
1763rValue = lookupWrapped(rAccess, conversionFormat[0], addressModeU, addressModeV, IVec2(subI, subJ)… in calculateBounds()
1770rValue = reconstructLinearXYChromaSample(filteringFormat[0], conversionFormat[0], xChromaOffset, y… in calculateBounds()
1775rValue = reconstructLinearXChromaSample(filteringFormat[0], conversionFormat[0], xChromaOffset, ad… in calculateBounds()
1782 rValue, in calculateBounds()
1806 Interval rValue, bValue; in calculateBounds() local
1810rValue = lookupWrapped(rAccess, conversionFormat[0], addressModeU, addressModeV, IVec2(chromaI, ch… in calculateBounds()
1818rValue = linearSample(rAccess, conversionFormat[0], filteringFormat[0], addressModeU, addressModeV… in calculateBounds()
1824 rValue, in calculateBounds()
1848 Interval rValue, bValue; in calculateBounds() local
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/
DvktYCbCrUtil.cpp1757 Interval rValue, bValue; in calculateBounds() local
1763rValue = lookupWrapped(rAccess, conversionFormat[0], addressModeU, addressModeV, IVec2(subI, subJ)… in calculateBounds()
1770rValue = reconstructLinearXYChromaSample(filteringFormat[0], conversionFormat[0], xChromaOffset, y… in calculateBounds()
1775rValue = reconstructLinearXChromaSample(filteringFormat[0], conversionFormat[0], xChromaOffset, ad… in calculateBounds()
1782 rValue, in calculateBounds()
1806 Interval rValue, bValue; in calculateBounds() local
1810rValue = lookupWrapped(rAccess, conversionFormat[0], addressModeU, addressModeV, IVec2(chromaI, ch… in calculateBounds()
1818rValue = linearSample(rAccess, conversionFormat[0], filteringFormat[0], addressModeU, addressModeV… in calculateBounds()
1824 rValue, in calculateBounds()
1848 Interval rValue, bValue; in calculateBounds() local
[all …]
/third_party/glslang/SPIRV/
DSpvBuilder.h459 …void createStore(Id rValue, Id lValue, spv::MemoryAccessMask memoryAccess = spv::MemoryAccessMaskN…
779 void setAccessChainRValue(Id rValue) in setAccessChainRValue() argument
782 accessChain.base = rValue; in setAccessChainRValue()
DGlslangToSpv.cpp179 void multiTypeStore(const glslang::TType&, spv::Id rValue);
2173 spv::Id rValue = accessChainLoad(node->getRight()->getType()); in visitBinary() local
2189 rValue = createBinaryOperation(node->getOp(), decorations, in visitBinary()
2190 … convertGlslangToSpvType(node->getType()), leftRValue, rValue, in visitBinary()
2194 assert(rValue != spv::NoResult); in visitBinary()
2199 multiTypeStore(node->getLeft()->getType(), rValue); in visitBinary()
2203 builder.setAccessChainRValue(rValue); in visitBinary()
5153 void TGlslangToSpvTraverser::multiTypeStore(const glslang::TType& type, spv::Id rValue) in multiTypeStore() argument
5157 accessChainStore(type, rValue); in multiTypeStore()
5162 spv::Id rType = builder.getTypeId(rValue); in multiTypeStore()
[all …]
DSpvBuilder.cpp2415 void Builder::createStore(Id rValue, Id lValue, spv::MemoryAccessMask memoryAccess, spv::Scope scop… in createStore() argument
2420 store->addIdOperand(rValue); in createStore()
/third_party/glslang/glslang/HLSL/
DhlslParseHelper.cpp3665 TIntermTyped* rValue; in decomposeStructBufferMethods() local
3667 rValue = argValue; in decomposeStructBufferMethods()
3669 rValue = intermediate.addIndex(EOpIndexDirect, argValue, idxConst, loc); in decomposeStructBufferMethods()
3671 rValue->setType(indexType); in decomposeStructBufferMethods()
3674 TIntermTyped* assign = intermediate.addAssign(EOpAssign, lValue, rValue, loc); in decomposeStructBufferMethods()
3775 TIntermTyped* rValue = argAggregate->getSequence()[1]->getAsTyped(); in decomposeStructBufferMethods() local
3780 node = intermediate.addAssign(EOpAssign, lValue, rValue, loc); in decomposeStructBufferMethods()
/third_party/sqlite/src/
Dsqlite3.c89226 SQLITE_API int sqlite3_bind_double(sqlite3_stmt *pStmt, int i, double rValue){
89231 sqlite3VdbeMemSetDouble(&p->aVar[i-1], rValue);
90373 static int alsoAnInt(Mem *pRec, double rValue, i64 *piValue){
90375 iValue = sqlite3RealToI64(rValue);
90376 if( sqlite3RealSameAsInt(rValue,iValue) ){
90399 double rValue;
90403 rc = sqlite3AtoF(pRec->z, &rValue, pRec->n, enc);
90405 if( rc==1 && alsoAnInt(pRec, rValue, &pRec->u.i) ){
90408 pRec->u.r = rValue;
201066 RtreeDValue rValue; /* Constraint value. */
[all …]