Searched refs:ebuf (Results 1 – 4 of 4) sorted by relevance
/ndk/sources/host-tools/make-3.81/ |
D | read.c | 129 static long readline PARAMS ((struct ebuffer *ebuf)); 132 struct ebuffer *ebuf)); 303 struct ebuffer ebuf; in eval_makefile() local 310 ebuf.floc.filenm = strcache_add (filename); in eval_makefile() 311 ebuf.floc.lineno = 1; in eval_makefile() 338 ebuf.fp = fopen (filename, "r"); in eval_makefile() 345 if (ebuf.fp == 0 && (flags & RM_INCLUDED) && *filename != '/') in eval_makefile() 351 ebuf.fp = fopen (included, "r"); in eval_makefile() 352 if (ebuf.fp) in eval_makefile() 383 if (ebuf.fp == 0) in eval_makefile() [all …]
|
/ndk/sources/host-tools/nawk-20071023/ |
D | lex.c | 538 char ebuf[300]; variable 539 char *ep = ebuf; 560 if (ep >= ebuf + sizeof ebuf) in input() 561 ep = ebuf; in input() 572 if (--ep < ebuf) in unput() 573 ep = ebuf + sizeof(ebuf) - 1; in unput()
|
D | lib.c | 607 extern char ebuf[], *ep; in eprint() 612 if (p > ebuf && *p == '\n') in eprint() 614 for ( ; p > ebuf && *p != '\n' && *p != '\0'; p--) in eprint() 635 ep = ebuf; in eprint()
|
/ndk/sources/android/support/src/stdio/ |
D | vfprintf.c | 239 char ebuf0[3*sizeof(int)], *ebuf=&ebuf0[3*sizeof(int)], *estr; in fmt_fp() local 286 estr=fmt_u(e2<0 ? -e2 : e2, ebuf); in fmt_fp() 287 if (estr==ebuf) *--estr='0'; in fmt_fp() 300 l = (p+2) + (ebuf-estr); in fmt_fp() 302 l = (s-buf) + (ebuf-estr); in fmt_fp() 308 pad(f, '0', l-(ebuf-estr)-(s-buf), 0, 0); in fmt_fp() 309 out(f, estr, ebuf-estr); in fmt_fp() 414 estr=fmt_u(e<0 ? -e : e, ebuf); in fmt_fp() 415 while(ebuf-estr<2) *--estr='0'; in fmt_fp() 418 l += ebuf-estr; in fmt_fp() [all …]
|