Lines Matching defs:SSID
50 /// \returns \p SSID's inclusion ordering, or "std::nullopt" if \p SSID is not
53 getSyncScopeInclusionOrdering(SyncScope::ID SSID) const {
54 if (SSID == SyncScope::SingleThread ||
55 SSID == getSingleThreadOneAddressSpaceSSID())
57 else if (SSID == getWavefrontSSID() ||
58 SSID == getWavefrontOneAddressSpaceSSID())
60 else if (SSID == getWorkgroupSSID() ||
61 SSID == getWorkgroupOneAddressSpaceSSID())
63 else if (SSID == getAgentSSID() ||
64 SSID == getAgentOneAddressSpaceSSID())
66 else if (SSID == SyncScope::System ||
67 SSID == getSystemOneAddressSpaceSSID())
73 /// \returns True if \p SSID is restricted to single address space, false
75 bool isOneAddressSpace(SyncScope::ID SSID) const {
76 return SSID == getSingleThreadOneAddressSpaceSSID() ||
77 SSID == getWavefrontOneAddressSpaceSSID() ||
78 SSID == getWorkgroupOneAddressSpaceSSID() ||
79 SSID == getAgentOneAddressSpaceSSID() ||
80 SSID == getSystemOneAddressSpaceSSID();