Searched refs:field (Results 1 - 25 of 661) sorted by relevance

1234567891011>>

/macosx-10.10/xnu-2782.1.97/bsd/sys/_types/
H A D_offsetof.h29 #define offsetof(type, field) __offsetof(type, field)
/macosx-10.10/procmail-14/procmail/src/
H A Dfields.h3 struct field
4 *findf P((const struct field*const p,struct field**ah)),
5 **addfield Q((struct field**pointer,const char*const text,
7 *delfield P((struct field**pointer));
10 clear_uhead P((struct field*hdr)),
11 concatenate P((struct field*const fldp)),
12 flushfield P((struct field**pointer)),
13 dispfield P((const struct field*p)),
/macosx-10.10/ncurses-44/ncurses/form/
H A Dfld_pad.c39 | Function : int set_field_pad(FIELD *field, int ch)
41 | Description : Set the pad character used to fill the field. This must
45 | E_BAD_ARGUMENT - invalid field pointer or pad character
49 set_field_pad(FIELD *field, int ch) argument
53 T((T_CALLED("set_field_pad(%p,%d)"), field, ch));
55 Normalize_Field(field);
58 if (field->pad != ch)
60 field->pad = ch;
61 res = _nc_Synchronize_Attributes(field);
71 | Function : int field_pad(const FIELD *field)
78 field_pad(const FIELD *field) argument
[all...]
H A Dfld_page.c39 | Function : int set_new_page(FIELD *field, bool new_page_flag)
41 | Description : Marks the field as the beginning of a new page of
45 | E_CONNECTED - field is connected
48 set_new_page(FIELD *field, bool new_page_flag) argument
50 T((T_CALLED("set_new_page(%p,%d)"), field, new_page_flag));
52 Normalize_Field(field);
53 if (field->form)
57 field->status |= _NEWPAGE;
59 field->status &= ~_NEWPAGE;
66 | Function : bool new_page(const FIELD *field)
[all...]
H A Dfld_max.c39 | Function : int set_max_field(FIELD *field, int maxgrow)
41 | Description : Set the maximum growth for a dynamic field. If maxgrow=0
42 | the field may grow to any possible size.
48 set_max_field(FIELD *field, int maxgrow) argument
50 T((T_CALLED("set_max_field(%p,%d)"), field, maxgrow));
52 if (!field || (maxgrow < 0))
56 bool single_line_field = Single_Line_Field(field);
60 if ((single_line_field && (maxgrow < field->dcols)) ||
61 (!single_line_field && (maxgrow < field->drows)))
64 field
[all...]
H A Dfld_type.c39 | Function : int set_field_type(FIELD *field, FIELDTYPE *type,...)
41 | Description : Associate the specified fieldtype with the field.
42 | Certain field types take additional arguments. Look
43 | at the spec of the field types !
49 set_field_type(FIELD *field, FIELDTYPE *type,...) argument
55 T((T_CALLED("set_field_type(%p,%p)"), field, type));
59 Normalize_Field(field);
60 _nc_Free_Type(field);
62 field->type = type;
63 field
91 field_type(const FIELD *field) argument
[all...]
H A Dfld_stat.c39 | Function : int set_field_status(FIELD *field, bool status)
47 set_field_status(FIELD *field, bool status) argument
49 T((T_CALLED("set_field_status(%p,%d)"), field, status));
51 Normalize_Field(field);
54 field->status |= _CHANGED;
56 field->status &= ~_CHANGED;
63 | Function : bool field_status(const FIELD *field)
72 field_status(const FIELD *field)
74 T((T_CALLED("field_status(%p)"), field));
76 returnBool((Normalize_Field(field)
[all...]
H A Dfld_move.c39 | Function : int move_field(FIELD *field,int frow, int fcol)
41 | Description : Moves the disconnected field to the new location in
46 | E_CONNECTED - field is connected
49 move_field(FIELD *field, int frow, int fcol) argument
51 T((T_CALLED("move_field(%p,%d,%d)"), field, frow, fcol));
53 if (!field || (frow < 0) || (fcol < 0))
56 if (field->form)
59 field->frow = frow;
60 field->fcol = fcol;
H A Dfld_user.c39 | Function : int set_field_userptr(FIELD *field, void *usrptr)
41 | Description : Set the pointer that is reserved in any field to store
47 set_field_userptr(FIELD *field, void *usrptr) argument
49 T((T_CALLED("set_field_userptr(%p,%p)"), field, usrptr));
51 Normalize_Field(field)->usrptr = usrptr;
57 | Function : void *field_userptr(const FIELD *field)
59 | Description : Return the pointer that is reserved in any field to
66 field_userptr(const FIELD *field) argument
68 T((T_CALLED("field_userptr(%p)"), field));
69 returnVoidPtr(Normalize_Field(field)
[all...]
H A Dfld_info.c39 | Function : int field_info(const FIELD *field,
47 | E_BAD_ARGUMENT - invalid field pointer
50 field_info(const FIELD *field, argument
56 field,
61 if (!field)
65 *rows = field->rows;
67 *cols = field->cols;
69 *frow = field->frow;
71 *fcol = field->fcol;
73 *nrow = field
92 dynamic_field_info(const FIELD *field, int *drows, int *dcols, int *maxgrow) argument
[all...]
H A Dfld_just.c39 | Function : int set_field_just(FIELD *field, int just)
48 set_field_just(FIELD *field, int just) argument
52 T((T_CALLED("set_field_just(%p,%d)"), field, just));
59 Normalize_Field(field);
60 if (field->just != just)
62 field->just = just;
63 res = _nc_Synchronize_Attributes(field);
73 | Function : int field_just( const FIELD *field )
80 field_just(const FIELD *field) argument
82 T((T_CALLED("field_just(%p)"), field));
[all...]
H A Dfld_link.c39 | Function : FIELD *link_field(FIELD *field, int frow, int fcol)
41 | Description : Duplicates the field at the specified position. The
42 | new field shares its buffers with the original one,
49 | Return Values : Pointer to the new field or NULL if failure
52 link_field(FIELD *field, int frow, int fcol) argument
57 T((T_CALLED("link_field(%p,%d,%d)"), field, frow, fcol));
58 if (field && (frow >= 0) && (fcol >= 0) &&
62 T((T_CREATE("field %p"), New_Field));
67 New_Field->link = field->link;
68 field
[all...]
H A Dfld_dup.c39 | Function : FIELD *dup_field(FIELD *field, int frow, int fcol)
41 | Description : Duplicates the field at the specified position. All
42 | field attributes and the buffers are copied.
48 | Return Values : Pointer to the new field or NULL if failure
51 dup_field(FIELD *field, int frow, int fcol) argument
56 T((T_CALLED("dup_field(%p,%d,%d)"), field, frow, fcol));
57 if (field && (frow >= 0) && (fcol >= 0) &&
61 T((T_CREATE("field %p"), New_Field));
66 New_Field->rows = field->rows;
67 New_Field->cols = field
[all...]
H A Dfld_current.c39 | Function : int set_current_field(FORM * form,FIELD * field)
41 | Description : Set the current field of the form to the specified one.
44 | E_BAD_ARGUMENT - invalid form or field pointer
45 | E_REQUEST_DENIED - field not selectable
47 | E_INVALID_FIELD - current field can't be left
51 set_current_field(FORM *form, FIELD *field) argument
55 T((T_CALLED("set_current_field(%p,%p)"), form, field));
56 if (form == 0 || field == 0)
60 else if ((form != field->form) || Field_Is_Not_Selectable(field))
131 field_index(const FIELD *field) argument
[all...]
H A Dfld_opts.c43 | Function : int set_field_opts(FIELD *field, Field_Options opts)
45 | Description : Turns on the named options for this field and turns
49 | E_CURRENT - the field is the current field
54 set_field_opts(FIELD *field, Field_Options opts) argument
58 T((T_CALLED("set_field_opts(%p,%d)"), field, opts));
62 res = _nc_Synchronize_Options(Normalize_Field(field), opts);
68 | Function : Field_Options field_opts(const FIELD *field)
75 field_opts(const FIELD *field)
77 T((T_CALLED("field_opts(%p)"), field));
95 field_opts_on(FIELD *field, Field_Options opts) argument
123 field_opts_off(FIELD *field, Field_Options opts) argument
[all...]
H A Dfld_attr.c42 NCURSES_IMPEXP int NCURSES_API set_field_ ## name (FIELD * field, chtype attr)\
45 T((T_CALLED("set_field_" #name "(%p,%s)"), field, _traceattr(attr)));\
48 Normalize_Field( field );\
49 if (field != 0) \
51 if ((field -> name) != attr)\
53 field -> name = attr;\
54 res = _nc_Synchronize_Attributes( field );\
67 NCURSES_IMPEXP chtype NCURSES_API field_ ## name (const FIELD * field)\
69 T((T_CALLED("field_" #name "(%p)"), field));\
70 returnAttr( A_ATTRIBUTES & (Normalize_Field( field )
[all...]
/macosx-10.10/groff-38/groff/tmac/
H A Dhyphenex.pl49 @field = split(' ');
50 if ($field[0] eq "\\1" || $field[0] eq "\\4") {
51 print " $field[2]\n";
53 elsif ($field[0] eq "\\2" || $field[0] eq "\\5") {
54 print " $field[2]\n";
56 @suffix_list = split(/,/, "$field[3]");
58 print " $field[2]$suffix\n";
61 elsif ($field[
[all...]
/macosx-10.10/Libc-1044.1.2/include/
H A Dstruct.h39 /* Offset of the field in the structure. */
40 #define fldoff(name, field) \
41 ((int)&(((struct name *)0)->field))
43 /* Size of the field in the structure. */
44 #define fldsiz(name, field) \
45 (sizeof(((struct name *)0)->field))
47 /* Address of the structure from a field. */
48 #define strbase(name, addr, field) \
49 ((struct name *)((char *)(addr) - fldoff(name, field)))
/macosx-10.10/Heimdal-398.1.2/lib/gssapi/mech/
H A Dmechqueue.h60 #define HEIM_SLIST_INSERT_AFTER(slistelm, elm, field) do { \
61 (elm)->field.sle_next = (slistelm)->field.sle_next; \
62 (slistelm)->field.sle_next = (elm); \
65 #define HEIM_SLIST_INSERT_HEAD(head, elm, field) do { \
66 (elm)->field.sle_next = (head)->slh_first; \
70 #define HEIM_SLIST_REMOVE_HEAD(head, field) do { \
71 (head)->slh_first = (head)->slh_first->field.sle_next; \
74 #define HEIM_SLIST_REMOVE(head, elm, type, field) do { \
76 HEIM_SLIST_REMOVE_HEAD((head), field); \
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/test/
H A Dcheck_tag.c35 CheckShortField(TIFF *tif, ttag_t field, uint16 value) argument
39 if (!TIFFGetField(tif, field, &tmp)) {
41 (unsigned long) field);
46 (unsigned long) field);
54 CheckLongField(TIFF *tif, ttag_t field, uint32 value) argument
58 if (!TIFFGetField(tif, field, &tmp)) {
60 (unsigned long) field);
65 (unsigned long) field);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/include/
H A Dldap_queue.h157 #define LDAP_SLIST_FOREACH(var, head, field) \
158 for((var) = (head)->slh_first; (var); (var) = (var)->field.sle_next)
164 #define LDAP_SLIST_ENTRY_INIT(var, field) { \
165 (var)->field.sle_next = NULL; \
168 #define LDAP_SLIST_INSERT_AFTER(slistelm, elm, field) do { \
169 (elm)->field.sle_next = (slistelm)->field.sle_next; \
170 (slistelm)->field.sle_next = (elm); \
173 #define LDAP_SLIST_INSERT_HEAD(head, elm, field) do { \
174 (elm)->field
[all...]
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dsys-tree.h82 #define SPLAY_LEFT(elm, field) (elm)->field.spe_left
83 #define SPLAY_RIGHT(elm, field) (elm)->field.spe_right
88 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
89 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
90 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
94 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
95 SPLAY_RIGHT((head)->sph_root, field)
[all...]
/macosx-10.10/Heimdal-398.1.2/base/
H A Dheimqueue.h59 #define QUEUEDEBUG_HEIM_TAILQ_INSERT_HEAD(head, elm, field) \
61 (head)->tqh_first->field.tqe_prev != &(head)->tqh_first) \
63 #define QUEUEDEBUG_HEIM_TAILQ_INSERT_TAIL(head, elm, field) \
66 #define QUEUEDEBUG_HEIM_TAILQ_OP(elm, field) \
67 if ((elm)->field.tqe_next && \
68 (elm)->field.tqe_next->field.tqe_prev != \
69 &(elm)->field.tqe_next) \
71 if (*(elm)->field.tqe_prev != (elm)) \
73 #define QUEUEDEBUG_HEIM_TAILQ_PREREMOVE(head, elm, field) \
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/asn1/
H A Dasn1_queue.h59 #define QUEUEDEBUG_ASN1_TAILQ_INSERT_HEAD(head, elm, field) \
61 (head)->tqh_first->field.tqe_prev != &(head)->tqh_first) \
63 #define QUEUEDEBUG_ASN1_TAILQ_INSERT_TAIL(head, elm, field) \
66 #define QUEUEDEBUG_ASN1_TAILQ_OP(elm, field) \
67 if ((elm)->field.tqe_next && \
68 (elm)->field.tqe_next->field.tqe_prev != \
69 &(elm)->field.tqe_next) \
71 if (*(elm)->field.tqe_prev != (elm)) \
73 #define QUEUEDEBUG_ASN1_TAILQ_PREREMOVE(head, elm, field) \
[all...]
/macosx-10.10/BerkeleyDB-21/db/dbinc/
H A Dshqueue.h49 #define SH_CHAIN_INIT(elm, field) \
50 (elm)->field.sce_next = (elm)->field.sce_prev = -1
52 #define SH_CHAIN_HASNEXT(elm, field) ((elm)->field.sce_next != -1)
53 #define SH_CHAIN_NEXTP(elm, field, type) \
54 ((struct type *)((u_int8_t *)(elm) + (elm)->field.sce_next))
55 #define SH_CHAIN_NEXT(elm, field, type) (SH_CHAIN_HASNEXT(elm, field) ? \
56 SH_CHAIN_NEXTP(elm, field, typ
[all...]

Completed in 223 milliseconds

1234567891011>>