Symbol: beacon
games/atc/grammar.y
182
if (reallocarr(&sp->beacon,
games/atc/grammar.y
186
sp->beacon[sp->num_beacons].x = $2;
games/atc/grammar.y
187
sp->beacon[sp->num_beacons].y = $3;
games/atc/graphics.c
217
(void)wmove(radar, scp->beacon[iu].y, scp->beacon[iu].x * 2);
games/atc/input.c
195
state11[] = { { 'b', 8, " beacon #", beacon },
games/atc/input.c
196
{ '*', 8, " beacon #", beacon },
games/atc/input.c
487
xdiff = sp->beacon[bn].x - p.xpos;
games/atc/input.c
489
ydiff = sp->beacon[bn].y - p.ypos;
games/atc/input.c
499
xdiff = sp->beacon[dest_no].x - sp->beacon[bn].x;
games/atc/input.c
500
ydiff = sp->beacon[dest_no].y - sp->beacon[bn].y;
games/atc/input.c
503
xdiff = sp->exit[dest_no].x - sp->beacon[bn].x;
games/atc/input.c
504
ydiff = sp->exit[dest_no].y - sp->beacon[bn].y;
games/atc/input.c
507
xdiff = sp->airport[dest_no].x - sp->beacon[bn].x;
games/atc/input.c
508
ydiff = sp->airport[dest_no].y - sp->beacon[bn].y;
games/atc/input.c
618
p.new_dir = DIR_FROM_DXDY(sp->beacon[n].x - p.xpos,
games/atc/input.c
619
sp->beacon[n].y - p.ypos);
games/atc/input.c
81
static const char *beacon(int);
games/atc/struct.h
71
BEACON *beacon;
games/atc/update.c
133
if (pp->delayd && pp->xpos == sp->beacon[pp->delayd_no].x &&
games/atc/update.c
134
pp->ypos == sp->beacon[pp->delayd_no].y) {
sys/dev/pci/if_iwi.c
1246
struct iwi_notif_beacon_state *beacon;
sys/dev/pci/if_iwi.c
1343
beacon = (struct iwi_notif_beacon_state *)(notif + 1);
sys/dev/pci/if_iwi.c
1345
if (beacon->state == IWI_BEACON_MISS) {
sys/dev/pci/if_iwi.c
1347
device_xname(sc->sc_dev), le32toh(beacon->number)));
sys/dev/pci/if_iwnreg.h
1244
uint32_t beacon;
sys/net80211/ieee80211.h
443
#define IEEE80211_BEACON_INTERVAL(beacon) \
sys/net80211/ieee80211.h
444
((beacon)[8] | ((beacon)[9] << 8))
sys/net80211/ieee80211.h
445
#define IEEE80211_BEACON_CAPABILITY(beacon) \
sys/net80211/ieee80211.h
446
((beacon)[10] | ((beacon)[11] << 8))