Home
last modified time | relevance | path

Searched defs:f (Results 101 – 125 of 1452) sorted by relevance

12345678910>>...59

/titanic_51/usr/src/lib/libeti/form/common/
H A Dfield_fore.c39 set_field_fore(FIELD *f, chtype fore) in set_field_fore() argument
54 field_fore(FIELD *f) in field_fore() argument
H A Dfield_init.c39 set_field_init(FORM *f, PTF_void func) in set_field_init() argument
46 field_init(FORM *f) in field_init() argument
H A Dfield_just.c39 set_field_just(FIELD *f, int just) in set_field_just() argument
55 field_just(FIELD *f) in field_just() argument
H A Dfield_pad.c39 set_field_pad(FIELD *f, int pad) in set_field_pad() argument
54 field_pad(FIELD *f) in field_pad() argument
H A Dfield_stat.c39 set_field_status(FIELD *f, int status) in set_field_status() argument
52 field_status(FIELD *f) in field_status() argument
H A Dfield_term.c39 set_field_term(FORM *f, PTF_void func) in set_field_term() argument
46 field_term(FORM *f) in field_term() argument
H A Dfield_user.c39 set_field_userptr(FIELD *f, char *userptr) in set_field_userptr() argument
46 field_userptr(FIELD *f) in field_userptr() argument
H A Dform_init.c39 set_form_init(FORM *f, PTF_void func) in set_form_init() argument
46 form_init(FORM *f) in form_init() argument
H A Dform_sub.c39 set_form_sub(FORM *f, WINDOW *window) in set_form_sub() argument
49 form_sub(FORM *f) in form_sub() argument
H A Dform_term.c43 set_form_term(FORM *f, PTF_void func) in set_form_term() argument
50 form_term(FORM *f) in form_term() argument
H A Dform_user.c39 set_form_userptr(FORM *f, char *userptr) in set_form_userptr() argument
46 form_userptr(FORM *f) in form_userptr() argument
H A Dform_win.c39 set_form_win(FORM *f, WINDOW *window) in set_form_win() argument
49 form_win(FORM *f) in form_win() argument
/titanic_51/usr/src/lib/libast/common/stdio/
H A Dftell.c31 ftell(Sfio_t* f) in ftell()
41 ftell64(Sfio_t* f) in ftell64()
H A Dftello.c31 ftello(Sfio_t* f) in ftello()
41 ftello64(Sfio_t* f) in ftello64()
/titanic_51/usr/src/contrib/ast/src/lib/libast/stdio/
H A Dftell.c31 ftell(Sfio_t* f) in ftell() argument
41 ftell64(Sfio_t* f) in ftell64() argument
H A Dftello.c31 ftello(Sfio_t* f) in ftello() argument
41 ftello64(Sfio_t* f) in ftello64() argument
/titanic_51/usr/src/lib/libast/common/disc/
H A Dsfdctee.c40 static ssize_t teewrite(Sfio_t* f, const Void_t* buf, size_t size, Sfdisc_t* disc) in teewrite()
61 static int teeexcept(Sfio_t* f, int type, Void_t* data, Sfdisc_t* disc) in teeexcept()
77 int sfdctee(Sfio_t* f, Sfio_t* tee) in sfdctee()
/titanic_51/usr/src/contrib/ast/src/lib/libast/disc/
H A Dsfdctee.c40 static ssize_t teewrite(Sfio_t* f, const Void_t* buf, size_t size, Sfdisc_t* disc) in teewrite() argument
61 static int teeexcept(Sfio_t* f, int type, Void_t* data, Sfdisc_t* disc) in teeexcept() argument
77 int sfdctee(Sfio_t* f, Sfio_t* tee) in sfdctee() argument
[all...]
/titanic_51/usr/src/lib/libast/common/sfio/
H A Dsfvscanf.c39 static void _sfbuf(Sfio_t* f, int* peek) in _sfbuf()
65 Sfio_t *f; /* stream being scanned */ member
302 int sfvscanf(Sfio_t* f, reg const char* form, va_list args) in sfvscanf()
342 #define SFbuf(f) (_sfbuf(f,&peek), (data = d = f->next), (endd = f->endb) ) argument
343 #define SFlen(f) (d - data) argument
344 #define SFinit(f) ((peek = f->extent < 0 && (f->flags&SF_SHARE)), SFbuf(f) ) argument
345 #define SFend(f) ((n_input += SFlen(f)), \ argument
347 #define SFgetc(f,c) ((c) = (d < endd || (SFend(f), SFbuf(f), d < endd)) ? \ argument
349 #define SFungetc(f,c) (d -= 1) argument
/titanic_51/usr/src/contrib/ast/src/lib/libast/sfio/
H A Dsfvscanf.c39 static void _sfbuf(Sfio_t* f, int* peek) in _sfbuf() argument
65 Sfio_t *f; /* strea member
300 sfvscanf(Sfio_t * f,reg const char * form,va_list args) sfvscanf() argument
340 SFbuf(f) global() argument
341 SFlen(f) global() argument
342 SFinit(f) global() argument
343 SFend(f) global() argument
345 SFgetc(f,c) global() argument
347 SFungetc(f,c) global() argument
[all...]
/titanic_51/usr/src/lib/libast/amd64/src/lib/libast/
H A Dast_stdio.h119 #define _sf_(f) (f) argument
121 #define _sf_(f) ((struct _sfio_s*)(f)) argument
536 #define feof(f) sfeof(f) argument
537 #define ferror(f) sferror(f) argument
538 #define fileno(f) sffileno(f) argument
539 #define fputc(c,f) sfputc(f,c) argument
540 #define getc(f) sfgetc(f) argument
542 #define putc(c,f) sfputc(f,c) argument
565 #define feof(f) (_sf_(f)->_flags&_SF_EOF) argument
566 #define ferror(f) (_sf_(f)->_flags&_SF_ERROR) argument
[all …]
/titanic_51/usr/src/lib/libast/i386/include/ast/
H A Dast_stdio.h140 #define _sf_(f) (f) argument
142 #define _sf_(f) ((struct _sfio_s*)(f)) argument
557 #define feof(f) sfeof(f) argument
558 #define ferror(f) sferror(f) argument
559 #define fileno(f) sffileno(f) argument
560 #define fputc(c,f) sfputc(f,c) argument
561 #define getc(f) sfgetc(f) argument
563 #define putc(c,f) sfputc(f,c) argument
586 #define feof(f) (_sf_(f)->_flags&_SF_EOF) argument
587 #define ferror(f) (_sf_(f)->_flags&_SF_ERROR) argument
[all …]
/titanic_51/usr/src/lib/libast/amd64/include/ast/
H A Dast_stdio.h140 #define _sf_(f) (f) argument
142 #define _sf_(f) ((struct _sfio_s*)(f)) argument
557 #define feof(f) sfeof(f) argument
558 #define ferror(f) sferror(f) argument
559 #define fileno(f) sffileno(f) argument
560 #define fputc(c,f) sfputc(f,c) argument
561 #define getc(f) sfgetc(f) argument
563 #define putc(c,f) sfputc(f,c) argument
586 #define feof(f) (_sf_(f)->_flags&_SF_EOF) argument
587 #define ferror(f) (_sf_(f)->_flags&_SF_ERROR) argument
[all …]
/titanic_51/usr/src/lib/libast/sparcv9/include/ast/
H A Dast_stdio.h140 #define _sf_(f) (f) argument
142 #define _sf_(f) ((struct _sfio_s*)(f)) argument
557 #define feof(f) sfeof(f) argument
558 #define ferror(f) sferror(f) argument
559 #define fileno(f) sffileno(f) argument
560 #define fputc(c,f) sfputc(f,c) argument
561 #define getc(f) sfgetc(f) argument
563 #define putc(c,f) sfputc(f,c) argument
586 #define feof(f) (_sf_(f)->_flags&_SF_EOF) argument
587 #define ferror(f) (_sf_(f)->_flags&_SF_ERROR) argument
[all …]
/titanic_51/usr/src/lib/libast/i386/src/lib/libast/
H A Dast_stdio.h119 #define _sf_(f) (f) argument
121 #define _sf_(f) ((struct _sfio_s*)(f)) argument
536 #define feof(f) sfeof(f) argument
537 #define ferror(f) sferror(f) argument
538 #define fileno(f) sffileno(f) argument
539 #define fputc(c,f) sfputc(f,c) argument
540 #define getc(f) sfgetc(f) argument
542 #define putc(c,f) sfputc(f,c) argument
565 #define feof(f) (_sf_(f)->_flags&_SF_EOF) argument
566 #define ferror(f) (_sf_(f)->_flags&_SF_ERROR) argument
[all …]

12345678910>>...59