Searched refs:makeIntegerType (Results 1 - 3 of 3) sorted by relevance
/third_party/glslang/SPIRV/ |
H A D | SpvBuilder.h | 192 Id makeIntegerType(int width, bool hasSign); // generic 193 Id makeIntType(int width) { return makeIntegerType(width, true); } in makeIntType() 194 Id makeUintType(int width) { return makeIntegerType(width, false); } in makeUintType()
|
H A D | GlslangToSpv.cpp | 8803 frexpIntType = builder.makeIntegerType(width, true); in createMiscOperation() 8805 frexpIntType = builder.makeVectorType(builder.makeIntegerType(width, true), in createMiscOperation() 9106 typeId = builder.makeIntegerType(32, 1); in createMiscOperation() 9110 typeId = builder.makeIntegerType(32, 1); in createMiscOperation() 9114 typeId = builder.makeIntegerType(32, 1); in createMiscOperation() 9118 typeId = builder.makeIntegerType(32, 1); in createMiscOperation() 9122 typeId = builder.makeIntegerType(32, 0); in createMiscOperation() 9130 typeId = builder.makeIntegerType(32, 0); in createMiscOperation()
|
H A D | SpvBuilder.cpp | 282 Id Builder::makeIntegerType(int width, bool hasSign) in makeIntegerType() function in spv::Builder
|
Completed in 20 milliseconds