Searched refs:makeIntType (Results 1 – 3 of 3) sorted by relevance
/external/deqp-deps/glslang/SPIRV/ |
D | SpvBuilder.h | 145 Id makeIntType(int width) { return makeIntegerType(width, true); } in makeIntType() function 248 …tant(int i, bool specConstant = false) { return makeIntConstant(makeIntType(8), (unsigned)… 250 …stant(int i, bool specConstant = false) { return makeIntConstant(makeIntType(16), (unsigned… 252 …ant(int i, bool specConstant = false) { return makeIntConstant(makeIntType(32), (unsigned… 254 …ng i, bool specConstant = false) { return makeInt64Constant(makeIntType(64), (unsigned…
|
D | GlslangToSpv.cpp | 1882 length = builder.createUnaryOp(spv::OpBitcast, builder.makeIntType(32), length); in visitUnary() 2918 case glslang::EbtInt: return builder.makeIntType(32); in getSampledType() 2995 spvType = builder.makeIntType(8); in convertGlslangToSpvType() 3001 spvType = builder.makeIntType(16); in convertGlslangToSpvType() 3007 spvType = builder.makeIntType(32); in convertGlslangToSpvType() 3013 spvType = builder.makeIntType(64); in convertGlslangToSpvType() 4106 … builder.makeCompositeConstant(builder.makeVectorType(builder.makeIntType(32), 2), comps) }; 4326 …push_back(builder.makeCompositeConstant(builder.makeVectorType(builder.makeIntType(32), 2), comps)… 5551 type = builder.makeIntType(width);
|
D | SpvBuilder.cpp | 2010 Id intType = isUnsignedResult ? makeUintType(32) : makeIntType(32); in createTextureQueryCall() 2027 resultType = isUnsignedResult ? makeUintType(32) : makeIntType(32); in createTextureQueryCall()
|