Searched refs:SPIRVTypeInt (Results 1 – 6 of 6) sorted by relevance
/external/spirv-llvm/lib/SPIRV/libSPIRV/ |
D | SPIRVType.cpp | 83 return static_cast<const SPIRVTypeInt *const>(this)->getBitWidth(); in getIntegerBitWidth() 175 return isType<SPIRVTypeInt>(this, Bits); in isTypeInt()
|
D | SPIRVModule.h | 64 class SPIRVTypeInt; variable 203 virtual SPIRVTypeInt *addIntegerType(unsigned) = 0; 223 virtual SPIRVValue *addIntegerConstant(SPIRVTypeInt *, uint64_t) = 0;
|
D | SPIRVModule.cpp | 192 virtual SPIRVTypeInt *addIntegerType(unsigned BitWidth); 222 virtual SPIRVValue *addIntegerConstant(SPIRVTypeInt *, uint64_t); 357 std::map<unsigned, SPIRVTypeInt*> IntTypeMap; 680 SPIRVTypeInt * 685 auto Ty = new SPIRVTypeInt(this, getId(), BitWidth, false); in addIntegerType() 887 return addIntegerConstant(static_cast<SPIRVTypeInt*>(Ty), V); in addConstant() 892 SPIRVModuleImpl::addIntegerConstant(SPIRVTypeInt *Ty, uint64_t V) { in addIntegerConstant()
|
D | SPIRVType.h | 128 class SPIRVTypeInt:public SPIRVType { 132 SPIRVTypeInt(SPIRVModule *M, SPIRVId TheId, unsigned TheBitWidth, in SPIRVTypeInt() function 139 SPIRVTypeInt():SPIRVType(OC), BitWidth(0), IsSigned(false){} in SPIRVTypeInt() function
|
/external/spirv-llvm/lib/SPIRV/ |
D | SPIRVUtil.cpp | 1254 if (static_cast<SPIRVTypeInt *>(Ty)->isSigned()) in getSPIRVImageSampledTypeName()
|
D | SPIRVReader.cpp | 1338 static_cast<SPIRVTypeInt*>(BT)->isSigned())); in transValueWithoutDecoration()
|