HomeSort by relevance Sort by last modified time
    Searched refs:lex (Results 1 - 25 of 61) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/lib/libast/common/string/
strtoip6.c 54 static unsigned char lex[256]; local
56 if (!lex[0])
58 for (c = 0; c < sizeof(lex); ++c)
59 lex[c] = END;
60 lex['0'] = 0;
61 lex['1'] = 1;
62 lex['2'] = 2;
63 lex['3'] = 3;
64 lex['4'] = 4;
65 lex['5'] = 5
    [all...]
  /onnv/onnv-gate/usr/src/lib/libpp/common/
pptrace.c 112 * return string given fsm lex state
116 pplexstr(register int lex)
122 if (lex < 0) lex &= ~lex;
123 splice = (lex & SPLICE);
124 lex &= 0x7f;
125 for (i = 0; i < (elementsof(pplexmap) - 1) && (lex > pplexmap[i].val || lex == pplexmap[i+1].val); i++);
126 if (lex != pplexmap[i].val
    [all...]
  /onnv/onnv-gate/usr/src/cmd/agents/snmp/agent/
Makefile.com 41 CLEANFILES += personal.c personal.lex.c
61 personal.lex.c: ../personal.l
62 $(LEX.l) ../personal.l > personal.lex.c
64 pics/personal.o: personal.c personal.lex.c
  /onnv/onnv-gate/usr/src/grub/grub-0.97/
missing 82 flex create \`lex.yy.c', if possible, from existing .c
84 lex create \`lex.yy.c', if possible, from existing .c
110 lex|yacc)
240 lex|flex)
246 rm -f lex.yy.c
253 cp "$SRCFILE" lex.yy.c
258 if [ ! -f lex.yy.c ]; then
259 echo 'main() { return 0; }' >lex.yy.c
  /onnv/onnv-gate/usr/src/cmd/fs.d/cachefs/cachefspack/
rules.c 42 char * lex(FILE *);
64 while (s = lex(file)) {
129 s = lex(0);
166 while ((s = lex(0))
175 while ((s = lex(0)) != 0) {
194 while ((s = lex(0)) != 0) {
202 s = lex(0);
281 while (s = lex(fd)) {
283 while (s = lex(0)) {
310 while (s = lex(0))
337 lex(FILE *fd) function
    [all...]
  /onnv/onnv-gate/usr/src/cmd/filesync/
base.c 357 s = lex(file);
367 s = lex(0);
388 s = lex(0);
398 s = lex(0);
422 s = lex(0); /* level */
429 s = lex(0); /* type */
437 s = lex(0); /* name */
463 s = lex(0); /* modes */
470 s = lex(0); /* uid */
477 s = lex(0); /* gid *
    [all...]
rules.c 123 s = lex(file);
134 s1 = lex(0);
139 s2 = lex(0);
162 s = lex(0);
175 s = lex(0);
184 s = lex(0);
200 s = lex(0);
207 s = lex(0);
242 * to lex a runnable command (! lines) into a buffer
252 * this is necessary because lex has already choped of
    [all...]
filesync.h 152 char *lex(FILE *); /* lex off one token */
  /onnv/onnv-gate/usr/src/cmd/sgs/librtld_db/rdb_demo/
Makefile.targ 52 lex.c: ../common/lex.l
53 $(LEX) ../common/lex.l
54 $(MV) lex.yy.c lex.c
Makefile.com 38 COMSRC= bpt.c dis.c main.c ps.c gram.c lex.c globals.c help.c \
42 BLTSRC= gram.c lex.c
  /onnv/onnv-gate/usr/src/cmd/fs.d/udfs/fsdb/
Makefile 36 MAPFILES += $(MAPFILE.INT) $(MAPFILE.LEX) $(MAPFILE.NGB)
73 lex.yy.c : fsdb_lex.l
74 $(LEX) -e fsdb_lex.l
76 fsdb_lex.o : lex.yy.c
77 $(COMPILE.c) -o $@ lex.yy.c
82 $(RM) fsdb_yacc.c fsdb_lex.c y.tab.c y.tab.h lex.yy.c
92 CATSRCS= $(SRCS) lex.yy.c y.tab.c
101 lint: y.tab.c lex.yy.c
  /onnv/onnv-gate/usr/src/cmd/genmsg/
Makefile 37 LEXINTSRCS= lex.yy.c
38 LEXOBJS= lex.yy.o
44 # lex and yacc generates lint-unclean C code.
55 MAPFILES += $(MAPFILE.LEX) $(MAPFILE.NGB)
75 $(LEX) $(LEXARGS) $(LEXSRCS)
81 $(OBJS): y.tab.h lex.yy.c
  /onnv/onnv-gate/usr/src/lib/libfru/
Makefile.targ 46 # some special rules for the yacc and lex parser. (with sub directories)
57 $(LEX.l) ../libfru/nameSyntaxLex.l | \
58 $(SED) -f ../libfru/yy-lsed > pics/lex.fru.cc
59 $(COMPILE.cc) -I../libfru -Ipics -o $@ pics/lex.fru.cc
Makefile.flag 44 CLEANFILES += pics/lex.fru.cc pics/y.tab.cc pics/y.tab.h
  /onnv/onnv-gate/usr/src/lib/libast/common/tm/
tmdata.c 101 * format[] lex type classes
104 static unsigned char lex[] = variable
282 Tm_data_t _tm_data_ = { format, lex, digit, days, sum, leap, zone };
  /onnv/onnv-gate/usr/src/cmd/bart/
rules.c 42 static char *lex(FILE *);
442 s = lex(file);
467 s = lex(0);
470 s = lex(0);
495 s = lex(0);
531 s = lex(0);
535 s = lex(0);
538 s = lex(0);
810 lex(FILE *file) function
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
CC.pm 216 my $lex;
217 foreach $lex (@pad) {
218 next unless ref($lex);
219 $lex->write_back unless $lex->{flags} & $avoid;
226 foreach my $lex (@pad) {
227 next unless ref($lex);
228 ${$lexstate{$bblock}}{$lex->{iv}} = $lex->{flags} ;
232 foreach my $lex (@pad)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/agents/snmp/snmprelayd/
Makefile 120 MAPFILES += $(MAPFILE.INT) $(MAPFILE.LEX) $(MAPFILE.NGB)
171 ${BIN}/config.lex.c: config.l
172 $(LEX.l) config.l > ${BIN}/config.lex.c
174 $(BIN)/config.o: ${BIN}/config.c ${BIN}/config.lex.c
220 $(RM) $(BIN)/config.lex.c $(BIN)/config.c $(BIN)/config.o
  /onnv/onnv-gate/usr/src/lib/libshell/common/sh/
lex.c 111 struct lexstate lex;
239 lp->lex = savelex.lex;
267 lp->lex.intest = lp->lex.incase = lp->lex.skipword = lp->lexd.warn = 0;
269 lp->lex.reservok = 1;
328 if(lp->lex.incase)
331 lp->assignok |= lp->lex.reservok;
333 lp->comp_assign = lp->lex.reservok = 0
    [all...]
  /onnv/onnv-gate/usr/src/cmd/oawk/
README 106 lex awk.lx.l
107 cc -O -c lex.yy.c
108 mv lex.yy.o awk.lx.o
  /onnv/onnv-gate/usr/src/cmd/csh/i386/
Makefile 38 sh.func.o sh.glob.o sh.hist.o sh.init.o sh.lex.o sh.misc.o \
43 sh.lex.o sh.misc.o sh.parse.o sh.print.o sh.proc.o sh.sem.o sh.set.o \
  /onnv/onnv-gate/usr/src/cmd/csh/sparc/
Makefile 38 sh.func.o sh.glob.o sh.hist.o sh.init.o sh.lex.o sh.misc.o \
43 sh.lex.o sh.misc.o sh.parse.o sh.print.o sh.proc.o sh.sem.o sh.set.o \
  /onnv/onnv-gate/usr/src/cmd/sgs/
Makefile 68 lex \
145 @ cd lex; pwd; $(MAKE) $@
  /onnv/onnv-gate/usr/src/cmd/eqn/eqn.d/
Makefile 15 glob.c integral.c io.c lex.c lookup.c \
  /onnv/onnv-gate/usr/src/cmd/eqn/neqn.d/
Makefile 15 glob.c integral.c io.c lex.c lookup.c \

Completed in 1440 milliseconds

1 2 3