Home
last modified time | relevance | path

Searched refs:makeIntConstant (Results 1 – 3 of 3) sorted by relevance

/external/deqp-deps/glslang/SPIRV/
DSpvBuilder.h248 …Id makeInt8Constant(int i, bool specConstant = false) { return makeIntConstant(makeIntType(…
249 …Id makeUint8Constant(unsigned u, bool specConstant = false) { return makeIntConstant(makeUintType…
250 …Id makeInt16Constant(int i, bool specConstant = false) { return makeIntConstant(makeIntType(…
251 …Id makeUint16Constant(unsigned u, bool specConstant = false) { return makeIntConstant(makeUintType…
252 …Id makeIntConstant(int i, bool specConstant = false) { return makeIntConstant(makeIntType(…
253 …Id makeUintConstant(unsigned u, bool specConstant = false) { return makeIntConstant(makeUintType…
669 Id makeIntConstant(Id typeId, unsigned value, bool specConstant);
DGlslangToSpv.cpp1735 …builder.accessChainPush(builder.makeIntConstant(spvIndex), TranslateCoherent(node->getLeft()->getT… in visitBinary()
1961 one = builder.makeIntConstant(1); in visitUnary()
3521 …builder.accessChainPush(builder.makeIntConstant(index), TranslateCoherent(type), getBufferReferenc… in multiTypeStore()
3541 …builder.accessChainPush(builder.makeIntConstant(m), TranslateCoherent(type), getBufferReferenceAli… in multiTypeStore()
4101 spv::Id zero = builder.makeIntConstant(0);
4322 spv::Id zero = builder.makeIntConstant(0);
4490 params.component = builder.makeIntConstant(0);
4560 builder.accessChainPush(builder.makeIntConstant(i), flags, 0);
5658 zero = builder.makeIntConstant(0);
5663 one = builder.makeIntConstant(1);
[all …]
DSpvBuilder.cpp838 Id Builder::makeIntConstant(Id typeId, unsigned value, bool specConstant) in makeIntConstant() function in spv::Builder