/external/elfutils/backends/ |
D | aarch64_retval.c | 55 dwarf_bytesize_aux (Dwarf_Die *die, Dwarf_Word *sizep) in dwarf_bytesize_aux() argument 63 *sizep = bits / 8; in dwarf_bytesize_aux() 78 Dwarf_Word *sizep, Dwarf_Word *countp); 84 member_is_fp (Dwarf_Die *membdie, Dwarf_Word *sizep, Dwarf_Word *countp) in member_is_fp() argument 111 if (dwarf_bytesize_aux (&typedie, sizep) < 0) in member_is_fp() 114 *sizep /= *countp; in member_is_fp() 120 return hfa_type (&typedie, tag, sizep, countp); in member_is_fp() 127 hfa_type (Dwarf_Die *ftypedie, int tag, Dwarf_Word *sizep, Dwarf_Word *countp) in hfa_type() argument 147 *sizep = tot_size; in hfa_type() 153 if ((i = member_is_fp (ftypedie, sizep, countp)) == 0) in hfa_type() [all …]
|
/external/protobuf/python/google/protobuf/pyext/ |
D | descriptor_pool.cc | 48 #define PyString_AsStringAndSize(ob, charpp, sizep) \ argument 50 ((*(charpp) = PyUnicode_AsUTF8AndSize(ob, (sizep))) == NULL? -1: 0): \ 51 PyBytes_AsStringAndSize(ob, (charpp), (sizep)))
|
D | descriptor.cc | 55 #define PyString_AsStringAndSize(ob, charpp, sizep) \ argument 57 ((*(charpp) = PyUnicode_AsUTF8AndSize(ob, (sizep))) == NULL? -1: 0): \ 58 PyBytes_AsStringAndSize(ob, (charpp), (sizep)))
|
D | descriptor_containers.cc | 67 #define PyString_AsStringAndSize(ob, charpp, sizep) \ argument 69 ((*(charpp) = PyUnicode_AsUTF8AndSize(ob, (sizep))) == NULL? -1: 0): \ 70 PyBytes_AsStringAndSize(ob, (charpp), (sizep)))
|
D | message.cc | 82 #define PyString_AsStringAndSize(ob, charpp, sizep) \ argument 84 ((*(charpp) = PyUnicode_AsUTF8AndSize(ob, (sizep))) == NULL? -1: 0): \ 85 PyBytes_AsStringAndSize(ob, (charpp), (sizep)))
|
/external/syslinux/com32/lua/src/ |
D | lfunc.c | 115 f->sizep = 0; in luaF_newproto() 137 luaM_freearray(L, f->p, f->sizep); in luaF_freeproto()
|
D | luac.c | 395 S(f->sizelocvars),S(f->sizek),S(f->sizep)); in PrintHeader() 427 int i,n=f->sizep; in PrintFunction()
|
D | lparser.c | 503 if (fs->np >= f->sizep) { in addprototype() 504 int oldsize = f->sizep; in addprototype() 505 luaM_growvector(L, f->p, fs->np, f->sizep, Proto *, MAXARG_Bx, "functions"); in addprototype() 506 while (oldsize < f->sizep) f->p[oldsize++] = NULL; in addprototype() 567 luaM_reallocvector(L, f->p, f->sizep, fs->np, Proto *); in close_func() 568 f->sizep = fs->np; in close_func()
|
D | ldump.c | 104 n=f->sizep; in DumpConstants()
|
D | lundump.c | 126 f->sizep=n; in LoadConstants()
|
D | lvm.c | 762 if (cl->p->sizep > 0) luaF_close(L, oci->u.l.base); in luaV_execute() 778 if (cl->p->sizep > 0) luaF_close(L, base); in luaV_execute()
|
D | lgc.c | 466 for (i = 0; i < f->sizep; i++) /* mark nested protos */ in traverseproto() 471 sizeof(Proto *) * f->sizep + in traverseproto()
|
D | lobject.h | 481 int sizep; /* size of `p' */ member
|
/external/e2fsprogs/lib/ext2fs/ |
D | tdbtool.c | 535 static char *convert_string(char *instring, size_t *sizep) in convert_string() argument 563 *sizep = length; in convert_string()
|
/external/dnsmasq/src/ |
D | forward.c | 395 unsigned char *pheader, *sizep; in process_reply() local 403 if ((pheader = find_pseudoheader(header, n, &plen, &sizep, &is_sign)) && !is_sign) in process_reply() 406 unsigned char *psave = sizep; in process_reply() 408 GETSHORT(udpsz, sizep); in process_reply()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 4914 INTERCEPTOR(int, xdr_bytes, __sanitizer_XDR *xdrs, char **p, unsigned *sizep, 4917 COMMON_INTERCEPTOR_ENTER(ctx, xdr_bytes, xdrs, p, sizep, maxsize); 4918 if (p && sizep && xdrs->x_op == __sanitizer_XDR_ENCODE) { 4920 COMMON_INTERCEPTOR_READ_RANGE(ctx, sizep, sizeof(*sizep)); 4921 COMMON_INTERCEPTOR_READ_RANGE(ctx, *p, *sizep); 4926 int res = REAL(xdr_bytes)(xdrs, p, sizep, maxsize); 4927 if (p && sizep && xdrs->x_op == __sanitizer_XDR_DECODE) { 4929 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, sizep, sizeof(*sizep)); 4930 if (res && *p && *sizep) COMMON_INTERCEPTOR_WRITE_RANGE(ctx, *p, *sizep);
|
/external/valgrind/coregrind/m_syswrap/ |
D | syswrap-darwin.c | 3212 vki_uint32_t *sizep = (vki_uint32_t *)ARG3; in POST() local 3219 scan_attrlist(tid, (struct vki_attrlist *)ARG2, sizep+1, MIN(*sizep, ARG4), &get1attr); in POST()
|