Searched refs:field (Results 176 - 200 of 352) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/ntp/sntp/libevent/include/event2/
H A Dutil.h531 #define evutil_offsetof(type, field) offsetof(type, field)
533 #define evutil_offsetof(type, field) ((off_t)(&((type *)0)->field))
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgdbtypes.c131 static void print_arg_types (struct field *, int, int);
644 TYPE_FIELDS (result_type) = (struct field *)
645 TYPE_ALLOC (result_type, 2 * sizeof (struct field));
646 memset (TYPE_FIELDS (result_type), 0, 2 * sizeof (struct field));
755 (struct field *) TYPE_ALLOC (result_type, sizeof (struct field));
756 memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
798 TYPE_FIELDS (result_type) = (struct field *)
799 TYPE_ALLOC (result_type, 1 * sizeof (struct field));
800 memset (TYPE_FIELDS (result_type), 0, sizeof (struct field));
1742 append_composite_type_field(struct type *t, char *name, struct type *field) argument
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dc-typeck.c1719 tree field;
1722 to the field elements. Use a binary search on this array to quickly
1731 field = TYPE_FIELDS (type);
1737 field = field_array[bot+half];
1739 if (DECL_NAME (field) == NULL_TREE)
1744 field = field_array[bot++];
1745 if (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE
1746 || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE)
1748 tree anon = lookup_field (field, component);
1751 return tree_cons (NULL_TREE, field, ano
1710 tree field; local
1800 tree field = NULL; local
3481 tree field; local
6043 find_init_member(tree field) argument
6109 output_init_element(tree value, bool strict_string, tree type, tree field, int pending) argument
[all...]
H A Dvarasm.c1048 /* If the symbol has a SYMBOL_REF_BLOCK field, update it based
4227 tree field = 0;
4241 field = TYPE_FIELDS (type);
4250 by getting the field from the TREE_LIST element.
4258 cnt++, field = field ? TREE_CHAIN (field) : 0)
4263 /* The element in a union constructor specifies the proper field
4268 field = ce->index;
4274 if (field
4201 tree field = 0; local
[all...]
/freebsd-9.3-release/contrib/gcc/config/sparc/
H A Dsparc.c4442 - INTREGS_P: the record contains at least one field or sub-field
4444 - FP_REGS_P: the record contains at least one field or sub-field
4446 - PACKED_P: the record contains at least one field that is packed.
4453 tree field;
4455 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4441 tree field; local
4642 tree field; local
4798 tree field; local
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/ec/
H A Dec_asn1.c310 static int ec_asn1_group2fieldid(const EC_GROUP *group, X9_62_FIELDID *field) argument
315 if (group == NULL || field == NULL)
319 if (field->fieldType != NULL)
320 ASN1_OBJECT_free(field->fieldType);
321 if (field->p.other != NULL)
322 ASN1_TYPE_free(field->p.other);
325 /* set OID for the field */
326 if ((field->fieldType = OBJ_nid2obj(nid)) == NULL) {
342 field->p.prime = BN_to_ASN1_INTEGER(tmp, NULL);
343 if (field
[all...]
/freebsd-9.3-release/sys/i386/i386/
H A Dpmap.c955 * active on another processor after its pm_active field is checked by
958 * processor before its pm_active field is checked but due to
962 * The kernel page table is exempt because its pm_active field is
2256 int bit, field, freed;
2286 for (field = 0; field < _NPCM; field++) {
2287 for (inuse = ~pc->pc_map[field] & pc_freemask[field];
2290 pv = &pc->pc_pventry[field * 3
2255 int bit, field, freed; local
2385 int idx, field, bit; local
2441 int bit, field; local
4442 int field, idx; local
[all...]
/freebsd-9.3-release/contrib/binutils/binutils/
H A Ddebug.c62 This is linked through the next_id field of debug_class_type. */
160 /* A mark field which indicates whether the struct has already been
271 /* A field in a struct or union. */
275 /* Name of the field. */
277 /* Type of the field. */
279 /* Visibility of the field. */
288 /* Bit position of the field in the struct. */
290 /* Size of the field in bits. */
1700 /* Make a field for a struct. The second argument is the name. The
1701 third argument is the type of the field
2247 debug_get_field_type(void *handle ATTRIBUTE_UNUSED, debug_field field) argument
2257 debug_get_field_name(void *handle ATTRIBUTE_UNUSED, debug_field field) argument
2267 debug_get_field_bitpos(void *handle ATTRIBUTE_UNUSED, debug_field field) argument
2277 debug_get_field_bitsize(void *handle ATTRIBUTE_UNUSED, debug_field field) argument
2287 debug_get_field_visibility(void *handle ATTRIBUTE_UNUSED, debug_field field) argument
2297 debug_get_field_physname(void *handle ATTRIBUTE_UNUSED, debug_field field) argument
[all...]
/freebsd-9.3-release/contrib/dtc/libfdt/
H A Dlibfdt.h143 #define fdt_get_header(fdt, field) \
144 (fdt32_to_cpu(((const struct fdt_header *)(fdt))->field))
/freebsd-9.3-release/contrib/libucl/uthash/
H A Dutlist.h440 #define LL_SEARCH_SCALAR(head,out,field,val) \
441 LL_SEARCH_SCALAR2(head,out,field,val,next)
443 #define LL_SEARCH_SCALAR2(head,out,field,val,next) \
446 if ((out)->field == (val)) break; \
702 #define CDL_SEARCH_SCALAR(head,out,field,val) \
703 CDL_SEARCH_SCALAR2(head,out,field,val,next)
705 #define CDL_SEARCH_SCALAR2(head,out,field,val,next) \
708 if ((out)->field == (val)) break; \
/freebsd-9.3-release/contrib/pf/pfctl/
H A Dpfctl_parser.h176 #define SIMPLEQ_FOREACH(var, head, field) \
179 (var) = SIMPLEQ_NEXT(var, field))
/freebsd-9.3-release/sbin/pfctl/missing/altq/
H A Daltq_var.h163 #define TAILQ_FOREACH(var, head, field) \
164 for (var = TAILQ_FIRST(head); var; var = TAILQ_NEXT(var, field))
/freebsd-9.3-release/sys/cam/
H A Dcam_periph.h96 #define ppriv_field0 periph_priv.entries[0].field
97 #define ppriv_field1 periph_priv.entries[1].field
/freebsd-9.3-release/sys/contrib/altq/altq/
H A Daltq_var.h159 #define TAILQ_FOREACH(var, head, field) \
160 for (var = TAILQ_FIRST(head); var; var = TAILQ_NEXT(var, field))
/freebsd-9.3-release/sys/contrib/libfdt/
H A Dlibfdt.h143 #define fdt_get_header(fdt, field) \
144 (fdt32_to_cpu(((const struct fdt_header *)(fdt))->field))
/freebsd-9.3-release/sys/dev/cxgb/ulp/iw_cxgb/
H A Diw_cxgb_provider.h43 #define container_of(p, stype, field) ((stype *)(((uint8_t *)(p)) - offsetof(stype, field)))
/freebsd-9.3-release/contrib/sendmail/src/
H A Dheaders.c188 /* if the field is null, go ahead and use the default */
194 /* security scan: long field names are end-of-header */
534 ** field -- the name of the header field (will not be copied).
535 ** value -- the value of the field (will be copied).
544 ** o field and value must be in internal format, i.e.,
547 ** - what to copy (field/value)
552 allocheader(field, value, flags, rp, space)
553 char *field;
563 s = stab(field, ST_HEADE
[all...]
/freebsd-9.3-release/sys/mips/rmi/dev/sec/
H A Ddesc.h55 #define GET_FIELD(word,field) \
56 ((word) & (field ## _MASK)) >> (field ## _LSB)
58 #define FIELD_VALUE(field,value) (((value) & (field ## _BITS)) << (field ## _LSB))
63 #define SET_FIELD(word,field,value) \
64 { (word) |= (((value) & (field ## _BITS)) << (field ## _LSB)); }
69 #define CLEAR_SET_FIELD(word,field,valu
[all...]
/freebsd-9.3-release/contrib/gcc/cp/
H A Ddecl2.c251 If FUNCTION is a destructor, then we must add the `auto-delete' field
798 error ("member %qD conflicts with virtual function table field name",
871 error ("field initializer is not constant");
949 error ("bit-field %qD with non-integral type", value);
955 error ("cannot declare %qD to be a bit-field type", value);
965 error ("cannot declare bit-field %qD with function type",
979 error ("static member %qD cannot be a bit-field", value);
1022 tree field;
1029 for (field = TYPE_FIELDS (type);
1030 field !
1019 tree field; local
[all...]
H A Ddecl.c1582 by field decls, there is extra work to do so that
2340 contains a field of pointer to member type? */
3643 tree field, type;
3645 for (field = TYPE_FIELDS (t); field; field = TREE_CHAIN (field))
3646 if (TREE_CODE (field) == FIELD_DECL)
3648 type = TREE_TYPE (field);
3653 "in anonymous aggregate", field);
3633 tree field, type; local
3960 tree field = lookup_field (context, DECL_NAME (decl), 0, false); local
3992 tree field = check_classfn (context, decl, local
4447 next_initializable_field(tree field) argument
4562 tree field; local
4610 CONSTRUCTOR_APPEND_ELT (CONSTRUCTOR_ELTS (new_init), field, field_init); local
6547 tree field, fields; local
[all...]
/freebsd-9.3-release/contrib/wpa/wpa_supplicant/
H A Dctrl_iface.c377 wpa_printf(MSG_DEBUG, "CTRL_IFACE: field=%s id=%d", rsp, id);
430 wpa_printf(MSG_DEBUG, "CTRL_IFACE: Unknown field '%s'", rsp);
1435 char field[30]; local
1439 len = os_strlcpy(field, _field, sizeof(field));
1440 if (len >= sizeof(field))
1442 strict = os_strchr(field, ' ');
1450 field, strict ? strict : "");
1452 if (os_strcmp(field, "eap") == 0) {
1458 if (os_strcmp(field, "pairwis
[all...]
/freebsd-9.3-release/sys/amd64/amd64/
H A Dpmap.c957 * active on another processor after its pm_active field is checked by
960 * processor before its pm_active field is checked but due to
964 * The kernel page table is exempt because its pm_active field is
2139 int bit, field, freed;
2175 for (field = 0; field < _NPCM; field++) {
2176 for (inuse = ~pc->pc_map[field] & pc_freemask[field];
2179 pv = &pc->pc_pventry[field * 6
2138 int bit, field, freed; local
2263 int idx, field, bit; local
2317 int bit, field; local
2502 int bit, field; local
4423 int allfree, field, freed, idx; local
[all...]
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/sys/fs/
H A Dzfs.h610 * vdev aux states. When a vdev is in the CANT_OPEN state, the aux field
728 #define VDEV_STAT_VALID(field, uint64_t_field_count) \
730 (offsetof(vdev_stat_t, field) + sizeof(((vdev_stat_t *)NULL)->field)))
/freebsd-9.3-release/sys/ofed/drivers/net/mlx4/
H A Den_netdev.c53 u8 field; local
59 field = 1 << (vid & 0x1f);
62 if (priv->vlan_unregister[idx] & field)
63 priv->vlan_unregister[idx] &= ~field;
65 priv->vlan_register[idx] |= field;
66 priv->vlans[idx] |= field;
74 u8 field; local
80 field = 1 << (vid & 0x1f);
83 if (priv->vlan_register[idx] & field)
84 priv->vlan_register[idx] &= ~field;
[all...]
/freebsd-9.3-release/contrib/binutils/include/opcode/
H A Dia64.h278 opcode field, and zeroes indicating those bits which need not
299 /* Values defined for the flags field of a struct ia64_opcode. */
357 field[4]; /* no operand has more than this many bit-fields */ member in struct:ia64_operand
364 /* Values defined for the flags field of a struct ia64_operand. */

Completed in 456 milliseconds

1234567891011>>