Home
last modified time | relevance | path

Searched refs:ioTypeMap (Results 1 – 2 of 2) sorted by relevance

/external/deqp-deps/glslang/hlsl/
DhlslParseHelper.cpp175 auto it = ioTypeMap.find(memberType.getStruct()); in growGlobalUniformBlock()
176 if (it != ioTypeMap.end() && it->second.uniform) in growGlobalUniformBlock()
2210 auto it = ioTypeMap.find(type.getStruct()); in remapEntryPointIO()
2211 if (it == ioTypeMap.end() || it->second.input == nullptr) { in remapEntryPointIO()
2221 if (it == ioTypeMap.end()) { in remapEntryPointIO()
2223 ioTypeMap[type.getStruct()] = newLists; in remapEntryPointIO()
2249 auto newLists = ioTypeMap.find(ioVariable->getType().getStruct()); in remapEntryPointIO()
2250 if (newLists != ioTypeMap.end()) { in remapEntryPointIO()
7608 auto it = ioTypeMap.find(member->type->getStruct()); in declareStruct()
7609 if (it != ioTypeMap.end()) { in declareStruct()
[all …]
DhlslParseHelper.h393 TMap<const TTypeList*, tIoKinds> ioTypeMap; variable