Home
last modified time | relevance | path

Searched defs:f (Results 1 – 25 of 1207) sorted by relevance

12345678910>>...49

/titanic_41/usr/src/lib/libeti/form/inc/
H A Dutility.h68 #define Status(f, s) ((f) -> status & (s)) argument
69 #define Set(f, s) ((f) -> status |= (s)) argument
70 #define Clr(f, s) ((f) -> status &= ~(s)) argument
72 #define Opt(f, x) ((f) -> opts & (x)) argument
79 #define MakeArg(f, p, err) (_makearg((f) -> type, p, err)) argument
80 #define CopyArg(f, err) (_copyarg((f) -> type, (f) -> arg, err)) argument
81 #define FreeArg(f) (_freearg((f) -> type, (f) -> arg)) argument
82 #define CheckField(f) (_checkfield((f) -> type, (f), (f) -> arg)) argument
83 #define CheckChar(f, c) (_checkchar((f) -> type, (c), (f) -> arg)) argument
84 #define NextChoice(f) (_nextchoice((f) -> type, (f), (f) -> arg)) argument
[all …]
/titanic_41/usr/src/lib/libeti/form/common/
H A Dchg_field.c38 #define first(f) (f->field [Pmin(f, P(f))]) argument
39 #define last(f) (f->field [Pmax(f, P(f))]) argument
40 #define sfirst(f) (f->field [Smin(f, P(f))]) argument
41 #define slast(f) (f->field [Smax(f, P(f))]) argument
43 #define Active(f) (Opt(f, O_ACTIVE) && Opt(f, O_VISIBLE)) argument
47 next(FIELD *f) in next()
64 prev(FIELD *f) in prev()
81 snext(FIELD *f) in snext()
95 sprev(FIELD *f) in sprev()
109 left(FIELD *f) in left()
[all …]
H A Dchg_char.c38 #define SizePrev(f, v) ((v) - Buf(f)) /* from beginning to v */ argument
39 #define SizeNext(f, v) (BufSize(f) - SizePrev(f, v)) argument
46 _next_char(FORM *f) in _next_char()
64 _prev_char(FORM *f) in _prev_char()
79 _next_line(FORM *f) in _next_line()
91 _prev_line(FORM *f) in _prev_line()
103 _next_word(FORM *f) in _next_word()
143 _prev_word(FORM *f) in _prev_word()
163 _beg_field(FORM *f) in _beg_field()
174 _end_field(FORM *f) in _end_field()
[all …]
H A Dchg_page.c38 #define first(f) (0) argument
39 #define last(f) (f->maxpage - 1) argument
43 next(FORM *f) in next()
54 prev(FORM *f) in prev()
64 _next_page(FORM *f) in _next_page()
70 _prev_page(FORM *f) in _prev_page()
76 _first_page(FORM *f) in _first_page()
82 _last_page(FORM *f) in _last_page()
H A Dchg_data.c39 #define AT_BOTTOM(f) (Y(f) == Ymax(f) - 1) /* last line */ argument
40 #define AT_END(f) (Y(f) == Ymax(f) - 1 && X(f) == Xmax(f) - 1) argument
42 #define AT_BEGINNING(f) (Y(f) == 0 && X(f) == 0) /* first char */ argument
45 room_for_line(FORM *f) in room_for_line()
55 room_for_char(FORM *f) in room_for_char()
84 FORM *f = c->form; in _grow_field() local
174 insert_str(FORM *f, int y, int off, int nstr) /* used for word wrapping */ in insert_str()
220 wrap_ok(FORM *f) /* used for word wrapping */ in wrap_ok()
275 _new_line(FORM *f) in _new_line()
357 _ins_char(FORM *f) in _ins_char()
[all …]
H A Dutility.c38 #define Scrollable(f) ((f)->drows > (f)->rows || \ argument
40 #define Connected(f) ((f) -> form != (FORM *) 0) argument
41 #define OnPage(f) ((f) -> page == P((f) -> form)) argument
42 #define Posted(f) (Status((f) -> form, POSTED)) argument
43 #define Visible(f) (Opt(f, O_VISIBLE) && OnPage(f)) argument
44 #define isCurrent(f) ((f) == C((f) -> form)) argument
45 #define Justified(f) (Just(f) != NO_JUSTIFICATION && \ argument
93 _adjust_cursor(FORM *f, char *v) in _adjust_cursor()
109 _buf_to_win(FIELD *f, WINDOW *w) in _buf_to_win()
127 _win_to_buf(WINDOW *w, FIELD *f) in _win_to_buf()
[all …]
H A Dpost.c39 post_form(FORM *f) in post_form()
70 unpost_form(FORM *f) in unpost_form()
92 pos_form_cursor(FORM *f) in pos_form_cursor()
104 set_current_field(FORM *f, FIELD *c) in set_current_field()
143 current_field(FORM *f) in current_field()
149 field_index(FIELD *f) in field_index()
158 set_form_page(FORM *f, int page) in set_form_page()
193 form_page(FORM *f) in form_page()
H A Dfield.c88 MakeType(FIELD *f, va_list *ap) in MakeType()
109 CopyType(FIELD *f, FIELD *fsrc) in CopyType()
131 FreeType(FIELD *f) in FreeType()
151 FIELD *f = (FIELD *) 0; in new_field() local
195 FIELD *f = (FIELD *) 0; in dup_field() local
244 FIELD *f = (FIELD *) 0; in link_field() local
283 free_field(FIELD *f) in free_field()
310 field_info(FIELD *f, int *rows, int *cols, int *frow, int *fcol, in field_info()
338 set_max_field(FIELD *f, int max) in set_max_field()
362 dynamic_field_info(FIELD *f, int *drows, int *dcols, int *max) in dynamic_field_info()
[all …]
H A Dform.c77 insert(FIELD *f, FIELD *head) in insert()
113 sort_form(FORM *f) in sort_form()
140 merge(FIELD *f, FORM *form) /* adjust form dimensions to include field f */ in merge()
155 FIELD **f = form->field; in disconnect_fields() local
173 connect_fields(FORM *f, FIELD **x) in connect_fields()
226 FORM *f; in new_form() local
247 free_form(FORM *f) in free_form()
262 set_form_fields(FORM *f, FIELD **fields) in set_form_fields()
290 form_fields(FORM *f) in form_fields()
296 field_count(FORM *f) in field_count()
[all …]
/titanic_41/usr/src/lib/libshell/common/data/
H A Dsolaris_cmdlist.h44 #define BINCMDLIST(f) \ argument
46 #define USRBINCMDLIST(f) \ argument
48 #define SBINCMDLIST(f) \ argument
50 #define SUSRBINCMDLIST(f) \ argument
53 #define XPG6CMDLIST(f) \ argument
55 #define XPG4CMDLIST(f) \ argument
59 #define GNUCMDLIST(f) \ argument
68 #define ASTCMDLIST(f) \ argument
/titanic_41/usr/src/lib/libast/common/include/
H A Drecfmt.h46 #define RECTYPE(f) (((f)>>28)&((1<<4)-1)) argument
49 #define REC_D_DELIMITER(f) ((f)&((1<<8)-1)) argument
52 #define REC_F_SIZE(f) ((f)&((1<<28)-1)) argument
55 #define REC_U_ATTRIBUTES(f) ((f)&~((1<<28)-1)) argument
58 #define REC_V_RECORD(f,s) (((f)&(((1<<16)-1)<<16))|(s)) argument
59 #define REC_V_HEADER(f) (((f)>>23)&((1<<5)-1)) argument
60 #define REC_V_OFFSET(f) (((f)>>19)&((1<<4)-1)) argument
61 #define REC_V_LENGTH(f) ((((f)>>18)&1)+1) argument
62 #define REC_V_LITTLE(f) (((f)>>17)&1) argument
63 #define REC_V_INCLUSIVE(f) (((f)>>16)&1) argument
[all …]
H A Dsfio.h335 #define _SF_(f) (f) argument
340 #define __sf_putd(f,v) (_sfputd(_SF_(f),(Sfdouble_t)(v))) argument
341 #define __sf_putl(f,v) (_sfputl(_SF_(f),(Sflong_t)(v))) argument
342 #define __sf_putu(f,v) (_sfputu(_SF_(f),(Sfulong_t)(v))) argument
343 #define __sf_putm(f,v,m) (_sfputm(_SF_(f),(Sfulong_t)(v),(Sfulong_t)(m))) argument
345 #define __sf_putc(f,c) (_SF_(f)->_next >= _SF_(f)->_endw ? \ argument
348 #define __sf_getc(f) (_SF_(f)->_next >= _SF_(f)->_endr ? _sffilbuf(_SF_(f),0) : \ argument
356 #define __sf_fileno(f) (_SF_(f)->_file) argument
357 #define __sf_eof(f) (_SF_(f)->_flags&SF_EOF) argument
358 #define __sf_error(f) (_SF_(f)->_flags&SF_ERROR) argument
[all …]
/titanic_41/usr/src/lib/libast/amd64/include/ast/
H A Drecfmt.h55 #define RECTYPE(f) (((f)>>28)&((1<<4)-1)) argument
58 #define REC_D_DELIMITER(f) ((f)&((1<<8)-1)) argument
61 #define REC_F_SIZE(f) ((f)&((1<<28)-1)) argument
64 #define REC_U_ATTRIBUTES(f) ((f)&~((1<<28)-1)) argument
67 #define REC_V_RECORD(f,s) (((f)&(((1<<16)-1)<<16))|(s)) argument
68 #define REC_V_HEADER(f) (((f)>>23)&((1<<5)-1)) argument
69 #define REC_V_OFFSET(f) (((f)>>19)&((1<<4)-1)) argument
70 #define REC_V_LENGTH(f) ((((f)>>18)&1)+1) argument
71 #define REC_V_LITTLE(f) (((f)>>17)&1) argument
72 #define REC_V_INCLUSIVE(f) (((f)>>16)&1) argument
[all …]
H A Dsfio.h335 #define _SF_(f) (f) argument
340 #define __sf_putd(f,v) (_sfputd(_SF_(f),(Sfdouble_t)(v))) argument
341 #define __sf_putl(f,v) (_sfputl(_SF_(f),(Sflong_t)(v))) argument
342 #define __sf_putu(f,v) (_sfputu(_SF_(f),(Sfulong_t)(v))) argument
343 #define __sf_putm(f,v,m) (_sfputm(_SF_(f),(Sfulong_t)(v),(Sfulong_t)(m))) argument
345 #define __sf_putc(f,c) (_SF_(f)->_next >= _SF_(f)->_endw ? \ argument
348 #define __sf_getc(f) (_SF_(f)->_next >= _SF_(f)->_endr ? _sffilbuf(_SF_(f),0) : \ argument
356 #define __sf_fileno(f) (_SF_(f)->_file) argument
357 #define __sf_eof(f) (_SF_(f)->_flags&SF_EOF) argument
358 #define __sf_error(f) (_SF_(f)->_flags&SF_ERROR) argument
[all …]
/titanic_41/usr/src/lib/libast/i386/include/ast/
H A Drecfmt.h55 #define RECTYPE(f) (((f)>>28)&((1<<4)-1)) argument
58 #define REC_D_DELIMITER(f) ((f)&((1<<8)-1)) argument
61 #define REC_F_SIZE(f) ((f)&((1<<28)-1)) argument
64 #define REC_U_ATTRIBUTES(f) ((f)&~((1<<28)-1)) argument
67 #define REC_V_RECORD(f,s) (((f)&(((1<<16)-1)<<16))|(s)) argument
68 #define REC_V_HEADER(f) (((f)>>23)&((1<<5)-1)) argument
69 #define REC_V_OFFSET(f) (((f)>>19)&((1<<4)-1)) argument
70 #define REC_V_LENGTH(f) ((((f)>>18)&1)+1) argument
71 #define REC_V_LITTLE(f) (((f)>>17)&1) argument
72 #define REC_V_INCLUSIVE(f) (((f)>>16)&1) argument
[all …]
H A Dsfio.h335 #define _SF_(f) (f) argument
340 #define __sf_putd(f,v) (_sfputd(_SF_(f),(Sfdouble_t)(v))) argument
341 #define __sf_putl(f,v) (_sfputl(_SF_(f),(Sflong_t)(v))) argument
342 #define __sf_putu(f,v) (_sfputu(_SF_(f),(Sfulong_t)(v))) argument
343 #define __sf_putm(f,v,m) (_sfputm(_SF_(f),(Sfulong_t)(v),(Sfulong_t)(m))) argument
345 #define __sf_putc(f,c) (_SF_(f)->_next >= _SF_(f)->_endw ? \ argument
348 #define __sf_getc(f) (_SF_(f)->_next >= _SF_(f)->_endr ? _sffilbuf(_SF_(f),0) : \ argument
356 #define __sf_fileno(f) (_SF_(f)->_file) argument
357 #define __sf_eof(f) (_SF_(f)->_flags&SF_EOF) argument
358 #define __sf_error(f) (_SF_(f)->_flags&SF_ERROR) argument
[all …]
/titanic_41/usr/src/lib/libast/sparcv9/include/ast/
H A Drecfmt.h55 #define RECTYPE(f) (((f)>>28)&((1<<4)-1)) argument
58 #define REC_D_DELIMITER(f) ((f)&((1<<8)-1)) argument
61 #define REC_F_SIZE(f) ((f)&((1<<28)-1)) argument
64 #define REC_U_ATTRIBUTES(f) ((f)&~((1<<28)-1)) argument
67 #define REC_V_RECORD(f,s) (((f)&(((1<<16)-1)<<16))|(s)) argument
68 #define REC_V_HEADER(f) (((f)>>23)&((1<<5)-1)) argument
69 #define REC_V_OFFSET(f) (((f)>>19)&((1<<4)-1)) argument
70 #define REC_V_LENGTH(f) ((((f)>>18)&1)+1) argument
71 #define REC_V_LITTLE(f) (((f)>>17)&1) argument
72 #define REC_V_INCLUSIVE(f) (((f)>>16)&1) argument
[all …]
H A Dsfio.h335 #define _SF_(f) (f) argument
340 #define __sf_putd(f,v) (_sfputd(_SF_(f),(Sfdouble_t)(v))) argument
341 #define __sf_putl(f,v) (_sfputl(_SF_(f),(Sflong_t)(v))) argument
342 #define __sf_putu(f,v) (_sfputu(_SF_(f),(Sfulong_t)(v))) argument
343 #define __sf_putm(f,v,m) (_sfputm(_SF_(f),(Sfulong_t)(v),(Sfulong_t)(m))) argument
345 #define __sf_putc(f,c) (_SF_(f)->_next >= _SF_(f)->_endw ? \ argument
348 #define __sf_getc(f) (_SF_(f)->_next >= _SF_(f)->_endr ? _sffilbuf(_SF_(f),0) : \ argument
356 #define __sf_fileno(f) (_SF_(f)->_file) argument
357 #define __sf_eof(f) (_SF_(f)->_flags&SF_EOF) argument
358 #define __sf_error(f) (_SF_(f)->_flags&SF_ERROR) argument
[all …]
/titanic_41/usr/src/lib/libast/sparc/include/ast/
H A Drecfmt.h55 #define RECTYPE(f) (((f)>>28)&((1<<4)-1)) argument
58 #define REC_D_DELIMITER(f) ((f)&((1<<8)-1)) argument
61 #define REC_F_SIZE(f) ((f)&((1<<28)-1)) argument
64 #define REC_U_ATTRIBUTES(f) ((f)&~((1<<28)-1)) argument
67 #define REC_V_RECORD(f,s) (((f)&(((1<<16)-1)<<16))|(s)) argument
68 #define REC_V_HEADER(f) (((f)>>23)&((1<<5)-1)) argument
69 #define REC_V_OFFSET(f) (((f)>>19)&((1<<4)-1)) argument
70 #define REC_V_LENGTH(f) ((((f)>>18)&1)+1) argument
71 #define REC_V_LITTLE(f) (((f)>>17)&1) argument
72 #define REC_V_INCLUSIVE(f) (((f)>>16)&1) argument
[all …]
H A Dsfio.h335 #define _SF_(f) (f) argument
340 #define __sf_putd(f,v) (_sfputd(_SF_(f),(Sfdouble_t)(v))) argument
341 #define __sf_putl(f,v) (_sfputl(_SF_(f),(Sflong_t)(v))) argument
342 #define __sf_putu(f,v) (_sfputu(_SF_(f),(Sfulong_t)(v))) argument
343 #define __sf_putm(f,v,m) (_sfputm(_SF_(f),(Sfulong_t)(v),(Sfulong_t)(m))) argument
345 #define __sf_putc(f,c) (_SF_(f)->_next >= _SF_(f)->_endw ? \ argument
348 #define __sf_getc(f) (_SF_(f)->_next >= _SF_(f)->_endr ? _sffilbuf(_SF_(f),0) : \ argument
356 #define __sf_fileno(f) (_SF_(f)->_file) argument
357 #define __sf_eof(f) (_SF_(f)->_flags&SF_EOF) argument
358 #define __sf_error(f) (_SF_(f)->_flags&SF_ERROR) argument
[all …]
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dfsm.c55 #define PROTO_NAME(f) ((f)->callbacks->proto_name) argument
78 fsm_init(f) in fsm_init() argument
96 fsm_lowerup(f) in fsm_lowerup() argument
126 fsm_lowerdown(f) in fsm_lowerdown() argument
170 fsm_open(f) in fsm_open() argument
219 fsm_close(f, reason) in fsm_close() argument
280 fsm *f = (fsm *) arg; local
331 fsm_input(f, inpacket, l) in fsm_input() argument
413 fsm_rconfreq(f, id, inp, len) in fsm_rconfreq() argument
493 fsm_rconfack(f, id, inp, len) in fsm_rconfack() argument
[all …]
/titanic_41/usr/src/lib/libshell/common/tests/
H A Dtypes.sh148 f() function
157 f() function
163 function f function
172 f() function
206 function f function
223 function f function
279 f() function
/titanic_41/usr/src/lib/libexacct/common/
H A Dexacct_ops.c75 static int stack_check(ea_file_impl_t *f) in stack_check()
110 static void stack_free(ea_file_impl_t *f) in stack_free()
126 static int stack_new_group(ea_file_impl_t *f, int nobjs) in stack_new_group()
149 ea_file_impl_t *f, in stack_next_object()
197 static int stack_previous_object(ea_file_impl_t *f) in stack_previous_object()
228 fread_wrapper(ea_file_impl_t *f, void *buf, size_t sz) in fread_wrapper()
240 bufread_wrapper(ea_file_impl_t *f, void *buf, size_t sz) in bufread_wrapper()
256 fseek_wrapper(ea_file_impl_t *f, off_t adv) in fseek_wrapper()
262 bufseek_wrapper(ea_file_impl_t *f, off_t adv) in bufseek_wrapper()
278 fpos_wrapper(ea_file_impl_t *f) in fpos_wrapper()
[all …]
/titanic_41/usr/src/lib/libast/common/sfio/
H A Dsfvprintf.c96 int sfvprintf(Sfio_t* f, const char* form, va_list args) in sfvprintf()
143 #define SMputc(f,c) { if((o = SFFLSBUF(f,c)) >= 0 ) n_output += 1; \ argument
146 #define SMnputc(f,c,n) { if((o = SFNPUTC(f,c,n)) > 0 ) n_output += 1; \ argument
149 #define SMwrite(f,s,n) { if((o = SFWRITE(f,(Void_t*)s,n)) > 0 ) n_output += o; \ argument
153 #define SFBUF(f) argument
154 #define SFINIT(f) (n_output = 0) argument
155 #define SFEND(f) argument
156 #define SFputc(f,c) SMputc(f,c) argument
157 #define SFnputc(f,c,n) SMnputc(f,c,n) argument
158 #define SFwrite(f,s,n) SMwrite(f,s,n) argument
[all …]
/titanic_41/usr/src/uts/sun4u/serengeti/io/
H A Dsbdp.c185 static fn_t f = "sbdp_get_bd_and_wnode_num"; in sbdp_get_bd_and_wnode_num() local
212 static fn_t f = "sbdp_get_board_num"; in sbdp_get_board_num() local
257 static fn_t f = "sbdp_get_unit_num"; in sbdp_get_unit_num() local
388 static fn_t f = "sbdp_update_bd_info"; in sbdp_update_bd_info() local
462 static fn_t f = "sbdp_bd_init"; in sbdp_bd_init() local
487 static fn_t f = "sbdp_bd_fini"; in sbdp_bd_fini() local
508 static fn_t f = "sbdp_wnode_init"; in sbdp_wnode_init() local
529 static fn_t f = "sbdp_wnode_fini"; in sbdp_wnode_fini() local
550 static fn_t f = "sbdp_add_new_bd_info"; in sbdp_add_new_bd_info() local
572 static fn_t f = "sbdp_cleanup_bd"; in sbdp_cleanup_bd() local
[all …]

12345678910>>...49