Lines Matching refs:newLists
2222 tIoKinds newLists = { list, nullptr, nullptr }; in remapEntryPointIO() local
2223 ioTypeMap[type.getStruct()] = newLists; in remapEntryPointIO()
2249 auto newLists = ioTypeMap.find(ioVariable->getType().getStruct()); in remapEntryPointIO() local
2250 if (newLists != ioTypeMap.end()) { in remapEntryPointIO()
2251 if (storage == EvqVaryingIn && newLists->second.input) in remapEntryPointIO()
2252 ioVariable->getWritableType().setStruct(newLists->second.input); in remapEntryPointIO()
2253 else if (storage == EvqVaryingOut && newLists->second.output) in remapEntryPointIO()
2254 ioVariable->getWritableType().setStruct(newLists->second.output); in remapEntryPointIO()
7601 tIoKinds newLists = { nullptr, nullptr, nullptr }; // allocate for each kind found in declareStruct() local
7603 condAlloc(hasUniform(member->type->getQualifier()), newLists.uniform); in declareStruct()
7604 condAlloc( hasInput(member->type->getQualifier()), newLists.input); in declareStruct()
7605 condAlloc( hasOutput(member->type->getQualifier()), newLists.output); in declareStruct()
7610 condAlloc(it->second.uniform != nullptr, newLists.uniform); in declareStruct()
7611 condAlloc(it->second.input != nullptr, newLists.input); in declareStruct()
7612 condAlloc(it->second.output != nullptr, newLists.output); in declareStruct()
7616 if (newLists.uniform == nullptr && in declareStruct()
7617 newLists.input == nullptr && in declareStruct()
7618 newLists.output == nullptr) { in declareStruct()
7655 if (newLists.uniform) { in declareStruct()
7663 newLists.uniform->push_back(newUniformMember); in declareStruct()
7665 if (newLists.input) { in declareStruct()
7668 newLists.input->push_back(newInputMember); in declareStruct()
7670 if (newLists.output) { in declareStruct()
7673 newLists.output->push_back(newOutputMember); in declareStruct()
7679 ioTypeMap[type.getStruct()] = newLists; in declareStruct()
9837 const auto newLists = ioTypeMap.find(retType->getStruct()); in addPatchConstantInvocation() local
9838 if (newLists != ioTypeMap.end()) in addPatchConstantInvocation()
9839 outType.setStruct(newLists->second.output); in addPatchConstantInvocation()