/osnet-11/usr/src/cmd/sendmail/db/include/ |
H A D | 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 [all...] |
H A D | 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 [all...] |
H A D | 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 b [all...] |
/osnet-11/usr/src/lib/krb5/plugins/kdb/db2/libdb2/include/ |
H A D | 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...] |
/osnet-11/usr/src/cmd/sendmail/include/sm/ |
H A D | 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 [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | shellwords.pl | 14 local(@words,$snippet,$field); 18 $field = ''; 43 $field .= $snippet; 45 push(@words, $field);
|
H A D | termcap.pl | 23 local($TERMCAP,$_,$entry,$loop,$field); 64 foreach $field (split(/:[\s:\\]*/,$TERMCAP)) { 65 if ($field =~ /^\w\w$/) { 66 $TC{$field} = 1; 68 elsif ($field =~ /^(\w\w)#(.*)/) { 71 elsif ($field =~ /^(\w\w)=(.*)/) {
|
/osnet-11/usr/src/lib/libparted/common/libparted/fs/jfs/ |
H A D | 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 i [all...] |
/osnet-11/usr/src/lib/scsi/plugins/ses/SUN-Storage-J4500/common/ |
H A D | loki.c | 81 char *field; local 146 * fields, where each field can be either a key ("Fan PartNUM") or a 147 * value. If the field length is less than our shortest expected 155 for (field = (char *)stringin + 4; 156 field + fieldlen <= (char *)stringin + len; field += fieldlen) { 157 if (strncmp(field, "Storage J4500", 13) == 0) { 164 field += fieldlen; 165 if (field + fieldlen > (char *)stringin + len) 170 LIBSES_PROP_PART, field, fieldle [all...] |
/osnet-11/usr/src/lib/libeti/form/common/ |
H A D | field.c | 40 * default field 113 f->type = fsrc->type; /* copy field type */ 189 dup_field(FIELD *field, int frow, int fcol) argument 191 /* FIELD * field; field to duplicate */ 198 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) { 205 f->rows = field->rows; 206 f->cols = field->cols; 207 f->drows = field->drows; 208 f->dcols = field 238 link_field(FIELD *field, int frow, int fcol) argument [all...] |
H A D | form.c | 60 (FIELD **) 0, /* field */ 73 * insert - insert field f into sorted list pointed 115 FIELD **field; local 119 field = f->field; 127 for (i = pmin; i <= pmax; ++i) { /* for each field */ 128 field[i]->index = i; 129 field[i]->page = page; 131 p = insert(field[i], p); 138 /* merge - xmax/ymax is the minimum window size to hold field 224 new_form(FIELD **field) argument [all...] |
H A D | chg_field.c | 38 #define first(f) (f->field [Pmin(f, P(f))]) 39 #define last(f) (f->field [Pmax(f, P(f))]) 40 #define sfirst(f) (f->field [Smin(f, P(f))]) 41 #define slast(f) (f->field [Smax(f, P(f))]) 45 /* next - return next active field on page after f(user defined order) */ 50 FIELD **p = t->field + f->index; 51 FIELD **pmin = t->field + Pmin(t, P(t)); 52 FIELD **pmax = t->field + Pmax(t, P(t)); 62 /* prev - return previous active field on page before f */ 67 FIELD **p = t->field [all...] |
H A D | llib-lform | 85 dup_field(field, frow, fcol) 86 FIELD *field; 92 link_field(field, frow, fcol) 93 FIELD *field; 274 new_form(field) 275 FIELD **field;
|
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/ |
H A D | asn1_encode.c | 378 const struct field_info *field, 397 assert(a->field != NULL); 398 return encode_a_field(buf, val, a->field, retlen); 437 const struct field_info *field, 445 switch (field->ftype) { 450 retval = asn1_encode_integer(buf, (asn1_intmax) field->dataoff, 464 * The field holds a pointer to the array of objects. So the 466 * field->atype must help us dereference. 468 dataptr = (const char *)val + field->dataoff; 469 lenptr = (const char *)val + field 436 encode_a_field(asn1buf *buf, const void *val, const struct field_info *field, unsigned int *retlen) argument [all...] |
/osnet-11/usr/src/lib/pyzfs/common/ |
H A D | userspace.py | 40 # map from property name prefix -> (field name, isgroup) 50 (field, isgroup) = props[prop] 51 if field not in options.fields: 62 """Return a dict("field": value) for this domain (string) + rid (int)""" 107 (field, isgroup) = props[prop] 128 value = v[field + ".sort"] = value + v[field + ".sort"] 131 v[field] = str(value) 133 v[field] = zfs.util.nicenum(value) 155 u = _("%s [-niHp] [-o field[, [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/utils/port/ |
H A D | CheckIn | 65 my @field; 66 push(@field, $+) while $line =~ 68 push(@field, undef) if (substr($line, -1, 1) eq ','); 69 my $p = shift(@field); 70 my $f = shift(@field); 72 $file{$p}{$f} = defined($field[3]) ? $field[3] : '';
|
H A D | EditedFiles | 96 my @field; 97 push(@field, $+) while $line =~ 99 push(@field, undef) if (substr($line, -1, 1) eq ','); 100 my $p = shift(@field); 101 my $f = shift(@field); 103 $file{$p}{$f} = defined($field[3]) ? $field[3] : '';
|
/osnet-11/usr/src/lib/rad/libjniutil/common/ |
H A D | libjniutil.h | 41 * LOADPOINTER reads a pointer out of a long field, verifying the class 48 #define GETLONGFIELD(env, class, type, obj, field) \ 50 (type *)(*env)->GetLongField(env, obj, field))
|
/osnet-11/usr/src/lib/libdhcputil/common/ |
H A D | dhcp_symbol.c | 355 * dsym_get_cat_by_name(): given a category field, returns the pointer to its 421 * dsym_parse_cat(): given a category field, returns the category value 424 * input: const char *: a category field 430 dsym_parse_cat(const char *field, dsym_category_t *cat) argument 436 ret = dsym_get_cat_by_name(field, &entry, B_TRUE); 454 * dsym_parse_intrange(): given a DHCP integer field, returns the value 456 * input: const char *: a DHCP code field 464 dsym_parse_intrange(const char *field, int *intval, int min, int max) argument 470 ret = dsym_get_long(field, &longval); 538 * dsym_get_type_by_name(): given a type field, return 580 dsym_parse_type(char *field, dsym_cdtype_t *type) argument 659 char *field; local [all...] |
/osnet-11/usr/src/grub/grub2/include/grub/ |
H A D | list.h | 52 #define GRUB_FIELD_MATCH(ptr, type, field) \ 53 ((char *) &(ptr)->field == (char *) &((type) (ptr))->field)
|
/osnet-11/usr/src/lib/libfru/include/ |
H A D | libfru.h | 125 } field; member in union:__anon1656 143 } field; member in union:__anon1658 162 /* segment descriptor field perm. */ 179 } field; member in union:__anon1660 192 } field; member in union:__anon1662
|
/osnet-11/usr/src/lib/libfru/libfru/ |
H A D | Ancestor.h | 48 Ancestor(Str field, fru_tag_t t, const fru_regdef_t *d);
|
/osnet-11/usr/src/lib/libc/sparc/sys/ |
H A D | _lwp_mutex_unlock.s | 37 clr %o3 ! clear lock/get waiter field
|
/osnet-11/usr/src/lib/nametoaddr/straddr/common/ |
H A D | straddr.c | 398 * The "field" parameter signifies which field to compare the token 403 searchhost(struct netconfig *netconfigp, char *token, int field, char *hostbuf) argument 482 cmpstr = (field == FIELD1)? fileaddr : filehost; 483 retstr = (field == FIELD1)? filehost : fileaddr; 487 if (field == FIELD2) { 512 * The "field" parameter signifies which field to compare the token 517 searchserv(struct netconfig *netconfigp, char *token, int field, char *servname) argument 550 cmpstr = (field [all...] |
/osnet-11/usr/src/lib/nsswitch/compat/common/ |
H A D | getspent.c | 125 #define override(field, longp) \ 126 if ((field) != 0) { \ 128 long val = strtol(field, &end, 10); \
|