Searched defs:chcount (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Ddoscan.c42 #define locgetc() (chcount+=1,getc(iop))
43 #define locungetc(x) (chcount-=1,ungetc(x,iop))
45 static int chcount,flag_eof; variable
88 chcount=0; flag_eof=0;
106 chcount--;
122 chcount--;
174 *va_arg(va_alist, short *) = (short) chcount;
176 *va_arg(va_alist, long *) = (long) chcount;
178 *va_arg(va_alist, int *) = (int) chcount;
237 chcount
[all...]
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Ddoscan.c143 int chcount, flag_eof; local
182 chcount = 0; flag_eof = 0;
199 _wd_getwc(&chcount, iop)))
201 if (_wd_ungetwc(&chcount, inchar, iop) == WEOF)
210 _wd_getwc(&chcount, iop)))
212 if (_wd_ungetwc(&chcount, inchar, iop)
217 if ((inchar = _wd_getwc(&chcount, iop)) == ch)
219 if (_wd_ungetwc(&chcount, inchar, iop) != WEOF) {
227 while (isspace(inchar = locgetc(chcount)))
229 if (locungetc(chcount, incha
600 number(int *chcount, int *flag_eof, int stow, int type, int len, int size, FILE *iop, va_list *listp) argument
828 readchar(FILE *iop, int *chcount) argument
845 string(int *chcount, int *flag_eof, int stow, int type, int len, char *tab, FILE *iop, va_list *listp) argument
976 wstring(int *chcount, int *flag_eof, int stow, int type, int len, FILE *iop, va_list *listp) argument
1012 wstring(int *chcount, int *flag_eof, int stow, int type, int len, FILE *iop, va_list *listp) argument
1049 _wd_getwc(int *chcount, FILE *iop) argument
1074 _wd_ungetwc(int *chcount, wchar_t wc, FILE *iop) argument
1122 wbrstring(int *chcount, int *flag_eof, int stow, int type, int len, FILE *iop, unsigned char *brstr, va_list *listp) argument
1186 brstring(int *chcount, int *flag_eof, int stow, int type, int len, FILE *iop, unsigned char *brstr, va_list *listp) argument
[all...]
/illumos-gate/usr/src/cmd/ed/
H A Ded.c2650 int chcount; /* # of char read. */ local
2661 chcount = read(io, crbuf, LBSIZE);
2663 if (isencrypt(crbuf, chcount))
2669 if (run_crypt(0L, crbuf, chcount, perm) == -1)

Completed in 81 milliseconds