Symbol: place
bin/pax/getoldopt.c
42
const char *place;
bin/pax/getoldopt.c
72
place = strchr(optstring, c);
bin/pax/getoldopt.c
74
if (place == NULL || c == ':') {
bin/pax/getoldopt.c
79
place++;
bin/pax/getoldopt.c
80
if (*place == ':') {
common/lib/libc/stdlib/getopt.c
103
place = EMSG;
common/lib/libc/stdlib/getopt.c
109
optopt = *place++;
common/lib/libc/stdlib/getopt.c
113
if (*place == 0)
common/lib/libc/stdlib/getopt.c
124
if (*place == 0)
common/lib/libc/stdlib/getopt.c
129
if (*place)
common/lib/libc/stdlib/getopt.c
130
optarg = __UNCONST(place);
common/lib/libc/stdlib/getopt.c
141
place = EMSG;
common/lib/libc/stdlib/getopt.c
150
place = EMSG;
common/lib/libc/stdlib/getopt.c
79
static const char *place = EMSG; /* option letter processing */
common/lib/libc/stdlib/getopt.c
85
if (optreset || *place == 0) { /* update scanning pointer */
common/lib/libc/stdlib/getopt.c
87
place = nargv[optind];
common/lib/libc/stdlib/getopt.c
88
if (optind >= nargc || *place++ != '-') {
common/lib/libc/stdlib/getopt.c
90
place = EMSG;
common/lib/libc/stdlib/getopt.c
93
optopt = *place++;
common/lib/libc/stdlib/getopt.c
94
if (optopt == '-' && *place == 0) {
common/lib/libc/stdlib/getopt.c
97
place = EMSG;
crypto/dist/ipsec-tools/src/racoon/isakmp.c
2462
isakmp_newcookie(caddr_t place, struct sockaddr *remote, struct sockaddr *local)
crypto/dist/ipsec-tools/src/racoon/isakmp.c
2536
memcpy(place, buf2->v, sizeof(cookie_t));
crypto/dist/ipsec-tools/src/racoon/isakmp.c
2538
sa1 = val2str(place, sizeof (cookie_t));
games/adventure/done.c
158
place[water] = 0;
games/adventure/done.c
159
place[oil] = 0;
games/adventure/done.c
69
if (place[i] == 3 && prop[i] == 0)
games/adventure/done.c
95
if (place[magazine] == 108)
games/adventure/hdr.h
129
extern int place[101], prop[101], links[201];
games/adventure/init.c
104
int place[101], prop[101], links[201];
games/adventure/main.c
227
if (place[batter] == 0)
games/adventure/main.c
407
if (place[eggs] == plac[eggs]
games/adventure/main.c
410
if (place[eggs] == 0 && place[troll] == 0 &&
games/adventure/main.c
573
place[obj] = 0;
games/adventure/main.c
609
place[water] = 0;
games/adventure/save.c
520
{place, sizeof(place)},
games/adventure/save.c
639
INTARRAY(place),
games/adventure/subr.c
231
if (tally == tally2 + 1 && k == 0 && place[chest] == 0
games/adventure/subr.c
238
if (place[message] == 0)
games/adventure/subr.c
622
place[k] = -1;
games/adventure/subr.c
634
place[k] = 0;
games/adventure/subr.c
65
if (place[objj] == -1)
games/adventure/subr.c
669
if (place[snake] == plac[snake])
games/adventure/subr.c
74
if (place[objj] == loc || toting(objj))
games/adventure/subr.c
812
if (place[snake] == plac[snake])
games/adventure/subr.c
83
if (place[objj] == loc || fixed[objj] == loc)
games/adventure/subr.c
849
if (place[obj] == plac[dragon] || place[obj] == fixd[dragon])
games/adventure/subr.c
994
place[k] = -1;
games/adventure/vocab.c
100
place[object] = -1;
games/adventure/vocab.c
118
if (place[object] == -1)
games/adventure/vocab.c
120
place[object] = where;
games/adventure/vocab.c
65
i = place[object];
games/adventure/vocab.c
77
from = place[object];
games/adventure/vocab.c
98
if (place[object] == -1)
games/backgammon/common_source/odds.c
101
addon = place + ((board[j] * a > 2 || j == b) ? 5 : 0);
games/backgammon/common_source/odds.c
85
int a, diff, place, addon, menstuck;
games/backgammon/common_source/odds.c
96
place = abs(25 - b - i);
games/phantasia/misc.c
694
writerecord(struct player *playerp, long place)
games/phantasia/misc.c
696
fseek(Playersfp, place, SEEK_SET);
games/tetris/tetris.c
225
place(curshape, pos, 1);
games/tetris/tetris.c
227
place(curshape, pos, 0);
games/tetris/tetris.c
242
place(curshape, pos, 1);
games/tetris/tetris.c
269
place(curshape, pos, 1);
games/tetris/tetris.c
278
place(curshape, pos, 0);
games/tetris/tetris.h
175
void place(const struct shape *, int, int);
lib/libc/stdlib/getopt_long.c
189
if (optreset || !*place) { /* update scanning pointer */
lib/libc/stdlib/getopt_long.c
192
place = EMSG;
lib/libc/stdlib/getopt_long.c
209
if ((*(place = nargv[optind]) != '-')
lib/libc/stdlib/getopt_long.c
210
|| (place[1] == '\0')) { /* found non-option */
lib/libc/stdlib/getopt_long.c
211
place = EMSG;
lib/libc/stdlib/getopt_long.c
243
if (place[1] && *++place == '-') { /* found "--" */
lib/libc/stdlib/getopt_long.c
244
place++;
lib/libc/stdlib/getopt_long.c
248
if ((optchar = (int)*place++) == (int)':' ||
lib/libc/stdlib/getopt_long.c
251
if (!*place)
lib/libc/stdlib/getopt_long.c
260
if (*place)
lib/libc/stdlib/getopt_long.c
264
place = EMSG;
lib/libc/stdlib/getopt_long.c
270
place = nargv[optind];
lib/libc/stdlib/getopt_long.c
278
if (!*place)
lib/libc/stdlib/getopt_long.c
282
if (*place) /* no white space */
lib/libc/stdlib/getopt_long.c
283
optarg = __UNCONST(place);
lib/libc/stdlib/getopt_long.c
287
place = EMSG;
lib/libc/stdlib/getopt_long.c
295
place = EMSG;
lib/libc/stdlib/getopt_long.c
362
current_argv = __UNCONST(place);
lib/libc/stdlib/getopt_long.c
367
place = EMSG;
lib/libc/stdlib/getopt_long.c
93
static const char *place = EMSG; /* option letter processing */
lib/libcompat/regexp/regexp.c
701
char *place;
lib/libcompat/regexp/regexp.c
714
place = opnd; /* Op node, where operand used to be. */
lib/libcompat/regexp/regexp.c
715
*place++ = op;
lib/libcompat/regexp/regexp.c
716
*place++ = '\0';
lib/libcompat/regexp/regexp.c
717
*place++ = '\0';
lib/libcurses/PSD.doc/appen.C
100
is a very good place to use the screen updating routines,
lib/libcurses/PSD.doc/appen.C
111
Programs which flit from one place to another without
sys/arch/m68k/fpsp/l_fpsp.h
108
* monadic emulation code will place the value supplied in d1 back
usr.bin/error/touch.c
607
insert(int place)
usr.bin/error/touch.c
609
--place; /* always insert messages before the offending line */
usr.bin/error/touch.c
610
for (; o_lineno < place; o_lineno++, n_lineno++) {
usr.bin/error/touch.c
774
errorprint(FILE *place, Eptr errorp, bool print_all)
usr.bin/error/touch.c
780
fprintf(place, "[%s] ", lang_table[errorp->error_language].lang_name);
usr.bin/error/touch.c
781
wordvprint(place,errorp->error_lgtext-offset,errorp->error_text+offset);
usr.bin/error/touch.c
782
putc('\n', place);
usr.bin/pr/egetopt.c
104
if ((eoptopt = (unsigned char)*place++) == ':' || eoptopt == '?' ||
usr.bin/pr/egetopt.c
110
if (eoptopt == '-' && !*place)
usr.bin/pr/egetopt.c
114
isdigit((unsigned char)*place)))) {
usr.bin/pr/egetopt.c
118
for (p = place; *p != '\0'; ++p) {
usr.bin/pr/egetopt.c
122
eoptarg = place - 1;
usr.bin/pr/egetopt.c
125
place = EMSG;
usr.bin/pr/egetopt.c
128
place = p;
usr.bin/pr/egetopt.c
130
*place = '\0';
usr.bin/pr/egetopt.c
135
if (!*place)
usr.bin/pr/egetopt.c
151
if (!*place)
usr.bin/pr/egetopt.c
170
if (!*place)
usr.bin/pr/egetopt.c
175
if (*place) {
usr.bin/pr/egetopt.c
179
eoptarg = place;
usr.bin/pr/egetopt.c
189
place = EMSG;
usr.bin/pr/egetopt.c
206
place = EMSG;
usr.bin/pr/egetopt.c
69
static char *place = EMSG; /* option letter processing */
usr.bin/pr/egetopt.c
76
*place = savec;
usr.bin/pr/egetopt.c
80
if (!*place) {
usr.bin/pr/egetopt.c
85
(*(place = nargv[eoptind]) != '-' && *place != '+')) {
usr.bin/pr/egetopt.c
86
place = EMSG;
usr.bin/pr/egetopt.c
90
delim = *place;
usr.bin/pr/egetopt.c
91
if (place[1] && *++place == '-' && !place[1]) {
usr.bin/pr/egetopt.c
96
place = EMSG;