Searched refs:valp (Results 1 - 15 of 15) sorted by relevance

/fuchsia/zircon/third_party/ulib/ngunwind/src/mi/
H A DGget_reg.c29 unw_get_reg (unw_cursor_t *cursor, int regnum, unw_word_t *valp) argument
36 *valp = tdep_get_ip (c);
40 return tdep_access_reg (c, regnum, valp, 0);
H A DGget_fpreg.c29 unw_get_fpreg (unw_cursor_t *cursor, int regnum, unw_fpreg_t *valp) argument
33 return tdep_access_fpreg (c, regnum, valp, 0);
H A DGset_reg.c29 unw_set_reg (unw_cursor_t *cursor, int regnum, unw_word_t valp) argument
33 return tdep_access_reg (c, regnum, &valp, 1);
/fuchsia/zircon/third_party/ulib/musl/pthread/
H A Dsem_getvalue.c5 int sem_getvalue(sem_t* restrict sem, int* restrict valp) { argument
7 *valp = val < 0 ? 0 : val;
/fuchsia/zircon/third_party/ulib/ngunwind/src/dwarf/
H A DGpe.c35 unw_word_t *valp, void *arg)
38 pi, valp, arg);
32 dwarf_read_encoded_pointer(unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, unsigned char encoding, const unw_proc_info_t *pi, unw_word_t *valp, void *arg) argument
H A DGexpr.c194 unw_word_t *valp, int *is_register)
326 *valp = dwarf_to_unw_regnum (opcode - DW_OP_reg0);
332 *valp = dwarf_to_unw_regnum (operand1);
648 *valp = pop ();
649 Debug (14, "final value = 0x%lx\n", (unsigned long) *valp);
193 dwarf_eval_expr(struct dwarf_cursor *c, unw_word_t *addr, unw_word_t len, unw_word_t *valp, int *is_register) argument
H A DGparser.c35 unw_word_t *valp, void *arg)
39 if ((ret = dwarf_read_uleb128 (as, a, addr, valp, arg)) < 0)
42 if (*valp >= DWARF_NUM_PRESERVED_REGS)
44 Debug (1, "Invalid register number %u\n", (unsigned int) *valp);
34 read_regnum(unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, unw_word_t *valp, void *arg) argument
/fuchsia/zircon/third_party/ulib/ngunwind/src/aarch64/
H A DGregs.c43 tdep_access_reg (struct cursor *c, unw_regnum_t reg, unw_word_t *valp, argument
58 c->dwarf.eh_args[reg] = *valp;
64 *valp = c->dwarf.eh_args[reg];
106 *valp = c->dwarf.cfa;
115 return dwarf_put (&c->dwarf, loc, *valp);
117 return dwarf_get (&c->dwarf, loc, valp);
121 tdep_access_fpreg (struct cursor *c, unw_regnum_t reg, unw_fpreg_t *valp, argument
/fuchsia/zircon/third_party/ulib/ngunwind/include/ngunwind/private/
H A Dremote.h12 unw_word_t *addr, int8_t *valp, void *arg)
26 *valp = val & 0xff;
32 unw_word_t *addr, int16_t *valp, void *arg)
48 *valp = val & 0xffff;
54 unw_word_t *addr, int32_t *valp, void *arg)
70 *valp = val & 0xffffffff;
76 unw_word_t *addr, unw_word_t *valp, void *arg)
80 ret = (*a->access_mem) (as, *addr, valp, 0, arg);
11 fetch8(unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, int8_t *valp, void *arg) argument
31 fetch16(unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, int16_t *valp, void *arg) argument
53 fetch32(unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, int32_t *valp, void *arg) argument
75 fetchw(unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, unw_word_t *valp, void *arg) argument
H A Ddwarf_i.h100 uint8_t *valp, void *arg)
104 int ret = (*a->access_raw_mem) (as, *addr, valp, 1, 0, arg);
121 *valp = (uint8_t) val;
318 unw_word_t *valp, void *arg)
334 *valp = val;
343 unw_word_t *valp, void *arg)
363 *valp = val;
371 unw_word_t *valp, void *arg)
386 *valp = 0;
393 return dwarf_readw (as, a, addr, valp, ar
99 dwarf_readu8(unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, uint8_t *valp, void *arg) argument
317 dwarf_read_uleb128(unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, unw_word_t *valp, void *arg) argument
342 dwarf_read_sleb128(unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, unw_word_t *valp, void *arg) argument
368 dwarf_read_encoded_pointer_inlined(unw_addr_space_t as, unw_accessors_t *a, unw_word_t *addr, unsigned char encoding, const unw_proc_info_t *pi, unw_word_t *valp, void *arg) argument
[all...]
H A Dlibunwind_i.h383 unw_word_t *valp, int write);
385 unw_fpreg_t *valp, int write);
/fuchsia/zircon/third_party/ulib/ngunwind/src/arm/
H A DGregs.c49 tdep_access_reg (struct cursor *c, unw_regnum_t reg, unw_word_t *valp, argument
78 *valp = c->dwarf.cfa;
89 return dwarf_put (&c->dwarf, loc, *valp);
91 return dwarf_get (&c->dwarf, loc, valp);
97 tdep_access_fpreg (struct cursor *c, unw_regnum_t reg, unw_fpreg_t *valp, argument
/fuchsia/zircon/third_party/ulib/ngunwind/src/x86_64/
H A DGregs.c48 tdep_access_reg (struct cursor *c, unw_regnum_t reg, unw_word_t *valp, argument
60 c->dwarf.ip = *valp; /* also update the RIP cache */
68 *valp = c->dwarf.cfa;
77 c->dwarf.eh_args[arg_num] = *valp;
83 *valp = c->dwarf.eh_args[arg_num];
111 return dwarf_put (&c->dwarf, loc, *valp);
113 return dwarf_get (&c->dwarf, loc, valp);
117 tdep_access_fpreg (struct cursor *c, unw_regnum_t reg, unw_fpreg_t *valp, argument
/fuchsia/zircon/third_party/ulib/ngunwind/src/
H A Dos-linux.h110 scan_hex (char *cp, unsigned long *valp) argument
135 *valp = val;
140 scan_dec (char *cp, unsigned long *valp) argument
162 *valp = val;
167 scan_char (char *cp, char *valp) argument
172 *valp = *cp;
183 scan_string (char *cp, char *valp, size_t buf_size) argument
192 if ((valp != NULL) && (i < buf_size - 1))
193 valp[i++] = *cp;
198 valp[
[all...]
/fuchsia/zircon/third_party/ulib/ngunwind/include/ngunwind/
H A Ddwarf.h381 unw_word_t len, unw_word_t *valp,
400 unw_word_t *valp, void *arg);

Completed in 57 milliseconds