Symbol: nextchar
usr/src/cmd/adbgen/common/adbgen1.c
123
int nextchar(char *cp);
usr/src/cmd/adbgen/common/adbgen1.c
174
while ((c = nextchar(NULL)) != '\n') {
usr/src/cmd/adbgen/common/adbgen1.c
205
while ((c = nextchar(cp)) != EOF) {
usr/src/cmd/adbgen/common/adbgen1.c
336
while ((c = nextchar(NULL)) != '}' || (c == '}' && nesting)) {
usr/src/cmd/ipf/tools/lexer.c
188
nextchar:
usr/src/cmd/ipf/tools/lexer.c
214
goto nextchar;
usr/src/cmd/ipf/tools/lexer.c
226
goto nextchar;
usr/src/cmd/ipf/tools/lexer.c
236
goto nextchar;
usr/src/cmd/ipf/tools/lexer.c
286
goto nextchar;
usr/src/cmd/ipf/tools/lexer.c
486
goto nextchar;
usr/src/grub/grub-0.97/lib/getopt.c
145
static char *nextchar;
usr/src/grub/grub-0.97/lib/getopt.c
404
nextchar = NULL;
usr/src/grub/grub-0.97/lib/getopt.c
545
if (nextchar == NULL || *nextchar == '\0')
usr/src/grub/grub-0.97/lib/getopt.c
618
nextchar = (argv[optind] + 1
usr/src/grub/grub-0.97/lib/getopt.c
649
for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
usr/src/grub/grub-0.97/lib/getopt.c
655
if (!strncmp (p->name, nextchar, nameend - nextchar))
usr/src/grub/grub-0.97/lib/getopt.c
657
if ((unsigned int) (nameend - nextchar)
usr/src/grub/grub-0.97/lib/getopt.c
682
nextchar += strlen (nextchar);
usr/src/grub/grub-0.97/lib/getopt.c
713
nextchar += strlen (nextchar);
usr/src/grub/grub-0.97/lib/getopt.c
729
nextchar += strlen (nextchar);
usr/src/grub/grub-0.97/lib/getopt.c
734
nextchar += strlen (nextchar);
usr/src/grub/grub-0.97/lib/getopt.c
750
|| my_index (optstring, *nextchar) == NULL)
usr/src/grub/grub-0.97/lib/getopt.c
757
argv[0], nextchar);
usr/src/grub/grub-0.97/lib/getopt.c
761
argv[0], argv[optind][0], nextchar);
usr/src/grub/grub-0.97/lib/getopt.c
763
nextchar = (char *) "";
usr/src/grub/grub-0.97/lib/getopt.c
773
char c = *nextchar++;
usr/src/grub/grub-0.97/lib/getopt.c
777
if (*nextchar == '\0')
usr/src/grub/grub-0.97/lib/getopt.c
807
if (*nextchar != '\0')
usr/src/grub/grub-0.97/lib/getopt.c
809
optarg = nextchar;
usr/src/grub/grub-0.97/lib/getopt.c
837
for (nextchar = nameend = optarg; *nameend && *nameend != '='; nameend++)
usr/src/grub/grub-0.97/lib/getopt.c
843
if (!strncmp (p->name, nextchar, nameend - nextchar))
usr/src/grub/grub-0.97/lib/getopt.c
845
if ((unsigned int) (nameend - nextchar) == strlen (p->name))
usr/src/grub/grub-0.97/lib/getopt.c
868
nextchar += strlen (nextchar);
usr/src/grub/grub-0.97/lib/getopt.c
888
nextchar += strlen (nextchar);
usr/src/grub/grub-0.97/lib/getopt.c
902
nextchar += strlen (nextchar);
usr/src/grub/grub-0.97/lib/getopt.c
906
nextchar += strlen (nextchar);
usr/src/grub/grub-0.97/lib/getopt.c
916
nextchar = NULL;
usr/src/grub/grub-0.97/lib/getopt.c
924
if (*nextchar != '\0')
usr/src/grub/grub-0.97/lib/getopt.c
926
optarg = nextchar;
usr/src/grub/grub-0.97/lib/getopt.c
931
nextchar = NULL;
usr/src/grub/grub-0.97/lib/getopt.c
936
if (*nextchar != '\0')
usr/src/grub/grub-0.97/lib/getopt.c
938
optarg = nextchar;
usr/src/grub/grub-0.97/lib/getopt.c
962
nextchar = NULL;
usr/src/lib/libdwarf/common/pro_macinfo.c
121
nextchar =
usr/src/lib/libdwarf/common/pro_macinfo.c
123
*nextchar = code;
usr/src/lib/libdwarf/common/pro_macinfo.c
135
unsigned char *nextchar;
usr/src/lib/libdwarf/common/pro_macinfo.c
137
nextchar =
usr/src/lib/libdwarf/common/pro_macinfo.c
142
memcpy(nextchar, string, len);
usr/src/lib/libdwarf/common/pro_macinfo.c
153
unsigned char *nextchar;
usr/src/lib/libdwarf/common/pro_macinfo.c
157
nextchar =
usr/src/lib/libdwarf/common/pro_macinfo.c
165
(char *) nextchar,
usr/src/lib/libdwarf/common/pro_macinfo.c
64
unsigned char *nextchar;
usr/src/tools/cscope-fast/compath.c
102
nextchar = lastchar - 1;
usr/src/tools/cscope-fast/compath.c
103
sofar = nextchar;
usr/src/tools/cscope-fast/compath.c
104
while ((*nextchar++ = *++lastchar) != '\0')
usr/src/tools/cscope-fast/compath.c
122
nextchar = lastchar - 1;
usr/src/tools/cscope-fast/compath.c
123
while ((nextchar != pathname) &&
usr/src/tools/cscope-fast/compath.c
124
(*(nextchar - 1) != '/'))
usr/src/tools/cscope-fast/compath.c
125
--nextchar;
usr/src/tools/cscope-fast/compath.c
132
if ((*nextchar == '.') &&
usr/src/tools/cscope-fast/compath.c
133
(*(nextchar + 1) == '/') ||
usr/src/tools/cscope-fast/compath.c
134
((*(nextchar + 1) == '.') &&
usr/src/tools/cscope-fast/compath.c
135
(*(nextchar + 2) == '/'))) {
usr/src/tools/cscope-fast/compath.c
154
sofar = nextchar - 1;
usr/src/tools/cscope-fast/compath.c
155
while ((*nextchar++ = *lastchar++) != '\0');
usr/src/tools/cscope-fast/compath.c
50
char *nextchar;
usr/src/tools/cscope-fast/compath.c
75
nextchar = lastchar;
usr/src/tools/cscope-fast/compath.c
84
sofar = nextchar;
usr/src/tools/cscope-fast/compath.c
85
while ((*nextchar++ = *lastchar++) != '\0')
usr/src/tools/smatch/src/tokenize.c
549
next = nextchar(stream);
usr/src/tools/smatch/src/tokenize.c
554
next = nextchar(stream);
usr/src/tools/smatch/src/tokenize.c
586
for (escape = 0; escape || next != delim; next = nextchar(stream)) {
usr/src/tools/smatch/src/tokenize.c
623
return nextchar(stream);
usr/src/tools/smatch/src/tokenize.c
640
return nextchar(stream);
usr/src/tools/smatch/src/tokenize.c
647
switch (nextchar(stream)) {
usr/src/tools/smatch/src/tokenize.c
651
return nextchar(stream);
usr/src/tools/smatch/src/tokenize.c
663
next = nextchar(stream);
usr/src/tools/smatch/src/tokenize.c
670
next = nextchar(stream);
usr/src/tools/smatch/src/tokenize.c
675
return nextchar(stream);
usr/src/tools/smatch/src/tokenize.c
745
next = nextchar(stream);
usr/src/tools/smatch/src/tokenize.c
774
next = nextchar(stream);
usr/src/tools/smatch/src/tokenize.c
778
next = nextchar(stream);
usr/src/tools/smatch/src/tokenize.c
923
next = nextchar(stream);
usr/src/tools/smatch/src/tokenize.c
935
return eat_string(nextchar(stream), stream,
usr/src/tools/smatch/src/tokenize.c
938
return eat_string(nextchar(stream), stream,
usr/src/tools/smatch/src/tokenize.c
957
return get_one_number(c, nextchar(stream), stream);
usr/src/tools/smatch/src/tokenize.c
988
int c = nextchar(stream);
usr/src/tools/smatch/src/tokenize.c
999
c = nextchar(stream);