Home
last modified time | relevance | path

Searched refs:valuep (Results 1 – 25 of 28) sorted by relevance

12

/f-stack/freebsd/ddb/
H A Ddb_expr.c124 *valuep = -*valuep; in db_unary()
133 *valuep = (!(*valuep)); in db_unary()
142 *valuep = (~(*valuep)); in db_unary()
152 *valuep = db_get_value((db_addr_t)*valuep, sizeof(void *), in db_unary()
201 *valuep = lhs; in db_mult_expr()
238 *valuep = lhs; in db_add_expr()
272 *valuep = lhs; in db_shift_expr()
278 db_expr_t *valuep) in db_logical_relation_expr() argument
322 *valuep = lhs; in db_logical_relation_expr()
347 *valuep = lhs; in db_logical_and_expr()
[all …]
H A Ddb_sym.c84 *valuep = db_cpu; in db_var_db_cpu()
88 if (*(int *)valuep < -1 || *(int *)valuep > mp_maxid) { in db_var_db_cpu()
89 db_printf("Invalid value: %d\n", *(int*)valuep); in db_var_db_cpu()
92 db_cpu = *(int *)valuep; in db_var_db_cpu()
111 *valuep = curcpu; in db_var_curcpu()
136 *valuep = (db_expr_t)db_vnet; in db_var_db_vnet()
140 db_vnet = *(void **)valuep; in db_var_db_vnet()
159 *valuep = (db_expr_t)curvnet; in db_var_curvnet()
226 db_symbol_values(sym, &name, valuep); in db_value_of_name()
419 if (valuep) in db_symbol_values()
[all …]
H A Ddb_variables.c86 db_get_variable(db_expr_t *valuep) in db_get_variable() argument
93 return (db_read_variable(vp, valuep)); in db_get_variable()
108 db_read_variable(struct db_variable *vp, db_expr_t *valuep) in db_read_variable() argument
113 *valuep = *(vp->valuep); in db_read_variable()
116 return ((*func)(vp, valuep, DB_VAR_GET)); in db_read_variable()
125 *(vp->valuep) = value; in db_write_variable()
H A Ddb_variables.h43 typedef int db_varfcn_t(struct db_variable *vp, db_expr_t *valuep, int op);
46 db_expr_t *valuep; /* value of variable */ member
H A Dddb.h199 int db_expression(db_expr_t *valuep);
200 int db_get_variable(db_expr_t *valuep);
225 bool db_value_of_name(const char *name, db_expr_t *valuep);
226 bool db_value_of_name_pcpu(const char *name, db_expr_t *valuep);
227 bool db_value_of_name_vnet(const char *name, db_expr_t *valuep);
H A Ddb_sym.h106 const char **namep, db_expr_t *valuep);
/f-stack/freebsd/i386/i386/
H A Ddb_trace.c98 *valuep = *reg; in db_frame()
100 *reg = *valuep; in db_frame()
114 off = (intptr_t)vp->valuep; in db_frame_seg()
134 *valuep = *reg; in db_frame_seg()
136 *reg = *valuep; in db_frame_seg()
150 kdb_frame->tf_esp = *valuep; in db_esp()
162 *valuep = tfp->tf_vm86_gs; in db_gs()
164 tfp->tf_vm86_gs = *valuep; in db_gs()
168 *valuep = rgs(); in db_gs()
170 load_gs(*valuep); in db_gs()
[all …]
/f-stack/freebsd/arm64/arm64/
H A Ddb_interface.c51 db_frame(struct db_variable *vp, db_expr_t *valuep, int op) in db_frame() argument
58 reg = (long *)((uintptr_t)kdb_frame + (db_expr_t)vp->valuep); in db_frame()
60 *valuep = *reg; in db_frame()
62 *reg = *valuep; in db_frame()
/f-stack/freebsd/amd64/amd64/
H A Ddb_trace.c91 db_frame_seg(struct db_variable *vp, db_expr_t *valuep, int op) in db_frame_seg() argument
98 reg = (uint16_t *)((uintptr_t)kdb_frame + (db_expr_t)vp->valuep); in db_frame_seg()
100 *valuep = *reg; in db_frame_seg()
102 *reg = *valuep; in db_frame_seg()
107 db_frame(struct db_variable *vp, db_expr_t *valuep, int op) in db_frame() argument
114 reg = (long *)((uintptr_t)kdb_frame + (db_expr_t)vp->valuep); in db_frame()
116 *valuep = *reg; in db_frame()
118 *reg = *valuep; in db_frame()
/f-stack/freebsd/mips/mips/
H A Ddb_interface.c127 db_frame(struct db_variable *vp, db_expr_t *valuep, int op) in db_frame() argument
134 reg = (register_t *)((uintptr_t)kdb_frame + (size_t)(intptr_t)vp->valuep); in db_frame()
136 *valuep = *reg; in db_frame()
138 *reg = *valuep; in db_frame()
/f-stack/dpdk/drivers/common/sfc_efx/base/
H A Defx_bootcfg.c465 uint8_t *valuep, in efx_dhcp_write_tag()
471 if ((value_length > 0) && (valuep != NULL)) in efx_dhcp_write_tag()
472 memcpy(&hdrp[1], valuep, value_length); in efx_dhcp_write_tag()
485 __in_bcount_opt(value_length) uint8_t *valuep, in efx_dhcp_add_tag()
507 if ((value_length > 0) && (valuep == NULL)) { in efx_dhcp_add_tag()
589 efx_dhcp_write_tag(insert_pointp, opt, valuep, value_length); in efx_dhcp_add_tag()
625 __in_bcount_opt(value_length) uint8_t *valuep, in efx_dhcp_update_tag()
644 if ((value_length > 0) && (valuep == NULL)) { in efx_dhcp_update_tag()
703 efx_dhcp_write_tag(write_pointp, opt, valuep, value_length); in efx_dhcp_update_tag()
H A Dmcdi_mon.h37 __out efx_mon_stat_value_t *valuep);
H A Dmcdi_mon.c137 __out efx_mon_stat_value_t *valuep) in mcdi_mon_ev() argument
176 valuep->emsv_value = value; in mcdi_mon_ev()
177 valuep->emsv_state = state; in mcdi_mon_ev()
H A Def10_nvram.c1029 caddr_t valuep, in ef10_nvram_buffer_get_item()
1052 memcpy(valuep, tlv_value(&cursor), value_length); in ef10_nvram_buffer_get_item()
1076 __in_bcount(length) caddr_t valuep, in ef10_nvram_buffer_insert_item()
1088 rc = tlv_insert(&cursor, tag, (uint8_t *)valuep, length); in ef10_nvram_buffer_insert_item()
1113 __in_bcount(length) caddr_t valuep, in ef10_nvram_buffer_modify_item()
1125 rc = tlv_modify(&cursor, tag, (uint8_t *)valuep, length); in ef10_nvram_buffer_modify_item()
H A Def10_impl.h692 caddr_t valuep,
704 __in_bcount(length) caddr_t valuep,
716 __in_bcount(length) caddr_t valuep,
1476 __out uint32_t *valuep);
H A Defx_mae.c717 __in const efx_mport_sel_t *valuep, in efx_mae_match_spec_mport_set() argument
725 if (valuep == NULL) { in efx_mae_match_spec_mport_set()
730 vp = (const uint8_t *)&valuep->sel; in efx_mae_match_spec_mport_set()
738 sizeof (valuep->sel), vp, sizeof (maskp->sel), mp); in efx_mae_match_spec_mport_set()
H A Def10_nic.c2734 __out uint32_t *valuep) in efx_mcdi_get_nic_global() argument
2761 *valuep = MCDI_OUT_DWORD(req, GET_NIC_GLOBAL_OUT_VALUE); in efx_mcdi_get_nic_global()
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Ddsl_prop.h84 uint64_t *valuep, char *setpoint);
90 uint64_t *valuep);
H A Dzap.h337 uint64_t key, uint64_t *valuep);
/f-stack/freebsd/arm/arm/
H A Ddb_interface.c144 reg = (int *)((uintptr_t)kdb_frame + (db_expr_t)vp->valuep); in db_frame()
/f-stack/freebsd/contrib/openzfs/lib/libnvpair/
H A Dlibnvpair.c225 nvlist_t *nvl, const char *name, vtype *valuep, uint_t count) \
240 (void) fprintf(fp, vfmt, (ptype)valuep[i]); \
280 nvlist_t *nvl, const char *name, nvlist_t **valuep, uint_t count) in nvaprint_nvlist_array() argument
293 nvlist_print_with_indent(valuep[i], pctl); in nvaprint_nvlist_array()
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Ddsl_prop.c344 uint64_t *valuep, char *setpoint) in dsl_prop_get_integer() argument
346 return (dsl_prop_get(ddname, propname, 8, 1, valuep, setpoint)); in dsl_prop_get_integer()
351 uint64_t *valuep) in dsl_prop_get_int_ds() argument
353 return (dsl_prop_get_ds(ds, propname, 8, 1, valuep, NULL)); in dsl_prop_get_int_ds()
H A Dzap.c1169 zap_lookup_int_key(objset_t *os, uint64_t obj, uint64_t key, uint64_t *valuep) in zap_lookup_int_key() argument
1174 return (zap_lookup(os, obj, name, 8, 1, valuep)); in zap_lookup_int_key()
/f-stack/freebsd/sys/
H A Dsyscallsubr.h144 int kern_fpathconf(struct thread *td, int fd, int name, long *valuep);
225 enum uio_seg pathseg, int name, u_long flags, long *valuep);
/f-stack/dpdk/drivers/net/sfc/
H A Dsfc_mae.c470 const uint8_t *valuep; in sfc_mae_rule_process_pattern_data() local
552 valuep = (const uint8_t *)&pdata->l3_next_proto_value; in sfc_mae_rule_process_pattern_data()
557 valuep, in sfc_mae_rule_process_pattern_data()

12