Searched refs:field (Results 276 - 300 of 456) sorted by relevance

<<111213141516171819

/freebsd-13-stable/sys/cam/scsi/
H A Dscsi_all.h2851 #define SBDC_IS_PRESENT(bdc, length, field) \
2853 field) + sizeof(bdc->field)) ? 1 : 0)
2987 * version of the lalba_lbp field instead of the array of 2 8 bit numbers.
3222 * Maximum value for the extra_len field in the sense data.
3272 #define SSD_FIXED_IS_PRESENT(sense, length, field) \
3273 ((length >= (offsetof(struct scsi_sense_data_fixed, field) + \
3274 sizeof(sense->field))) ? 1 :0)
3275 #define SSD_FIXED_IS_FILLED(sense, field) \
3276 ((((offsetof(struct scsi_sense_data_fixed, field)
3380 uint8_t field[2]; member in struct:scsi_sense_sks_field
3415 uint8_t field[2]; member in struct:scsi_sense_sks_segment
[all...]
H A Dscsi_sa.c3715 * Data Compression if the algorithm field is
3988 * For each field, make sure that the drive allows changing it
4356 * The retry count is the only CCB field that might have been
5169 * sizes are possible for a given field. So passing in a multi-byte
5170 * field will result in a warning that the assignment makes an integer
5174 #define SAFILLDENSSB(dens_data, sb, indent, field, desc_remain, \
5178 cur_field_len = sizeof(dens_data->field); \
5188 switch (sizeof(dens_data->field)) { \
5191 "field width for SAFILLDENSFIELD")); \
5195 scsi_2btoul(dens_data->field),
[all...]
/freebsd-13-stable/contrib/kyua/store/
H A Dmigrate_v1_v2.sql44 -- * Added the metadata_id field to the test_programs and test_cases
47 -- * Changed the precision of the timeout metadata field to be in seconds
140 -- will have the test_program_id field set to not NULL and entries corresponding
/freebsd-13-stable/lib/libcasper/services/cap_grp/
H A Dcap_grp.c553 grp_allowed_field(const nvlist_t *limits, const char *field) argument
566 return (nvlist_exists_null(limits, field));
/freebsd-13-stable/lib/libcasper/services/cap_pwd/
H A Dcap_pwd.c508 pwd_allowed_field(const nvlist_t *limits, const char *field) argument
521 return (nvlist_exists_null(limits, field));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DProcess.inc108 // the value returned by mallinfo in the arena field.
/freebsd-13-stable/sys/dev/cxgb/
H A Dcxgb_adapter.h523 #define container_of(p, stype, field) ((stype *)(((uint8_t *)(p)) - offsetof(stype, field)))
/freebsd-13-stable/sys/dev/liquidio/base/
H A Dlio_console.c145 * the same as "sizeof(s::field)" in C++, but C lacks the "::" operator.
147 #define SIZEOF_FIELD(s, field) sizeof(((s *)NULL)->field)
/freebsd-13-stable/sys/cam/ctl/
H A Dctl_error.c619 int field, int bit_valid, int bit)
625 /* "Invalid field in CDB" */
628 /* "Invalid field in parameter list" */
636 scsi_ulto2b(field, &sks[1]);
656 /* "Invalid field in command information unit" */
618 ctl_set_invalid_field(struct ctl_scsiio *ctsio, int sks_valid, int command, int field, int bit_valid, int bit) argument
/freebsd-13-stable/crypto/openssl/crypto/ec/
H A Dec_key.c372 * Check if retrieved coordinates match originals and are less than field
376 || (BN_cmp(x, key->group->field) >= 0)
377 || (BN_cmp(y, key->group->field) >= 0)) {
/freebsd-13-stable/contrib/ncurses/form/
H A Dform.h65 short pmin; /* index of first field on page */
66 short pmax; /* index of last field on page */
67 short smin; /* index of top leftmost field on page */
68 short smax; /* index of bottom rightmost field on page */
87 int maxgrow; /* maximum field growth */
92 short index; /* into form -> field */
99 struct fieldnode * link; /* linked field chain */
101 struct typenode * type; /* field type */
103 FIELD_CELL * buf; /* field buffers */
129 int currow; /* current row in field windo
140 FIELD ** field; /* field [maxfield] */ member in struct:formnode
[all...]
/freebsd-13-stable/contrib/wpa/wpa_supplicant/
H A Dwmm_ac.c380 #define PARAM_IN_RANGE(field, min_value, max_value) \
381 param_in_range(#field, params->field, min_value, max_value)
H A Dctrl_iface.c2011 wpa_printf(MSG_DEBUG, "CTRL_IFACE: field=%s id=%d", rsp, id);
4372 char field[30]; local
4376 len = os_strlcpy(field, _field, sizeof(field));
4377 if (len >= sizeof(field))
4379 strict = os_strchr(field, ' ');
4387 field, strict ? strict : "");
4389 if (os_strcmp(field, "eap") == 0) {
4395 if (os_strcmp(field, "pairwise") == 0)
4399 if (os_strcmp(field, "grou
[all...]
H A Deapol_test.c454 static void eapol_test_eap_param_needed(void *ctx, enum wpa_ctrl_req_type field, argument
468 field_name = wpa_supplicant_ctrl_req_to_string(field, default_txt,
472 field);
/freebsd-13-stable/contrib/apr-util/crypto/
H A Dapr_crypto_nss.c146 const char *field; member in struct:__anon98
181 for (j = 0; fields[j].field != NULL; ++j) {
182 if (klen && !strcasecmp(fields[j].field, elt)) {
/freebsd-13-stable/sys/contrib/openzfs/include/sys/fs/
H A Dzfs.h881 * vdev aux states. When a vdev is in the CANT_OPEN state, the aux field
1064 * adding a new field it must be added to the end the structure.
1107 #define VDEV_STAT_VALID(field, uint64_t_field_count) \
1109 (offsetof(vdev_stat_t, field) + sizeof (((vdev_stat_t *)NULL)->field)))
/freebsd-13-stable/sys/dev/mlx5/
H A Ddriver.h875 #define STRUCT_FIELD(header, field) \
876 .struct_offset_bytes = offsetof(struct ib_unpacked_ ## header, field), \
877 .struct_size_bytes = sizeof((struct ib_unpacked_ ## header *)0)->field
/freebsd-13-stable/sys/dev/bnxt/
H A Dbnxt_sysctl.c729 int field; local
755 /* Now find the correct tab delimited field */
756 for (field = 0, next = p,
758 field <
761 field++;
763 if (field == BNX_PKG_LOG_FIELD_IDX_PKG_VERSION)
/freebsd-13-stable/sys/contrib/openzfs/cmd/zfs/
H A Dzfs_main.c282 "[-o \"all\" | field[,...]]\n"
361 return (gettext("\tuserspace [-Hinp] [-o field[,...]] "
362 "[-s field] ...\n"
363 "\t [-S field] ... [-t type[,...]] "
366 return (gettext("\tgroupspace [-Hinp] [-o field[,...]] "
367 "[-s field] ...\n"
368 "\t [-S field] ... [-t type[,...]] "
371 return (gettext("\tprojectspace [-Hp] [-o field[,...]] "
372 "[-s field] ... \n"
373 "\t [-S field]
2711 us_field_index(char *field) argument
3049 int field; local
3162 int field; local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprAgg.cpp399 // FIXME: Perform the checks on the field types in SemaInit.
1068 // Emit the address of the first (and only) field in the comparison category
1144 // Look into the base of a field access.
1555 // Only initialize one field of a union. The field itself is
1574 // Store the initializer into the field
1586 for (const auto *field : record->fields()) {
1588 if (field->getType()->isIncompleteArrayType())
1592 if (field->isUnnamedBitfield())
1603 LValue LV = CGF.EmitLValueForFieldInitialization(DestLV, field);
[all...]
/freebsd-13-stable/sys/netinet/libalias/
H A Dalias_db.c244 A state field is used to keep track in changes to the TCP
2636 #define fw_setfield(la, field, num) \
2638 (field)[(num) - la->fireWallBaseNum] = 1; \
2641 #define fw_clrfield(la, field, num) \
2643 (field)[(num) - la->fireWallBaseNum] = 0; \
2646 #define fw_tstfield(la, field, num) ((field)[(num) - la->fireWallBaseNum])
/freebsd-13-stable/sbin/newfs/
H A Dmkfs.c87 #define DIP(dp, field) \
89 (dp)->dp1.field : (dp)->dp2.field)
/freebsd-13-stable/contrib/apr-util/dbd/
H A Dapr_dbd_mysql.c53 /* default maximum field size 1 MB */
174 /* If we have more to read from the field, then create another bucket */
1113 const char *field; member in struct:__anon104
1156 for (i = 0; fields[i].field != NULL; i++) {
1157 if (!strncasecmp(fields[i].field, key, klen)) {
/freebsd-13-stable/sys/dev/mlx5/mlx5_en/
H A Den.h143 #define MLX5E_ZERO(ptr, field) \
144 memset(&(ptr)->field, 0, \
145 sizeof(*(ptr)) - __offsetof(__typeof(*(ptr)), field))
/freebsd-13-stable/usr.sbin/makefs/
H A Dffs.c111 #define DIP(dp, field) \
113 (dp)->ffs1_din.di_##field : (dp)->ffs2_din.di_##field)

Completed in 433 milliseconds

<<111213141516171819