Home
last modified time | relevance | path

Searched refs:valp (Results 1 – 21 of 21) sorted by relevance

/f-stack/freebsd/arm/arm/
H A Ddb_interface.c105 db_access_und_sp(struct db_variable *vp, db_expr_t *valp, int rw) in db_access_und_sp() argument
109 *valp = get_stackptr(PSR_UND32_MODE); in db_access_und_sp()
116 db_access_abt_sp(struct db_variable *vp, db_expr_t *valp, int rw) in db_access_abt_sp() argument
120 *valp = get_stackptr(PSR_ABT32_MODE); in db_access_abt_sp()
127 db_access_irq_sp(struct db_variable *vp, db_expr_t *valp, int rw) in db_access_irq_sp() argument
131 *valp = get_stackptr(PSR_IRQ32_MODE); in db_access_irq_sp()
137 int db_frame(struct db_variable *vp, db_expr_t *valp, int rw) in db_frame() argument
146 *valp = *reg; in db_frame()
148 *reg = *valp; in db_frame()
/f-stack/freebsd/ddb/
H A Ddb_main.c173 db_expr_t *valp) in X_db_symbol_values() argument
181 if (valp != NULL) in X_db_symbol_values()
182 *valp = (db_expr_t)lval.value; in X_db_symbol_values()
187 if (valp != NULL) in X_db_symbol_values()
188 *valp = (db_expr_t)((const Elf_Sym *)sym)->st_value + in X_db_symbol_values()
/f-stack/dpdk/drivers/common/sfc_efx/base/
H A Def10_image.c176 __in const void *valp, in efx_asn1_match_tag_value() argument
253 __out uint8_t **valp, in efx_asn1_get_tag_value() argument
258 if (cursor == NULL || valp == NULL || val_sizep == NULL) { in efx_asn1_get_tag_value()
268 *valp = cursor->buffer + cursor->hdr_size; in efx_asn1_get_tag_value()
312 uint8_t *valp; in efx_check_signed_image_header() local
375 valp = NULL; in efx_check_signed_image_header()
378 &valp, &val_size); in efx_check_signed_image_header()
382 if ((valp == NULL) || (val_size == 0)) { in efx_check_signed_image_header()
386 if (valp < (uint8_t *)bufferp) { in efx_check_signed_image_header()
390 if ((valp + val_size) > ((uint8_t *)bufferp + buffer_size)) { in efx_check_signed_image_header()
[all …]
/f-stack/freebsd/mips/cavium/octe/
H A Dmv88e61xxphy.c478 unsigned max, val, *valp; in mv88e61xxphy_sysctl_port_proc() local
483 valp = &psc->sc_domain; in mv88e61xxphy_sysctl_port_proc()
487 valp = &psc->sc_vlan; in mv88e61xxphy_sysctl_port_proc()
491 valp = &psc->sc_priority; in mv88e61xxphy_sysctl_port_proc()
498 val = *valp; in mv88e61xxphy_sysctl_port_proc()
508 *valp = val; in mv88e61xxphy_sysctl_port_proc()
/f-stack/freebsd/contrib/openzfs/contrib/pyzfs/libzfs_core/
H A D_libzfs_core.py437 valp = _ffi.new('uint64_t *')
438 ret = _lib.lzc_snaprange_space(firstsnap, lastsnap, valp)
440 return int(valp[0])
696 valp = _ffi.new('uint64_t *')
698 ret = _lib.lzc_send_space(snapname, c_fromsnap, c_flags, valp)
700 return int(valp[0])
/f-stack/freebsd/contrib/libfdt/
H A Dfdt_sw.c223 int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp) in fdt_property_placeholder() argument
241 *valp = prop->data; in fdt_property_placeholder()
H A Dlibfdt.h1334 int fdt_property_placeholder(void *fdt, const char *name, int len, void **valp);
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dzfs_quota.c233 const char *domain, uint64_t rid, uint64_t *valp) in zfs_userspace_one() argument
240 *valp = 0; in zfs_userspace_one()
276 err = zap_lookup(zfsvfs->z_os, obj, buf, 8, 1, valp); in zfs_userspace_one()
H A Ddsl_deleg.c417 char type, char checkflag, void *valp, const char *perm) in dsl_check_access() argument
423 zfs_deleg_whokey(whokey, type, checkflag, valp); in dsl_check_access()
482 char type, char checkflag, void *valp, avl_tree_t *avl) in dsl_load_sets() argument
492 zfs_deleg_whokey(whokey, type, checkflag, valp); in dsl_load_sets()
H A Dzap.c290 zap_table_load(zap_t *zap, zap_table_phys_t *tbl, uint64_t idx, uint64_t *valp) in zap_table_load() argument
311 *valp = ((uint64_t *)db->db_data)[off]; in zap_table_load()
570 zap_idx_to_blk(zap_t *zap, uint64_t idx, uint64_t *valp) in zap_idx_to_blk() argument
577 *valp = ZAP_EMBEDDED_PTRTBL_ENT(zap, idx); in zap_idx_to_blk()
581 idx, valp)); in zap_idx_to_blk()
/f-stack/dpdk/drivers/net/bnx2x/
H A Dbnx2x.h1542 #define REG_RD_DMAE(sc, offset, valp, len32) \ argument
1545 rte_memcpy(valp, BNX2X_SP(sc, wb_data[0]), (len32) * 4); \
1548 #define REG_WR_DMAE(sc, offset, valp, len32) \ argument
1550 rte_memcpy(BNX2X_SP(sc, wb_data[0]), valp, (len32) * 4); \
1554 #define REG_WR_DMAE_LEN(sc, offset, valp, len32) \ argument
1555 REG_WR_DMAE(sc, offset, valp, len32)
1557 #define REG_RD_DMAE_LEN(sc, offset, valp, len32) \ argument
1558 REG_RD_DMAE(sc, offset, valp, len32)
/f-stack/tools/ifconfig/
H A Difvxlan.c67 get_val(const char *cp, u_long *valp) in get_val() argument
77 *valp = val; in get_val()
H A Difbridge.c74 get_val(const char *cp, u_long *valp) in get_val() argument
84 *valp = val; in get_val()
/f-stack/freebsd/kern/
H A Dlinker_if.m46 linker_symval_t* valp;
H A Dkern_sig.c4066 sigfastblock_fetch_sig(struct thread *td, bool sendsig, uint32_t *valp) in sigfastblock_fetch_sig() argument
4076 *valp = res; in sigfastblock_fetch_sig()
/f-stack/tools/route/
H A Droute.c835 u_long noval, *valp = &noval; in set_metric() local
838 #define caseof(x, y, z) case x: valp = &rt_metrics.z; flag = y; break in set_metric()
855 *valp = strtol(value, &endptr, 0); in set_metric()
864 *valp += ts.tv_sec; in set_metric()
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_vnops_os.c3977 zfs_pathconf(vnode_t *vp, int cmd, ulong_t *valp, cred_t *cr, in zfs_pathconf() argument
3985 *valp = MIN(LONG_MAX, ZFS_LINK_MAX); in zfs_pathconf()
3989 *valp = 64; in zfs_pathconf()
3992 *valp = (int)SPA_MINBLOCKSIZE; in zfs_pathconf()
4000 *valp = zfsvfs->z_acl_type == ZFSACLTYPE_POSIX ? 1 : 0; in zfs_pathconf()
4003 *valp = 0; in zfs_pathconf()
4012 *valp = zfsvfs->z_acl_type == ZFS_ACLTYPE_NFSV4 ? 1 : 0; in zfs_pathconf()
4017 *valp = ACL_MAX_ENTRIES; in zfs_pathconf()
/f-stack/dpdk/drivers/net/cxgbe/base/
H A Dt4_hw.c133 int polarity, int attempts, int delay, u32 *valp) in t4_wait_op_done_val() argument
139 if (valp) in t4_wait_op_done_val()
140 *valp = val; in t4_wait_op_done_val()
2554 int lock, u32 *valp) in sf1_read() argument
2566 *valp = t4_read_reg(adapter, A_SF_DATA); in sf1_read()
H A Dcommon.h322 int attempts, int delay, u32 *valp);
/f-stack/freebsd/contrib/libnv/
H A Dbsd_nvpair.c150 void *olddata, *data, *valp; in nvpair_append() local
160 valp = (unsigned char *)data + oldlen; in nvpair_append()
161 memcpy(valp, value, valsize); in nvpair_append()
/f-stack/tools/libxo/libxo/
H A Dlibxo.c1316 xo_retain_find (const char *fmt UNUSED, xo_field_info_t **valp UNUSED, in xo_retain_find()
1431 xo_retain_find (const char *fmt, xo_field_info_t **valp, unsigned *nump) in xo_retain_find() argument
1442 *valp = xrep->xre_fields; in xo_retain_find()