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

1234567891011>>

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.other/
H A D900403_04.C11 unsigned int field; member in struct:s
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.other/
H A D900403_04.C11 unsigned int field; member in struct:s
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/expr/
H A Dbitfield1.C4 bool field:8; member in struct:s
10 if (!p->field)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900403_04.C10 unsigned int field; member in struct:s
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.bugs/
H A D900403_04.C10 unsigned int field; member in struct:s
/netbsd-6-1-5-RELEASE/gnu/dist/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...]
/netbsd-6-1-5-RELEASE/dist/nvi/include/sys/
H A Dqueue.h91 #define LIST_INSERT_AFTER(listelm, elm, field) { \
92 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
93 (listelm)->field.le_next->field.le_prev = \
94 &(elm)->field.le_next; \
95 (listelm)->field.le_next = (elm); \
96 (elm)->field.le_prev = &(listelm)->field.le_next; \
99 #define LIST_INSERT_BEFORE(listelm, elm, field) { \
[all...]
/netbsd-6-1-5-RELEASE/include/
H A Dstruct.h37 /* Offset of the field in the structure. */
38 #define fldoff(name, field) \
39 ((int)&(((struct name *)0)->field))
41 /* Size of the field in the structure. */
42 #define fldsiz(name, field) \
43 (sizeof(((struct name *)0)->field))
45 /* Address of the structure from a field. */
46 #define strbase(name, addr, field) \
47 ((struct name *)((char *)(addr) - fldoff(name, field)))
/netbsd-6-1-5-RELEASE/lib/libform/
H A Dfield.c1 /* $NetBSD: field.c,v 1.24 2006/02/07 20:07:42 wiz Exp $ */
32 __RCSID("$NetBSD: field.c,v 1.24 2006/02/07 20:07:42 wiz Exp $");
43 0, /* rows in the field */
44 0, /* columns in the field */
51 0, /* index of this field in form fields array. */
52 0, /* number of buffers associated with this field */
54 NO_JUSTIFICATION, /* justification style of the field */
55 FALSE, /* set to true if field is in overlay mode */
58 NULL, /* starting line in field (vert scroll) */
59 0, /* number of rows actually used in field */
95 set_field_userptr(FIELD *field, void *ptr) argument
109 field_userptr(FIELD *field) argument
121 set_field_opts(FIELD *field, Form_Options options) argument
156 field_opts_on(FIELD *field, Form_Options options) argument
191 field_opts_off(FIELD *field, Form_Options options) argument
217 field_opts(FIELD *field) argument
229 set_field_just(FIELD *field, int justification) argument
261 field_just(FIELD *field) argument
273 field_info(FIELD *field, int *rows, int *cols, int *frow, int *fcol, int *nrow, int *nbuf) argument
293 dynamic_field_info(FIELD *field, int *drows, int *dcols, int *max) argument
316 field_buffer_init(FIELD *field, int buffer, unsigned int len) argument
375 set_field_printf(FIELD *field, int buffer, char *fmt, ...) argument
411 set_field_buffer(FIELD *field, int buffer, char *value) argument
470 field_buffer(FIELD *field, int buffer) argument
543 set_field_status(FIELD *field, int status) argument
561 field_status(FIELD *field) argument
576 FIELD *field = (fptr == NULL)? &_formi_default_field : fptr; local
594 FIELD *field = (fptr == NULL)? &_formi_default_field : fptr; local
604 field_fore(FIELD *field) argument
616 set_field_back(FIELD *field, chtype attribute) argument
630 field_back(FIELD *field) argument
642 set_field_pad(FIELD *field, int pad) argument
656 field_pad(FIELD *field) argument
723 FIELD *field = (fptr == NULL)? &_formi_default_field : fptr; local
737 new_page(FIELD *field) argument
749 field_index(FIELD *field) argument
853 dup_field(FIELD *field, int frow, int fcol) argument
887 link_field(FIELD *field, int frow, int fcol) argument
912 free_field(FIELD *field) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/compat/
H A Dqueue.h114 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next)
116 #define SLIST_FOREACH(var, head, field) \
119 (var) = SLIST_NEXT(var, field))
121 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \
124 (varp) = &SLIST_NEXT((var), field))
133 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
134 (elm)->field.sle_next = (slistelm)->field.sle_next; \
135 (slistelm)->field
[all...]
H A Dtree.h76 #define SPLAY_LEFT(elm, field) (elm)->field.spe_left
77 #define SPLAY_RIGHT(elm, field) (elm)->field.spe_right
82 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
83 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
84 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
88 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
89 SPLAY_RIGHT((head)->sph_root, field)
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/gssapi/mech/
H A Dmechqueue.h62 #define HEIM_SLIST_INSERT_AFTER(slistelm, elm, field) do { \
63 (elm)->field.sle_next = (slistelm)->field.sle_next; \
64 (slistelm)->field.sle_next = (elm); \
67 #define HEIM_SLIST_INSERT_HEAD(head, elm, field) do { \
68 (elm)->field.sle_next = (head)->slh_first; \
72 #define HEIM_SLIST_REMOVE_HEAD(head, field) do { \
73 (head)->slh_first = (head)->slh_first->field.sle_next; \
76 #define HEIM_SLIST_REMOVE(head, elm, type, field) do { \
78 HEIM_SLIST_REMOVE_HEAD((head), field); \
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D960301-1.c3 unsigned field : 4; member in struct:foo
10 oldfoo = foo.field;
11 foo.field = k;
H A D20000717-4.c9 int field[6]; member in struct:__anon5440::slot
18 int r = s.slot[0].field[!toggle];
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D960301-1.c3 unsigned field : 4; member in struct:foo
10 oldfoo = foo.field;
11 foo.field = k;
H A D20000717-4.c9 int field[6]; member in struct:__anon3709::slot
18 int r = s.slot[0].field[!toggle];
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/torture/
H A Dpr35833.c4 struct S {struct S *field;}; member in struct:S
12 return g(x) ? &True.field : &False.field;
14 return &True.field;
19 if (h(&False.field) != &False.field)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.brendan/
H A Denum12.C9 Bool field:1; member in struct:S
11 void copy_enum_bit_field () const { object = field; }
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.brendan/
H A Denum12.C9 Bool field:1; member in struct:S
11 void copy_enum_bit_field () const { object = field; }
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dstatic-print-quit.cc28 static D field; member in class:C
31 D C::field; member in class:C
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/include/
H A Dldap_queue.h159 #define LDAP_SLIST_FOREACH(var, head, field) \
160 for((var) = (head)->slh_first; (var); (var) = (var)->field.sle_next)
166 #define LDAP_SLIST_ENTRY_INIT(var, field) { \
167 (var)->field.sle_next = NULL; \
170 #define LDAP_SLIST_INSERT_AFTER(slistelm, elm, field) do { \
171 (elm)->field.sle_next = (slistelm)->field.sle_next; \
172 (slistelm)->field.sle_next = (elm); \
175 #define LDAP_SLIST_INSERT_HEAD(head, elm, field) do { \
176 (elm)->field
[all...]
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dqueue.h106 #define QUEUEDEBUG_LIST_INSERT_HEAD(head, elm, field) \
108 (head)->lh_first->field.le_prev != &(head)->lh_first) \
110 #define QUEUEDEBUG_LIST_OP(elm, field) \
111 if ((elm)->field.le_next && \
112 (elm)->field.le_next->field.le_prev != \
113 &(elm)->field.le_next) \
115 if (*(elm)->field.le_prev != (elm)) \
117 #define QUEUEDEBUG_LIST_POSTREMOVE(elm, field) \
118 (elm)->field
[all...]
H A Dtree.h76 #define SPLAY_LEFT(elm, field) (elm)->field.spe_left
77 #define SPLAY_RIGHT(elm, field) (elm)->field.spe_right
82 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
83 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
84 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
88 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
89 SPLAY_RIGHT((head)->sph_root, field)
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/base/
H A Dheimqueue.h61 #define QUEUEDEBUG_HEIM_TAILQ_INSERT_HEAD(head, elm, field) \
63 (head)->tqh_first->field.tqe_prev != &(head)->tqh_first) \
65 #define QUEUEDEBUG_HEIM_TAILQ_INSERT_TAIL(head, elm, field) \
68 #define QUEUEDEBUG_HEIM_TAILQ_OP(elm, field) \
69 if ((elm)->field.tqe_next && \
70 (elm)->field.tqe_next->field.tqe_prev != \
71 &(elm)->field.tqe_next) \
73 if (*(elm)->field.tqe_prev != (elm)) \
75 #define QUEUEDEBUG_HEIM_TAILQ_PREREMOVE(head, elm, field) \
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/asn1/
H A Dasn1_queue.h61 #define QUEUEDEBUG_ASN1_TAILQ_INSERT_HEAD(head, elm, field) \
63 (head)->tqh_first->field.tqe_prev != &(head)->tqh_first) \
65 #define QUEUEDEBUG_ASN1_TAILQ_INSERT_TAIL(head, elm, field) \
68 #define QUEUEDEBUG_ASN1_TAILQ_OP(elm, field) \
69 if ((elm)->field.tqe_next && \
70 (elm)->field.tqe_next->field.tqe_prev != \
71 &(elm)->field.tqe_next) \
73 if (*(elm)->field.tqe_prev != (elm)) \
75 #define QUEUEDEBUG_ASN1_TAILQ_PREREMOVE(head, elm, field) \
[all...]

Completed in 302 milliseconds

1234567891011>>