Lines Matching refs:SSID
53 getSyncScopeInclusionOrdering(SyncScope::ID SSID) const { in getSyncScopeInclusionOrdering() argument
54 if (SSID == SyncScope::SingleThread || in getSyncScopeInclusionOrdering()
55 SSID == getSingleThreadOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
57 else if (SSID == getWavefrontSSID() || in getSyncScopeInclusionOrdering()
58 SSID == getWavefrontOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
60 else if (SSID == getWorkgroupSSID() || in getSyncScopeInclusionOrdering()
61 SSID == getWorkgroupOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
63 else if (SSID == getAgentSSID() || in getSyncScopeInclusionOrdering()
64 SSID == getAgentOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
66 else if (SSID == SyncScope::System || in getSyncScopeInclusionOrdering()
67 SSID == getSystemOneAddressSpaceSSID()) in getSyncScopeInclusionOrdering()
75 bool isOneAddressSpace(SyncScope::ID SSID) const { in isOneAddressSpace() argument
76 return SSID == getSingleThreadOneAddressSpaceSSID() || in isOneAddressSpace()
77 SSID == getWavefrontOneAddressSpaceSSID() || in isOneAddressSpace()
78 SSID == getWorkgroupOneAddressSpaceSSID() || in isOneAddressSpace()
79 SSID == getAgentOneAddressSpaceSSID() || in isOneAddressSpace()
80 SSID == getSystemOneAddressSpaceSSID(); in isOneAddressSpace()