HomeSort by relevance Sort by last modified time
    Searched refs:field (Results 1 - 25 of 244) sorted by null

1 2 3 4 5 6 7 8 910

  /onnv/onnv-gate/usr/src/cmd/sendmail/db/include/
queue.h 92 #define LIST_NEXT(elm, field) ((elm)->field.le_next)
102 #define LIST_INSERT_AFTER(listelm, elm, field) do { \
103 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
104 (listelm)->field.le_next->field.le_prev = \
105 &(elm)->field.le_next; \
106 (listelm)->field.le_next = (elm); \
107 (elm)->field.le_prev = &(listelm)->field.le_next;
    [all...]
shqueue.h 62 #define SH_LIST_NEXTP(elm, field, type) \
63 ((struct type *)(((u_int8_t *)(elm)) + (elm)->field.sle_next))
65 #define SH_LIST_NEXT(elm, field, type) \
66 ((elm)->field.sle_next == -1 ? NULL : \
67 ((struct type *)(((u_int8_t *)(elm)) + (elm)->field.sle_next)))
69 #define SH_LIST_PREV(elm, field) \
70 ((ssize_t *)(((u_int8_t *)(elm)) + (elm)->field.sle_prev))
80 * of the next field in the structure.
82 #define SH_LIST_NEXT_TO_PREV(elm, field) \
83 (-(elm)->field.sle_next + SH_PTR_TO_OFF(elm, &(elm)->field.sle_next)
    [all...]
db_shash.h 22 * field: the name of the field by which the "type" structures are linked.
33 #define HASHLOOKUP(begin, type, field, elt, r, n, hash, cmp) do { \
40 r != NULL; r = SH_TAILQ_NEXT(r, field, type)) \
52 * field: the name of the field by which the "type" structures are linked.
57 #define HASHINSERT(begin, type, field, elt, n, hash) do { \
63 SH_TAILQ_INSERT_HEAD(__bucket, elt, field, type); \
71 * field: the name of the field by which the "type" structures are linked
    [all...]
  /onnv/onnv-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/include/
db-queue.h 103 #define LIST_INSERT_AFTER(listelm, elm, field) { \
104 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
105 (listelm)->field.le_next->field.le_prev = \
106 &(elm)->field.le_next; \
107 (listelm)->field.le_next = (elm); \
108 (elm)->field.le_prev = &(listelm)->field.le_next; \
111 #define LIST_INSERT_HEAD(head, elm, field) { \
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/include/sm/
tailq.h 79 #define SM_TAILQ_NEXT(elm, field) ((elm)->field.tqe_next)
83 #define SM_TAILQ_PREV(elm, headname, field) \
84 (*(((struct headname *)((elm)->field.tqe_prev))->tqh_last))
88 #define SM_TAILQ_FOREACH(var, head, field) \
91 (var) = SM_TAILQ_NEXT(var, field))
93 #define SM_TAILQ_FOREACH_REVERSE(var, head, headname, field) \
96 (var) = SM_TAILQ_PREV(var, headname, field))
106 #define SM_TAILQ_INSERT_HEAD(head, elm, field) do { \
107 if (((elm)->field.tqe_next = (head)->tqh_first) != NULL)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsmbfs/smb/
queue.h 72 #define SLIST_FOREACH(var, head, field) \
75 (var) = SLIST_NEXT((var), field))
81 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
82 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
83 SLIST_NEXT((slistelm), field) = (elm); \
86 #define SLIST_INSERT_HEAD(head, elm, field) do { \
87 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
91 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/dump/common/
fcns.c 84 int field; local
89 field = 16;
91 field = 12;
96 field, "Type", field, "Offset",
97 field, "Vaddr", "Paddr");
99 field, "Filesz", field, "Memsz",
100 field, "Flags", "Align");
119 field, EC_WORD(p_phdr.p_type)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/drm/
queue.h 160 #define SLIST_FOREACH(var, head, field) \
163 (var) = SLIST_NEXT((var), field))
165 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \
167 (var) && ((tvar) = SLIST_NEXT((var), field), 1); \
170 #define SLIST_FOREACH_PREVPTR(var, varp, head, field) \
173 (varp) = &SLIST_NEXT((var), field))
179 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
180 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
181 SLIST_NEXT((slistelm), field) = (elm);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ssh/include/
sys-queue.h 199 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next)
201 #define SLIST_FOREACH(var, head, field) \
204 (var) = SLIST_NEXT(var, field))
213 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
214 (elm)->field.sle_next = (slistelm)->field.sle_next; \
215 (slistelm)->field.sle_next = (elm); \
218 #define SLIST_INSERT_HEAD(head, elm, field) do { \
219 (elm)->field.sle_next = (head)->slh_first;
    [all...]
sys-tree.h 79 #define SPLAY_LEFT(elm, field) (elm)->field.spe_left
80 #define SPLAY_RIGHT(elm, field) (elm)->field.spe_right
85 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
86 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
87 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
91 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
92 SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field);
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/
queue.h 116 #define QUEUEDEBUG_LIST_INSERT_HEAD(head, elm, field) \
118 (head)->lh_first->field.le_prev != &(head)->lh_first) \
120 #define QUEUEDEBUG_LIST_OP(elm, field) \
121 if ((elm)->field.le_next && \
122 (elm)->field.le_next->field.le_prev != \
123 &(elm)->field.le_next) \
125 if (*(elm)->field.le_prev != (elm)) \
127 #define QUEUEDEBUG_LIST_POSTREMOVE(elm, field) \
128 (elm)->field.le_next = (void *)1L;
    [all...]
model.h 119 #define STRUCT_FADDR(handle, field) \
121 (void *)&(handle).ptr.m32->field : \
122 &(handle).ptr.m64->field)
124 #define STRUCT_FGET(handle, field) \
126 (handle).ptr.m32->field : \
127 (handle).ptr.m64->field)
129 #define STRUCT_FGETP(handle, field) \
131 (void *)(uintptr_t)(handle).ptr.m32->field : \
132 (handle).ptr.m64->field)
134 #define STRUCT_FSET(handle, field, val)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/jfs/
jfs_types.h 131 /* lxd_t field construction */
139 /* lxd_t field extraction */
160 /* xd_t field construction */
169 /* xd_t field extraction */
201 /* dxd_t field construction
274 * list header field definition in header element:
276 * type - type of list element struct embedding the link field
292 * list link field definition in list element:
294 * type - type of parent list element struct embedding the link field
310 * header - ptr to the header field in the header elemen
    [all...]
  /onnv/onnv-gate/usr/src/lib/scsi/plugins/ses/SUN-Storage-J4500/common/
loki.c 84 char *field; local
135 * fields, where each field can be either a key ("Fan PartNUM") or a
136 * value. If the field length is less than our shortest expected
144 for (field = (char *)stringin + 4;
145 field + fieldlen <= (char *)stringin + len; field += fieldlen) {
146 if (strncmp(field, "Storage J4500", 13) == 0) {
153 field += fieldlen;
154 if (field + fieldlen > (char *)stringin + len)
159 LIBSES_PROP_PART, field, fieldlen)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/avs/ns/
model.h 128 #define STRUCT_FADDR(handle, field) \
130 (void *)&(handle).ptr.m32->field : \
131 &(handle).ptr.m64->field)
133 #define STRUCT_FGET(handle, field) \
135 (handle).ptr.m32->field : \
136 (handle).ptr.m64->field)
138 #define STRUCT_FGETP(handle, field) \
140 (void *)(handle).ptr.m32->field : \
141 (handle).ptr.m64->field)
143 #define STRUCT_FSET(handle, field, val)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
shellwords.pl 14 local(@words,$snippet,$field);
18 $field = '';
43 $field .= $snippet;
45 push(@words, $field);
  /onnv/onnv-gate/usr/src/lib/libeti/form/common/
field.c 40 * default field
43 static FIELD default_field =
71 (FIELD *)0, /* snext */
72 (FIELD *)0, /* sprev */
73 (FIELD *)0, /* link */
81 FIELD * _DEFAULT_FIELD = &default_field;
88 MakeType(FIELD *f, va_list *ap)
109 CopyType(FIELD *f, FIELD *fsrc)
113 f->type = fsrc->type; /* copy field type *
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/scsi/impl/
inquiry.h 39 * Minimum inquiry data length (includes up through RDF field)
53 * example the INQUIRY_REVISION_ID field in 'struct scsi_inquiry' is
71 int scsi_ascii_inquiry_len(char *field, size_t length);
  /onnv/onnv-gate/usr/src/uts/sun4u/starcat/sys/
iosramvar.h 118 * Values for the status field
139 #define IOSRAM_GET_HDRFIELD32(softp, field) \
140 (ddi_get32((softp)->handle, &((iosram_hdr_t *)(softp)->iosramp)->field))
141 #define IOSRAM_SET_HDRFIELD32(softp, field, val) \
142 (ddi_put32((softp)->handle, &((iosram_hdr_t *)(softp)->iosramp)->field,\
152 * NOTE - Although the unused field may be renamed for some use in the future,
274 #define IOSRAM_STAT(field) iosram_stats.field++
275 #define IOSRAM_STAT_ADD(field, amount) iosram_stats.field += (uint64_t)amoun
    [all...]
sc_cvcio.h 120 * These macros can be used to determine the offset or size of any field in the
123 #define CVC_CTL_OFFSET(field) ((uint32_t)&(((cvc_ctl_t *)0)->field))
124 #define CVC_CTL_SIZE(field) (sizeof (((cvc_ctl_t *)0)->field))
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/data/qualifier/
QualifierIPv6.java 63 String field = tokenizer.nextToken(); local
65 if (field == null) {
67 } else if (field.equals(":")) {
81 matcher = pattern.matcher(field);
84 Object ipv4Field = ipv4.parseValue(field);
  /onnv/onnv-gate/usr/src/common/openssl/crypto/asn1/
asn1t.h 286 #define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
287 (flags), (tag), offsetof(stname, field),\
288 #field, ASN1_ITEM_ref(type) }
297 #define ASN1_IMP_EX(stname, field, type, tag, ex) \
298 ASN1_EX_TYPE(ASN1_TFLG_IMPLICIT | ex, tag, stname, field, type)
300 #define ASN1_EXP_EX(stname, field, type, tag, ex) \
301 ASN1_EX_TYPE(ASN1_TFLG_EXPLICIT | ex, tag, stname, field, type)
303 /* Any defined by macros: the field used is in the table itself */
313 #define ASN1_SIMPLE(stname, field, type) ASN1_EX_TYPE(0,0, stname, field, type
    [all...]
  /onnv/onnv-gate/usr/src/common/net/wanboot/crypt/
cmn_test.c 67 getxdata(unsigned char *cp, char *field, int len)
73 t = xstrtoi(field, 2);
75 field += 2;
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/funcs/
tst.strtok.d 37 /(this->field = strtok(this->str, ",")) == NULL/
44 printf("%s\n", this->field);
48 /(this->field = strtok(NULL, ",")) == NULL/
55 printf("%s\n", this->field);
59 /(this->field = strtok(NULL, ",")) == NULL/
66 printf("%s\n", this->field);
70 /(this->field = strtok(NULL, ",")) == NULL/
77 printf("%s\n", this->field);
83 printf("unexpected field: %s\n", this->field);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/filesync/
base.c 330 char *field = "???"; local
363 field = "keyword";
368 field = gettext(TXT_noargs);
373 field = gettext(TXT_badver);
389 field = "source directory";
399 field = "destination directory";
405 field = "no source directory";
418 field = "missing base";
423 field = "level";
430 field = "file type"
    [all...]

Completed in 5522 milliseconds

1 2 3 4 5 6 7 8 910