Searched refs:field (Results 126 - 150 of 482) sorted by relevance

1234567891011>>

/freebsd-current/usr.sbin/makefs/ffs/
H A Dufs_inode.h94 #define DIP(ip, field) \
96 (ip)->i_ffs1_##field : (ip)->i_ffs2_##field)
/freebsd-current/contrib/kyua/utils/config/
H A Dlua_module.cpp77 /// containing the name of the field being indexed.
86 const std::string field = state.to_string(field_index); local
87 if (!field.empty() && field[0] == '_')
90 "found %s") % field);
141 /// \pre state(-2) The field to index into the table. Must be a string.
142 /// \pre state(-1) The value to set the indexed table field to.
158 throw config::value_error("Invalid field in configuration object "
185 /// current level. If the field does not exist, a new table is created.
186 /// \pre state(-1) The field t
[all...]
/freebsd-current/contrib/wpa/src/utils/
H A Dradiotap_iter.h12 uint8_t field; member in struct:radiotap_override
/freebsd-current/bin/ps/
H A Dps.h67 const char *field; /* xo field name */ member in struct:var
/freebsd-current/sys/dev/hyperv/vmbus/
H A Dvmbus_var.h146 #define VMBUS_PCPU_GET(sc, field, cpu) (sc)->vmbus_pcpu[(cpu)].field
147 #define VMBUS_PCPU_PTR(sc, field, cpu) &(sc)->vmbus_pcpu[(cpu)].field
/freebsd-current/sys/dev/mlx5/mlx5_en/
H A Den_hw_tls_rx.h39 #define MLX5E_TLS_RX_STAT_INC(tag, field, num) \
40 counter_u64_add((tag)->tls_rx->stats.field, num)
/freebsd-current/sys/dev/drm2/
H A Ddrm_linux_list.h273 #define hlist_entry(ptr, type, field) container_of(ptr, type, field)
281 #define hlist_for_each_entry(tp, p, head, field) \
283 p ? (tp = hlist_entry(p, typeof(*tp), field)): NULL; p = p->next)
285 #define hlist_for_each_entry_continue(tp, p, field) \
287 p ? (tp = hlist_entry(p, typeof(*tp), field)): NULL; p = p->next)
289 #define hlist_for_each_entry_from(tp, p, field) \
290 for (; p ? (tp = hlist_entry(p, typeof(*tp), field)): NULL; p = p->next)
/freebsd-current/sys/compat/linux/
H A Dlinux_videodev2_compat.h16 enum v4l2_field field; member in struct:l_v4l2_buffer
48 enum v4l2_field field; member in struct:l_v4l2_window
/freebsd-current/sys/cam/
H A Dcam_sim.h73 #define spriv_field0 sim_priv.entries[0].field
74 #define spriv_field1 sim_priv.entries[1].field
/freebsd-current/contrib/ncurses/form/
H A Dfrm_def.c55 (FIELD **)0, /* field */
104 /* we leave the loop with current pointing to the field after newfield */
126 if (form->field)
130 for (fields = form->field; *fields; fields++)
138 form->field = (FIELD **)0;
152 | E_CONNECTED - a field is already connected
153 | E_BAD_ARGUMENT - Invalid form pointer or field array
168 form->field = fields;
257 | If there are fields, position to first active field.
260 | E_BAD_ARGUMENT - Invalid form pointer or field arra
[all...]
H A Dfty_num.c174 | Function : static bool Check_This_Field(FIELD * field,
179 | Return Values : TRUE - field is valid
180 | FALSE - field is invalid
183 Check_This_Field(FIELD *field, const void *argp) argument
189 unsigned char *bp = (unsigned char *)field_buffer(field, 0);
278 set_field_buffer(field, 0, buf);
H A Dfty_regex.c293 | FIELD * field,
298 | Return Values : TRUE - field is valid
299 | FALSE - field is invalid
302 Check_RegularExpression_Field(FIELD *field MAYBE_UNUSED,
311 match = (regexec(ap->pRegExp, field_buffer(field, 0), 0, NULL, 0)
318 match = (step(field_buffer(field, 0), ap->compiled_expression)
/freebsd-current/contrib/ncurses/ncurses/tinfo/
H A DMKcaptab.sh113 #define add_alias(field) \\
114 if (source[n].field >= 0) { \\
115 (*actual)[n].field = strings + source[n].field; \\
/freebsd-current/sys/contrib/v4l/
H A Dvideodev2.h121 V4L2_FIELD_TOP = 2, /* top field only */
122 V4L2_FIELD_BOTTOM = 3, /* bottom field only */
129 V4L2_FIELD_INTERLACED_TB = 8, /* both fields interlaced, top field
130 first and the top field is
132 V4L2_FIELD_INTERLACED_BT = 9, /* both fields interlaced, top field
133 first and the bottom field is
136 #define V4L2_FIELD_HAS_TOP(field) \
137 ((field) == V4L2_FIELD_TOP ||\
138 (field) == V4L2_FIELD_INTERLACED ||\
139 (field)
283 enum v4l2_field field; member in struct:v4l2_pix_format
538 enum v4l2_field field; member in struct:v4l2_buffer
600 enum v4l2_field field; member in struct:v4l2_window
1550 __u32 field; /* 0: first field, 1: second field */ member in struct:v4l2_sliced_vbi_data
[all...]
/freebsd-current/sys/contrib/xen/
H A Dmemory.h46 * then the user has no addressing restriction. This field is not used by
504 #define XENMEM_SHARING_OP_FIELD_MAKE_GREF(field, val) \
505 (field) = (XENMEM_SHARING_OP_FIELD_IS_GREF_FLAG | val)
506 #define XENMEM_SHARING_OP_FIELD_IS_GREF(field) \
507 ((field) & XENMEM_SHARING_OP_FIELD_IS_GREF_FLAG)
508 #define XENMEM_SHARING_OP_FIELD_GET_GREF(field) \
509 ((field) & (~XENMEM_SHARING_OP_FIELD_IS_GREF_FLAG))
657 * nr_frames field.
/freebsd-current/sys/ufs/ufs/
H A Dinode.h237 #define DIP(ip, field) (I_IS_UFS1(ip) ? (ip)->i_din1->d##field : \
238 (ip)->i_din2->d##field)
239 #define DIP_SET(ip, field, val) do { \
241 (ip)->i_din1->d##field = (val); \
243 (ip)->i_din2->d##field = (val); \
/freebsd-current/sys/dev/aacraid/
H A Daacraid_endian.c36 #define TOH2(field, bits) field = le##bits##toh(field)
37 #define TOH(field, bits) TOH2(field, bits)
39 #define TOLE2(field, bits) field = htole##bits(field)
40 #define TOLE(field, bits) TOLE2(field, bit
[all...]
/freebsd-current/stand/libsa/
H A Dufsread.c157 #define DIP(field) dp2.field
159 #define DIP(field) dp1.field
161 #define DIP(field) fs.fs_magic == FS_UFS1_MAGIC ? dp1.field : dp2.field
/freebsd-current/contrib/tzdata/
H A Dziguard.awk30 function get_minutes(field, \
33 sign = field ~ /^-/ ? -1 : 1
34 hours = +field
35 if (field ~ /:/) {
36 minutes = field
/freebsd-current/lib/libusb/
H A Dlibusb20_int.h61 #define LIBUSB20_DEFINE(n,field) \
62 libusb20_##field##_t *field;
64 #define LIBUSB20_DECLARE(n,field) \
65 /* .field = */ n##_##field,
/freebsd-current/contrib/lib9p/pytest/
H A Dp9conn.py1059 for field in statobj._fields:
1060 if field in kwargs:
1061 if field in forbid:
1062 raise ValueError('cannot wstat a stat.{0}'.format(field))
1063 statobj[field] = kwargs.pop(field)
1065 if field in forbid or statobj[field] is None:
1066 statobj[field] = nochange[field]
[all...]
/freebsd-current/sys/contrib/dev/mediatek/mt76/
H A Dmt76x02_eeprom.c46 enum mt76x02_eeprom_field field,
49 if (field + len > dev->mt76.eeprom.size)
52 memcpy(dest, dev->mt76.eeprom.data + field, len);
45 mt76x02_eeprom_copy(struct mt76x02_dev *dev, enum mt76x02_eeprom_field field, void *dest, int len) argument
/freebsd-current/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-current/sys/dev/qlnx/qlnxe/
H A Dbcm_osal.h303 #define OSAL_LIST_FIRST_ENTRY(list, type, field) \
338 #define OSAL_LIST_NEXT(entry, field, type) \
339 (type *)((&((entry)->field))->next)
341 #define OSAL_LIST_FOR_EACH_ENTRY(entry, list, field, type) \
342 for (entry = OSAL_LIST_FIRST_ENTRY(list, type, field); \
344 entry = OSAL_LIST_NEXT(entry, field, type))
346 #define OSAL_LIST_FOR_EACH_ENTRY_SAFE(entry, tmp_entry, list, field, type) \
347 for (entry = OSAL_LIST_FIRST_ENTRY(list, type, field), \
348 tmp_entry = (entry) ? OSAL_LIST_NEXT(entry, field, type) : NULL; \
351 tmp_entry = (entry) ? OSAL_LIST_NEXT(entry, field, typ
[all...]
/freebsd-current/usr.bin/mail/
H A Dutil.c124 * pointer (or NULL if the desired header field is not available).
127 hfield(const char *field, struct message *mp) argument
143 if ((hfield = ishfield(linebuf, colon, field)) != NULL)
150 * Return the next header field found in the given message.
207 * the desired breed. Return the field body, or 0.
211 ishfield(char *linebuf, char *colon, const char *field) argument
216 if (strcasecmp(linebuf, field) != 0) {
563 * See if the given header field is supposed to be ignored.
566 isign(const char *field, struct ignoretab ignore[2]) argument
576 istrncpy(realfld, field, sizeo
[all...]

Completed in 234 milliseconds

1234567891011>>