Symbol: beacon
games/atc/grammar.y
177
if (sp->beacon == NULL)
games/atc/grammar.y
178
sp->beacon = malloc((sp->num_beacons + REALLOC)
games/atc/grammar.y
181
sp->beacon = realloc(sp->beacon,
games/atc/grammar.y
184
if (sp->beacon == NULL)
games/atc/grammar.y
187
sp->beacon[sp->num_beacons].x = $2;
games/atc/grammar.y
188
sp->beacon[sp->num_beacons].y = $3;
games/atc/graphics.c
191
wmove(radar, scp->beacon[i].y, scp->beacon[i].x * 2);
games/atc/input.c
105
static const char *beacon(int);
games/atc/input.c
176
state11[] = { { 'b', 8, " beacon #", beacon },
games/atc/input.c
177
{ '*', 8, " beacon #", beacon },
games/atc/input.c
446
xdiff = sp->beacon[c].x - p.xpos;
games/atc/input.c
448
ydiff = sp->beacon[c].y - p.ypos;
games/atc/input.c
458
xdiff = sp->beacon[dest_no].x - sp->beacon[c].x;
games/atc/input.c
459
ydiff = sp->beacon[dest_no].y - sp->beacon[c].y;
games/atc/input.c
462
xdiff = sp->exit[dest_no].x - sp->beacon[c].x;
games/atc/input.c
463
ydiff = sp->exit[dest_no].y - sp->beacon[c].y;
games/atc/input.c
466
xdiff = sp->airport[dest_no].x - sp->beacon[c].x;
games/atc/input.c
467
ydiff = sp->airport[dest_no].y - sp->beacon[c].y;
games/atc/input.c
567
p.new_dir = DIR_FROM_DXDY(sp->beacon[c].x - p.xpos,
games/atc/input.c
568
sp->beacon[c].y - p.ypos);
games/atc/struct.h
67
BEACON *beacon;
games/atc/update.c
113
if (pp->delayd && pp->xpos == sp->beacon[pp->delayd_no].x &&
games/atc/update.c
114
pp->ypos == sp->beacon[pp->delayd_no].y) {
sys/dev/netif/iwi/if_iwi.c
1463
struct iwi_notif_beacon_state *beacon;
sys/dev/netif/iwi/if_iwi.c
1585
beacon = (struct iwi_notif_beacon_state *)(notif + 1);
sys/dev/netif/iwi/if_iwi.c
1588
beacon->state, le32toh(beacon->number)));
sys/dev/netif/iwi/if_iwi.c
1590
if (beacon->state == IWI_BEACON_MISS) {
sys/dev/netif/iwi/if_iwi.c
1598
if (le32toh(beacon->number) >= vap->iv_bmissthreshold) {
sys/dev/netif/iwi/if_iwi.c
1600
le32toh(beacon->number),
sys/dev/netif/iwn/if_iwnreg.h
1426
uint32_t beacon;
sys/netproto/802_11/ieee80211.h
538
#define IEEE80211_BEACON_INTERVAL(beacon) \
sys/netproto/802_11/ieee80211.h
539
((beacon)[8] | ((beacon)[9] << 8))
sys/netproto/802_11/ieee80211.h
540
#define IEEE80211_BEACON_CAPABILITY(beacon) \
sys/netproto/802_11/ieee80211.h
541
((beacon)[10] | ((beacon)[11] << 8))