Lines Matching full:bitwidth
189 virtual SPIRVTypeFloat *addFloatType(unsigned BitWidth);
192 virtual SPIRVTypeInt *addIntegerType(unsigned BitWidth);
681 SPIRVModuleImpl::addIntegerType(unsigned BitWidth) {
682 auto Loc = IntTypeMap.find(BitWidth);
685 auto Ty = new SPIRVTypeInt(this, getId(), BitWidth, false);
686 IntTypeMap[BitWidth] = Ty;
691 SPIRVModuleImpl::addFloatType(unsigned BitWidth) {
692 SPIRVTypeFloat *T = addType(new SPIRVTypeFloat(this, getId(), BitWidth));