Home
last modified time | relevance | path

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

/arch/ia64/include/asm/
Dunwind.h141 unw_get_ip (struct unw_frame_info *info, unsigned long *valp) in unw_get_ip() argument
143 *valp = (info)->ip; in unw_get_ip()
148 unw_get_sp (struct unw_frame_info *info, unsigned long *valp) in unw_get_sp() argument
150 *valp = (info)->sp; in unw_get_sp()
155 unw_get_psp (struct unw_frame_info *info, unsigned long *valp) in unw_get_psp() argument
157 *valp = (info)->psp; in unw_get_psp()
162 unw_get_bsp (struct unw_frame_info *info, unsigned long *valp) in unw_get_bsp() argument
164 *valp = (info)->bsp; in unw_get_bsp()
169 unw_get_cfm (struct unw_frame_info *info, unsigned long *valp) in unw_get_cfm() argument
171 *valp = *(info)->cfm_loc; in unw_get_cfm()
/arch/mips/dec/
Dtc.c30 int tc_preadb(u8 *valp, void __iomem *addr) in tc_preadb() argument
32 return get_dbe(*valp, (u8 *)addr); in tc_preadb()
/arch/mn10300/kernel/
Dkprobes.c49 #define READ_BYTE(p, valp) \ argument
50 do { *(u8 *)(valp) = *(u8 *)(p); } while (0)
52 #define READ_WORD16(p, valp) \ argument
54 READ_BYTE((p), (valp)); \
55 READ_BYTE((u8 *)(p) + 1, (u8 *)(valp) + 1); \
58 #define READ_WORD32(p, valp) \ argument
60 READ_BYTE((p), (valp)); \
61 READ_BYTE((u8 *)(p) + 1, (u8 *)(valp) + 1); \
62 READ_BYTE((u8 *)(p) + 2, (u8 *)(valp) + 2); \
63 READ_BYTE((u8 *)(p) + 3, (u8 *)(valp) + 3); \
/arch/arm64/kvm/
Dguest.c90 void *valp = &tmp; in set_core_reg() local
103 if (copy_from_user(valp, uaddr, KVM_REG_SIZE(reg->id))) { in set_core_reg()
109 u32 mode = (*(u32 *)valp) & COMPAT_PSR_MODE_MASK; in set_core_reg()
127 memcpy((u32 *)regs + off, valp, KVM_REG_SIZE(reg->id)); in set_core_reg()
/arch/powerpc/perf/
Disa207-common.c24 int isa207_get_constraint(u64 event, unsigned long *maskp, unsigned long *valp) in isa207_get_constraint() argument
136 *valp = value; in isa207_get_constraint()
Dmpc7450-pmu.c155 unsigned long *valp) in mpc7450_get_constraint() argument
186 *valp = value; in mpc7450_get_constraint()
Disa207-common.h234 int isa207_get_constraint(u64 event, unsigned long *maskp, unsigned long *valp);
Dpower6-pmu.c271 unsigned long *valp) in p6_get_constraint() argument
300 *valp = value; in p6_get_constraint()
Dpower7-pmu.c86 unsigned long *valp) in power7_get_constraint() argument
116 *valp = value; in power7_get_constraint()
Dppc970-pmu.c195 unsigned long *valp) in p970_get_constraint() argument
242 *valp = value; in p970_get_constraint()
Dpower4-pmu.c255 unsigned long *valp) in p4_get_constraint() argument
318 *valp = value; in p4_get_constraint()
Dpower5-pmu.c141 unsigned long *valp) in power5_get_constraint() argument
209 *valp = value; in power5_get_constraint()
Dpower5+-pmu.c137 unsigned long *valp) in power5p_get_constraint() argument
187 *valp = value; in power5p_get_constraint()
/arch/tile/kernel/
Dpci.c515 HV_VirtAddr valp = (HV_VirtAddr)&val; in tile_cfg_write() local
537 valp += 4 - size; in tile_cfg_write()
541 valp, size, addr); in tile_cfg_write()
/arch/powerpc/include/asm/
Dperf_event_server.h38 unsigned long *valp);
/arch/powerpc/lib/
Dsstep.c1747 static __kprobes void do_signext(unsigned long *valp, int size) in do_signext() argument
1751 *valp = (signed short) *valp; in do_signext()
1754 *valp = (signed int) *valp; in do_signext()
1759 static __kprobes void do_byterev(unsigned long *valp, int size) in do_byterev() argument
1763 *valp = byterev_2(*valp); in do_byterev()
1766 *valp = byterev_4(*valp); in do_byterev()
1770 *valp = byterev_8(*valp); in do_byterev()
/arch/powerpc/kernel/
Dprom_init.c2123 unsigned char *valp; in scan_dt_build_struct() local
2199 valp = make_room(mem_start, mem_end, l, 4); in scan_dt_build_struct()
2200 call_prom("getprop", 4, 1, node, pname, valp, l); in scan_dt_build_struct()
2219 valp = make_room(mem_start, mem_end, 4, 4); in scan_dt_build_struct()
2220 *(__be32 *)valp = cpu_to_be32(node); in scan_dt_build_struct()
/arch/powerpc/xmon/
Dxmon.c144 int scanhex(unsigned long *valp);