Searched refs:field (Results 101 - 125 of 352) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/ncurses/ncurses/tinfo/
H A DMKcaptab.sh86 #define add_alias(field) \\
87 if (source[n].field >= 0) { \\
88 (*actual)[n].field = strings + source[n].field; \\
/freebsd-9.3-release/contrib/ofed/management/libibmad/src/
H A Dmad.c53 mad_decode_field(uint8_t *buf, int field, void *val) argument
55 ib_field_t *f = ib_mad_f + field;
57 if (!field) {
73 mad_encode_field(uint8_t *buf, int field, void *val) argument
75 ib_field_t *f = ib_mad_f + field;
77 if (!field) {
/freebsd-9.3-release/crypto/openssl/crypto/ec/
H A Decp_smpl.c119 * non-trivial representations of field elements if necessary
133 BN_init(&group->field);
142 BN_free(&group->field);
149 BN_clear_free(&group->field);
156 if (!BN_copy(&dest->field, &src->field))
193 /* group->field */
194 if (!BN_copy(&group->field, p))
196 BN_set_negative(&group->field, 0);
217 group->a_is_minus3 = (0 == BN_cmp(tmp_a, &group->field));
[all...]
/freebsd-9.3-release/contrib/gcc/cp/
H A Dinit.c185 tree field; local
189 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
191 if (TREE_CODE (field) != FIELD_DECL)
198 if (!static_storage_p || !zero_init_p (TREE_TYPE (field)))
200 tree value = build_zero_init (TREE_TYPE (field),
203 CONSTRUCTOR_APPEND_ELT(v, field, value);
206 /* For unions, only the first field i
580 tree field; local
889 initializing_context(tree field) argument
908 member_init_ok_or_else(tree field, tree type, tree member_name) argument
954 tree field; local
2174 tree field; local
[all...]
H A Dmethod.c596 tree field = fields;
599 if (TREE_CODE (field) != FIELD_DECL)
602 expr_type = TREE_TYPE (field);
603 if (DECL_NAME (field))
605 if (VFIELD_NAME_P (DECL_NAME (field)))
609 /* Just use the field; anonymous types can't have
614 /* Compute the type of "init->field". If the copy-constructor
616 the field is "T", then the type will usually be "const
623 if (DECL_MUTABLE_P (field))
628 init = build3 (COMPONENT_REF, expr_type, init, field, NULL_TRE
594 tree field = fields; local
686 tree field = fields; local
[all...]
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-bootmem.c88 * Logically it is the same as "sizeof(s::field)" in C++, but
91 #define SIZEOF_FIELD(s, field) sizeof(((s*)NULL)->field)
99 * "field" is the member name of the cvmx_bootmem_desc_t to read.
100 * Regardless of the type of the field, the return type is always
103 #define CVMX_BOOTMEM_DESC_GET_FIELD(field) \
105 offsetof(cvmx_bootmem_desc_t, field), \
106 SIZEOF_FIELD(cvmx_bootmem_desc_t, field))
114 * "field" is the member name of the cvmx_bootmem_desc_t to write.
116 #define CVMX_BOOTMEM_DESC_SET_FIELD(field, valu
[all...]
H A Dcvmx-l2c.c83 uint32_t field; local
93 * of the UMSK[] field in the L2C_SPAR register.
95 field = (core & 0x3) * 8;
97 /* Return the UMSK[] field from the appropriate L2C_SPAR register based
104 return((cvmx_read_csr(CVMX_L2C_SPAR0) & (0xFF << field)) >> field);
106 return((cvmx_read_csr(CVMX_L2C_SPAR1) & (0xFF << field)) >> field);
108 return((cvmx_read_csr(CVMX_L2C_SPAR2) & (0xFF << field)) >> field);
117 uint32_t field; local
152 mask << field); local
157 mask << field); local
162 mask << field); local
167 mask << field); local
[all...]
/freebsd-9.3-release/sys/boot/common/
H A Dufsread.c158 #define DIP(field) dp2.field
160 #define DIP(field) dp1.field
162 #define DIP(field) fs.fs_magic == FS_UFS1_MAGIC ? dp1.field : dp2.field
/freebsd-9.3-release/contrib/binutils/opcodes/
H A Dmep-asm.c69 CGEN_KEYWORD *keyword_table, long *field)
74 err = cgen_parse_keyword (cd, strp, keyword_table, field);
81 *field = value;
90 long *field)
92 return cgen_parse_keyword (cd, strp, & mep_cgen_opval_h_cr_fmax, field);
98 long *field)
100 return cgen_parse_keyword (cd, strp, & mep_cgen_opval_h_ccr_fmax, field);
106 CGEN_KEYWORD *keyword_table, long *field)
110 err = cgen_parse_keyword (cd, strp, keyword_table, field);
113 if (*field !
67 parse_csrn(CGEN_CPU_DESC cd, const char **strp, CGEN_KEYWORD *keyword_table, long *field) argument
86 parse_fmax_cr(CGEN_CPU_DESC cd, const char **strp, CGEN_KEYWORD *keyword_table ATTRIBUTE_UNUSED, long *field) argument
94 parse_fmax_ccr(CGEN_CPU_DESC cd, const char **strp, CGEN_KEYWORD *keyword_table ATTRIBUTE_UNUSED, long *field) argument
104 parse_tpreg(CGEN_CPU_DESC cd, const char ** strp, CGEN_KEYWORD *keyword_table, long *field) argument
118 parse_spreg(CGEN_CPU_DESC cd, const char ** strp, CGEN_KEYWORD *keyword_table, long *field) argument
132 parse_mep_align(CGEN_CPU_DESC cd, const char ** strp, enum cgen_operand_type type, long *field) argument
195 parse_mep_alignu(CGEN_CPU_DESC cd, const char ** strp, enum cgen_operand_type type, unsigned long *field) argument
[all...]
/freebsd-9.3-release/lib/libusb/
H A Dlibusb20_int.h66 #define LIBUSB20_DEFINE(n,field) \
67 libusb20_##field##_t *field;
69 #define LIBUSB20_DECLARE(n,field) \
70 /* .field = */ n##_##field,
/freebsd-9.3-release/tools/tools/net80211/wlanstats/
H A Dstatfoo.c43 int i, j, field; local
45 j = field = 0;
61 if (field > 127) {
68 sf->fmts[j++] = 0x80 | field;
69 sf->fields[field++] = i;
/freebsd-9.3-release/crypto/openssl/crypto/bn/
H A Dbn_nist.c358 int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, argument
374 field = &_bignum_nist_p_192; /* just to make sure */
377 return BN_nnmod(r, a, field, ctx);
379 i = BN_ucmp(field, a);
442 int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, argument
462 field = &_bignum_nist_p_224; /* just to make sure */
465 return BN_nnmod(r, a, field, ctx);
467 i = BN_ucmp(field, a);
553 int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, argument
573 field
691 BN_nist_mod_384(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, BN_CTX *ctx) argument
821 BN_nist_mod_521(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, BN_CTX *ctx) argument
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_mount.c281 * Sanity check AG count, size fields against data size field
1268 * a delta to a specified field in the in-core superblock. Simply
1269 * switch on the field indicated and apply the delta to that field.
1276 xfs_mod_incore_sb_unlocked(xfs_mount_t *mp, xfs_sb_field_t field, argument
1285 * on the indicated field. Apply the delta to the
1286 * proper field. If the fields value would dip below
1289 switch (field) {
1433 * xfs_mod_incore_sb() is used to change a field in the in-core
1439 xfs_mod_incore_sb(xfs_mount_t *mp, xfs_sb_field_t field, in argument
1906 xfs_icsb_counter_disabled( xfs_mount_t *mp, xfs_sb_field_t field) argument
1915 xfs_icsb_disable_counter( xfs_mount_t *mp, xfs_sb_field_t field) argument
1949 xfs_icsb_enable_counter( xfs_mount_t *mp, xfs_sb_field_t field, uint64_t count, uint64_t resid) argument
2041 xfs_icsb_balance_counter( xfs_mount_t *mp, xfs_sb_field_t field, int flags) argument
2088 xfs_icsb_modify_counters_int( xfs_mount_t *mp, xfs_sb_field_t field, int delta, int rsvd, int flags) argument
2185 xfs_icsb_modify_counters( xfs_mount_t *mp, xfs_sb_field_t field, int delta, int rsvd) argument
2198 xfs_icsb_modify_counters_locked( xfs_mount_t *mp, xfs_sb_field_t field, int delta, int rsvd) argument
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Djv-lang.c345 struct value *field = NULL; local
376 nfields++; /* Add one for dummy "class" field. */
378 TYPE_FIELDS (type) = (struct field *)
379 TYPE_ALLOC (type, sizeof (struct field) * nfields);
381 memset (TYPE_FIELDS (type), 0, sizeof (struct field) * nfields);
420 nfields--; /* First set up dummy "class" field. */
435 field = value_ind (fields);
438 { /* Re-use field value for next field. */
439 VALUE_ADDRESS (field)
[all...]
H A Dstabsread.c75 examines this field better be able to deal. */
78 struct field field; member in struct:field_info::nextfield
148 static struct field *read_args (char **, int, struct objfile *, int *, int *);
459 #define VISIBILITY_PRIVATE '0' /* Stabs character for private field */
461 #define VISIBILITY_PUBLIC '2' /* Stabs character for public field */
867 TYPE_FIELDS (ftype) = (struct field *)
868 TYPE_ALLOC (ftype, nsemi * sizeof (struct field));
1735 = (struct field *) TYPE_ALLOC (func_type,
1736 num_args * sizeof (struct field));
[all...]
/freebsd-9.3-release/contrib/ncurses/form/
H A Dfty_num.c138 | Function : static bool Check_This_Field(FIELD * field,
143 | Return Values : TRUE - field is valid
144 | FALSE - field is invalid
147 Check_This_Field(FIELD *field, const void *argp) argument
153 unsigned char *bp = (unsigned char *)field_buffer(field, 0);
241 set_field_buffer(field, 0, buf);
H A Dfty_regex.c258 | FIELD * field,
263 | Return Values : TRUE - field is valid
264 | FALSE - field is invalid
267 Check_RegularExpression_Field(FIELD *field, const void *argp) argument
275 match = (regexec(ap->pRegExp, field_buffer(field, 0), 0, NULL, 0)
282 match = (step(field_buffer(field, 0), ap->compiled_expression)
/freebsd-9.3-release/tools/tools/bus_autoconf/
H A Dbus_sections.c112 format_get_field(const char *section, const char *field, argument
133 if (strcmp(field, psub->name) == 0) {
144 /* extract bit-field */
148 warnx("Field '%s' not found in '%s'", field, pfi->name);
177 /* accumulate non-field delimiters */
198 * Check for new field, format is:
/freebsd-9.3-release/usr.sbin/rpc.umntall/
H A Dmounttab.c48 static void badline(const char *field, const char *bad);
226 badline(const char *field, const char *bad) argument
228 syslog(LOG_ERR, "bad mounttab %s field '%s'", field,
/freebsd-9.3-release/sbin/fsck_ffs/
H A Dfsck.h83 #define DIP(dp, field) \
85 (dp)->dp1.field : (dp)->dp2.field)
87 #define DIP_SET(dp, field, val) do { \
89 (dp)->dp1.field = (val); \
91 (dp)->dp2.field = (val); \
/freebsd-9.3-release/usr.bin/mail/
H A Dutil.c128 * pointer (or NULL if the desired header field is not available).
131 hfield(const char *field, struct message *mp) argument
147 if ((hfield = ishfield(linebuf, colon, field)) != NULL)
154 * Return the next header field found in the given message.
211 * the desired breed. Return the field body, or 0.
215 ishfield(char linebuf[], char *colon, const char *field) argument
220 if (strcasecmp(linebuf, field) != 0) {
568 * See if the given header field is supposed to be ignored.
571 isign(const char *field, struct ignoretab ignore[2]) argument
581 istrncpy(realfld, field, sizeo
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/txt_db/
H A Dtxt_db.c164 "wrong number of fields on line %ld (looking for field %d, got %d, '%s' left)\n",
222 int TXT_DB_create_index(TXT_DB *db, int field, int (*qual) (char **), argument
229 if (field >= db->num_fields) {
250 if (db->index[field] != NULL)
251 lh_free(db->index[field]);
252 db->index[field] = idx;
253 db->qual[field] = qual;
/freebsd-9.3-release/contrib/ofed/libibverbs/src/
H A Dinit.c295 char *field; local
311 field = strsep(&config, "\n\t ");
313 if (strcmp(field, "driver") == 0) {
317 field = strsep(&config, "\n\t ");
322 "driver name '%s'.\n", field);
326 driver_name->name = strdup(field);
329 "driver name '%s'.\n", field);
338 "'%s' in file '%s'.\n", field, path);
/freebsd-9.3-release/sys/cam/
H A Dcam_sim.h84 #define spriv_field0 sim_priv.entries[0].field
85 #define spriv_field1 sim_priv.entries[1].field
/freebsd-9.3-release/sys/compat/linux/
H A Dlinux_videodev2.h147 V4L2_FIELD_TOP = 2, /* top field only */
148 V4L2_FIELD_BOTTOM = 3, /* bottom field only */
156 #define V4L2_FIELD_HAS_TOP(field) \
157 ((field) == V4L2_FIELD_TOP ||\
158 (field) == V4L2_FIELD_INTERLACED ||\
159 (field) == V4L2_FIELD_SEQ_TB ||\
160 (field) == V4L2_FIELD_SEQ_BT)
161 #define V4L2_FIELD_HAS_BOTTOM(field) \
162 ((field) == V4L2_FIELD_BOTTOM ||\
163 (field)
294 enum v4l2_field field; member in struct:v4l2_pix_format
527 enum v4l2_field field; member in struct:v4l2_buffer
584 enum v4l2_field field; member in struct:v4l2_window
1010 __u32 field; /* 0: first field, 1: second field */ member in struct:v4l2_sliced_vbi_data
[all...]

Completed in 322 milliseconds

1234567891011>>