HomeSort by relevance Sort by last modified time
    Searched refs:valp (Results 1 - 20 of 20) sorted by null

  /external/elfutils/libdw/
libdw_form.c 28 unsigned char *valp)
46 result = *valp + 1;
50 result = read_2ubyte_unaligned (dbg, valp) + 2;
54 result = read_4ubyte_unaligned (dbg, valp) + 4;
58 saved = valp;
59 get_uleb128 (u128, valp);
60 result = u128 + (valp - saved);
85 result = strlen ((char *) valp) + 1;
91 saved = valp;
92 get_uleb128 (u128, valp);
    [all...]
dwarf_formsdata.c 37 *return_sval = *attr->valp;
41 *return_sval = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
45 *return_sval = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
49 *return_sval = read_8ubyte_unaligned (attr->cu->dbg, attr->valp);
53 datap = attr->valp;
59 datap = attr->valp;
dwarf_formudata.c 37 *return_uval = *attr->valp;
41 *return_uval = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
45 *return_uval = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
49 *return_uval = read_8ubyte_unaligned (attr->cu->dbg, attr->valp);
53 datap = attr->valp;
59 datap = attr->valp;
dwarf_formref.c 37 *return_offset = *attr->valp;
41 *return_offset = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
45 *return_offset = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
49 *return_offset = read_8ubyte_unaligned (attr->cu->dbg, attr->valp);
53 datap = attr->valp;
dwarf_formblock.c 37 return_block->length = *(uint8_t *) attr->valp;
38 return_block->data = attr->valp + 1;
42 return_block->length = read_2ubyte_unaligned (attr->cu->dbg, attr->valp);
43 return_block->data = attr->valp + 2;
47 return_block->length = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
48 return_block->data = attr->valp + 4;
52 datap = attr->valp;
dwarf_formaddr.c 38 *return_addr = read_8ubyte_unaligned (attr->cu->dbg, attr->valp);
40 *return_addr = read_4ubyte_unaligned (attr->cu->dbg, attr->valp);
dwarf_formstring.c 34 return (const char *) attrp->valp;
49 off = read_8ubyte_unaligned (dbg, attrp->valp);
51 off = read_4ubyte_unaligned (dbg, attrp->valp);
dwarf_formflag.c 37 *return_bool = *attr->valp != 0;
dwarf_attr.c 33 result->valp = __libdw_find_attr (die, search_name, &result->code,
dwarf_getattrs.c 72 attr.valp = die_addr;
dwarf_siblingof.c 54 sibattr.valp = addr;
libdwP.h 305 unsigned int form, unsigned char *valp)
libdw.h 95 unsigned char *valp; member in struct:__anon1744
  /external/kernel-headers/original/linux/sunrpc/
xdr.h 120 xdr_decode_hyper(u32 *p, __u64 *valp)
122 *valp = ((__u64) ntohl(*p++)) << 32;
123 *valp |= ntohl(*p++);
  /external/libffi/src/powerpc/
ffi.c 101 } valp; typedef in typeref:union:__anon3277
104 valp stacktop;
108 valp gpr_base;
113 valp fpr_base;
118 valp copy_space;
121 valp next_arg;
420 } valp; typedef in typeref:union:__anon3281
423 valp stacktop;
427 valp gpr_base;
428 valp gpr_end
    [all...]
  /external/ppp/pppd/
multilink.c 58 static int parse_num __P((char *str, const char *key, int *valp));
388 parse_num(str, key, valp)
391 int *valp;
401 *valp = i;
options.c     [all...]
  /external/qemu/audio/
audio.c 488 int *intp = opt->valp;
495 int *intp = opt->valp;
502 audfmt_e *fmtp = opt->valp;
513 const char **strp = opt->valp;
555 if (!opt->valp) {
582 int *intp = opt->valp;
589 audfmt_e *fmtp = opt->valp;
596 const char **strp = opt->valp;
    [all...]
audio_int.h 47 void *valp; member in struct:audio_option
  /external/libpcap/
optimize.c 610 vstore(s, valp, newval, alter)
612 int *valp;
616 if (alter && *valp == newval)
619 *valp = newval;
    [all...]

Completed in 280 milliseconds