Lines Matching refs:SSID
55 Optional<uint8_t> getSyncScopeInclusionOrdering(SyncScope::ID SSID) const { in getSyncScopeInclusionOrdering() argument
56 if (SSID == SyncScope::SingleThread || in getSyncScopeInclusionOrdering()
57 SSID == getSingleThreadOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
59 else if (SSID == getWavefrontSSID() || in getSyncScopeInclusionOrdering()
60 SSID == getWavefrontOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
62 else if (SSID == getWorkgroupSSID() || in getSyncScopeInclusionOrdering()
63 SSID == getWorkgroupOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
65 else if (SSID == getAgentSSID() || in getSyncScopeInclusionOrdering()
66 SSID == getAgentOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
68 else if (SSID == SyncScope::System || in getSyncScopeInclusionOrdering()
69 SSID == getSystemOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
77 bool isOneAddressSpace(SyncScope::ID SSID) const { in isOneAddressSpace() argument
78 return SSID == getSingleThreadOneAddressSpaceSSID() || in isOneAddressSpace()
79 SSID == getWavefrontOneAddressSpaceSSID() || in isOneAddressSpace()
80 SSID == getWorkgroupOneAddressSpaceSSID() || in isOneAddressSpace()
81 SSID == getAgentOneAddressSpaceSSID() || in isOneAddressSpace()
82 SSID == getSystemOneAddressSpaceSSID(); in isOneAddressSpace()