Home
last modified time | relevance | path

Searched refs:pushback (Results 1 – 11 of 11) sorted by relevance

/freebsd-12.1/contrib/ntp/lib/isc/
H A Dlex.c44 isc_buffer_t * pushback; member
211 source->pushback = NULL; in new_source()
297 isc_buffer_free(&source->pushback); in isc_lex_close()
324 source->pushback->current--; in pushback()
345 isc_buffer_free(&source->pushback); in pushandgrow()
346 source->pushback = tbuf; in pushandgrow()
582 pushback(source, c); in isc_lex_gettoken()
599 pushback(source, c); in isc_lex_gettoken()
654 pushback(source, c); in isc_lex_gettoken()
690 pushback(source, c); in isc_lex_gettoken()
[all …]
/freebsd-12.1/usr.bin/m4/
H A Dmisc.c88 pushback(int c) in pushback() function
138 pushback(digits[num % base]); in pbnumbase()
146 pushback('0'); in pbnumbase()
149 pushback('-'); in pbnumbase()
159 pushback(n % 10 + '0'); in pbunsigned()
H A Dmain.c314 pushback(t); in do_look_ahead()
316 pushback(*--token); in do_look_ahead()
390 pushback(l = gpbc()); in macro()
449 pushback(l); in macro()
476 pushback(l); in macro()
H A Deval.c349 pushback(COMMA); in expand_builtin()
577 pushback(COMMA); in expand_macro()
588 pushback(COMMA); in expand_macro()
910 pushback(*k); in dosub()
H A Dextern.h109 extern void pushback(int);
/freebsd-12.1/usr.bin/join/
H A Djoin.c84 u_long pushback; /* line on the stack */ member
319 F->set[F->setcnt] = F->set[F->pushback]; in slurp()
320 F->set[F->pushback] = tmp; in slurp()
358 F->pushback = F->setcnt; in slurp()
/freebsd-12.1/contrib/gcc/
H A DREADME.Portability162 unsigned char pushback[NPUSHBACK];
164 #define unget(c) (assert(pbidx < NPUSHBACK), pushback[pbidx++] = (c))
165 #define get(c) (pbidx ? pushback[--pbidx] : getchar())
H A DChangeLog-200021741 (_cpp_read_and_prescan): Move shift-down of pushback bytes to
/freebsd-12.1/contrib/tcsh/
H A Dsh.file.c64 static void pushback (const Char *);
214 pushback(const Char *string) in pushback() function
748 pushback(inputline); in tenex()
/freebsd-12.1/contrib/bsnmp/gensnmptree/
H A Dgensnmptree.c713 pushback(enum tok tok) in pushback() function
930 pushback(tok); in parse_top()
/freebsd-12.1/contrib/ncurses/doc/
H A Dhackguide.doc316 capabilities; also to implement pushback via ungetch().