Home
last modified time | relevance | path

Searched refs:SSID (Results 1 – 25 of 71) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMachineModuleInfo.h53 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()
[all …]
H A DSIMemoryLegalizer.cpp231 toSIAtomicScope(SyncScope::ID SSID, SIAtomicAddrSpace InstrAddrSpace) const;
761 SIMemOpAccess::toSIAtomicScope(SyncScope::ID SSID, in toSIAtomicScope() argument
763 if (SSID == SyncScope::System) in toSIAtomicScope()
765 if (SSID == MMI->getAgentSSID()) in toSIAtomicScope()
767 if (SSID == MMI->getWorkgroupSSID()) in toSIAtomicScope()
770 if (SSID == MMI->getWavefrontSSID()) in toSIAtomicScope()
773 if (SSID == SyncScope::SingleThread) in toSIAtomicScope()
776 if (SSID == MMI->getSystemOneAddressSpaceSSID()) in toSIAtomicScope()
779 if (SSID == MMI->getAgentOneAddressSpaceSSID()) in toSIAtomicScope()
782 if (SSID == MMI->getWorkgroupOneAddressSpaceSSID()) in toSIAtomicScope()
[all …]
/freebsd/tools/tools/net80211/scripts/
H A Dsetup.wpa1.aes11 SSID=$SSID-wpa
39 ifconfig $WLAN ssid $SSID
H A Dsetup.wpa1.tkip11 SSID=$SSID-wpa
39 ifconfig $WLAN ssid $SSID
H A Dsetup.wpa211 SSID=$SSID-wpa
40 ifconfig $WLAN ssid $SSID
H A Dsetup.wpa12 SSID=$SSID-wpa
39 ifconfig $WLAN ssid $SSID
H A Dsetup.wpa2.tkip11 SSID=$SSID-wpa
40 ifconfig $WLAN ssid $SSID
H A Dsetup.tsn10 SSID=$SSID-tsn
40 ifconfig $WLAN ssid $SSID
H A Dsetup.updown.wpa12 SSID=$SSID-wpa
40 ifconfig $WLAN ssid $SSID channel $CHANNEL mtu 1500
H A Dsetup.sta9 SSID=${1:-MarvellAP8x}
13 ifconfig $WLAN ssid $SSID up
H A Dsetup.tdma-slave9 SSID='freebsd+tdma'
12 ifconfig $WLAN ssid "$SSID"
H A Dsetup.tdma-master9 SSID='freebsd+tdma'
12 ifconfig $WLAN ssid "$SSID" tdmaslot 0 channel $CHANNEL
H A Dsetup.simple211 ifconfig $WLAN ssid $SSID-1 channel $CHANNEL mtu 1500
20 ifconfig $WLAN ssid $SSID-2 mtu 1500 -ht
H A Dsetup.wdsmain29 SSID='freebsd+wdsmain'
34 ifconfig $WLAN_AP ssid "$SSID" channel $CHANNEL mtu 1500
H A Dsetup.mixed12 WPA_SSID=$SSID-wpa
47 ifconfig $OPEN_WLAN ssid $SSID
H A Dconfig49 test -z "$SSID" && SSID=freebsd-ap
H A Dsetup.local10 ifconfig $WLAN ssid $SSID channel $CHANNEL mtu 1500
H A Dsetup.simple10 ifconfig $WLAN ssid $SSID channel $CHANNEL mtu 1500
H A Dsetup.fixed10 ifconfig $WLAN ssid $SSID channel $CHANNEL mtu 1500
/freebsd/contrib/wpa/wpa_supplicant/doc/docbook/
H A Dwpa_passphrase.sgml14 <refpurpose>Generate a WPA PSK from an ASCII passphrase for a SSID</refpurpose>
30 and SSID are used to generate a 256-bit PSK.</para>
39 <para>The SSID whose passphrase should be derived.</para>
H A Dwpa_cli.sgml97 CTRL-REQ-PASSWORD-1:Password needed for SSID foobar
104 CTRL-REQ-OTP-2:Challenge 1235663 needed for SSID foobar
289 <para>configure identity for an SSID</para>
296 <para>configure password for an SSID</para>
303 <para>configure pin for an SSID</para>
310 <para>configure one-time-password for an SSID</para>
317 <para>set preferred BSSID for an SSID</para>
/freebsd/tools/tools/net80211/mlme_assoc/
H A DREADME34 interface name, an SSID and a BSSID.
36 In the former case of no SSID/BSSID passed it will query the scan results and
39 In the lastter case giving the SSID/BSSID one can trigger the "canreassoc" case
41 associated SSID/BSSID or not.
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineMemOperand.h163 unsigned SSID : 8; // SyncScope::ID member
193 SyncScope::ID SSID = SyncScope::System,
199 SyncScope::ID SSID = SyncScope::System,
272 return static_cast<SyncScope::ID>(AtomicInfo.SSID); in getSyncScopeID()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstructions.h199 SyncScope::ID SSID = SyncScope::System,
229 return SSID; in getSyncScopeID()
233 void setSyncScopeID(SyncScope::ID SSID) { in setSyncScopeID() argument
234 this->SSID = SSID; in setSyncScopeID()
240 SyncScope::ID SSID = SyncScope::System) {
242 setSyncScopeID(SSID);
282 SyncScope::ID SSID; variable
313 AtomicOrdering Order, SyncScope::ID SSID = SyncScope::System,
350 return SSID; in getSyncScopeID()
354 void setSyncScopeID(SyncScope::ID SSID) { in setSyncScopeID() argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOperand.cpp528 SyncScope::ID SSID, in printSyncScope() argument
530 switch (SSID) { in printSyncScope()
538 printEscapedString(SSNs[SSID], OS); in printSyncScope()
1086 const MDNode *Ranges, SyncScope::ID SSID, in MachineMemOperand() argument
1096 AtomicInfo.SSID = static_cast<unsigned>(SSID); in MachineMemOperand()
1097 assert(getSyncScopeID() == SSID && "Value truncated"); in MachineMemOperand()
1107 const MDNode *Ranges, SyncScope::ID SSID, in MachineMemOperand() argument
1116 BaseAlignment, AAInfo, Ranges, SSID, Ordering, FailureOrdering) {} in MachineMemOperand()

123