/src/games/hack/ |
hack.wield.c | 81 struct obj *wep; local in function:dowield 85 if (!(wep = getobj("#-)", "wield"))) /* nothing */ 87 else if (uwep == wep) 92 else if (wep == &zeroobj) { 100 } else if (uarms && wep->otyp == TWO_HANDED_SWORD) 102 else if (wep->owornmask & (W_ARMOR | W_RING)) 105 setuwep(wep);
|
/src/sys/dev/wscons/ |
wsemulconf.c | 70 struct wsemulentry *wep; local in function:wsemul_pick 81 LIST_FOREACH(wep, &wsemuls, next) 82 if (!strcmp(name, wep->ops->name)) { 83 wep->usecnt++; 84 return wep->ops; 97 struct wsemulentry *wep; local in function:wsemul_drop 99 LIST_FOREACH(wep, &wsemuls, next) 100 if (ops == wep->ops) { 101 wep->usecnt--; 109 struct wsemulentry *wep; local in function:wsemul_add 121 struct wsemulentry *wep; local in function:wsemul_remove [all...] |
/src/sys/dev/mca/ |
if_we_mca.c | 131 const struct we_mca_product *wep; local in function:we_mca_lookup 133 for(wep = we_mca_products; wep->we_name; wep++) 134 if (wep->we_id == id) 135 return (wep); 154 const struct we_mca_product *wep; local in function:we_mca_attach 213 wep = we_mca_lookup(ma->ma_id); 215 if (wep == NULL) { 222 if (wep->we_flag & WD_8003) [all...] |
/src/sys/net80211/ |
ieee80211_crypto_wep.c | 43 * IEEE 802.11 WEP crypto support. 69 .ic_name = "WEP", 83 #define wep ieee80211_cipher_wep macro 142 * for WEP. And the IV may be duplicated at other stations 150 * WEP this seems worthwhile. 221 "[%s] WEP ICV mismatch on decrypt\n", 230 memmove(mtod(m, u_int8_t *) + wep.ic_header, mtod(m, void *), hdrlen); 231 m_adj(m, wep.ic_header); 232 m_adj(m, -wep.ic_trailer); 335 off = hdrlen + wep.ic_header [all...] |
/src/lib/libedit/ |
vi.c | 1091 const wchar_t *wep, *wsp; local in function:vi_history_word 1099 wep = wsp = NULL; 1108 wep = wp; 1116 len = (int)(wep - wsp); 1124 while (wsp < wep && cp < lim)
|