Symbol: Field
games/robots/extern.c
63
char Field[Y_FIELDSIZE][X_FIELDSIZE]; /* the playing field itself */
games/robots/make_level.c
59
if (Field[i][x] != 0)
games/robots/make_level.c
71
memset(Field, 0, sizeof Field);
games/robots/make_level.c
84
Field[cp->y][cp->x]++;
games/robots/move.c
238
if (Field[newpos.y][newpos.x] > 0)
games/robots/move.c
260
Field[newpos.y][newpos.x] > 0 || eaten(&newpos)) {
games/robots/move.c
298
if (Field[y][x] == 1)
games/robots/move_robs.c
67
Field[rp->y][rp->x]--;
games/robots/move_robs.c
78
Field[rp->y][rp->x]++;
games/robots/move_robs.c
90
else if (Field[rp->y][rp->x] > 1) {
games/robots/play_level.c
81
if (Field[My_pos.y][My_pos.x] != 0)
games/robots/rnd_pos.c
61
} while (Field[pos.y][pos.x] != 0);
games/robots/robots.h
96
extern char Cnt_move, Field[Y_FIELDSIZE][X_FIELDSIZE], Run_ch;
lib/libc/compat/net/compat_ns_addr.c
53
static void Field(char *, uint8_t *, int);
lib/libc/compat/net/compat_ns_addr.c
89
Field(buf, addr.x_net.c_net, 4);
lib/libc/compat/net/compat_ns_addr.c
96
Field(socketname, (uint8_t *)(void *)&addr.x_port, 2);
lib/libc/compat/net/compat_ns_addr.c
99
Field(hostname, addr.x_host.c_host, 6);
libexec/ftpd/conf.c
189
#define CONF_FLAG(Field) \
libexec/ftpd/conf.c
193
CURCLASS_FLAGS_CLR(Field); \
libexec/ftpd/conf.c
195
CURCLASS_FLAGS_SET(Field); \
libexec/ftpd/conf.c
198
#define CONF_STRING(Field) \
libexec/ftpd/conf.c
204
REASSIGN(curclass.Field, arg); \
libexec/ftpd/conf.c
207
#define CONF_LL(Field,Arg,Min,Max) \
libexec/ftpd/conf.c
211
llval = strsuftollx(#Field, Arg, Min, Max, \
libexec/ftpd/conf.c
218
curclass.Field = llval; \