Home
last modified time | relevance | path

Searched refs:sizep (Results 1 – 17 of 17) sorted by relevance

/external/elfutils/backends/
Daarch64_retval.c55 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/
Ddescriptor_pool.cc48 #define PyString_AsStringAndSize(ob, charpp, sizep) \ argument
50 ((*(charpp) = PyUnicode_AsUTF8AndSize(ob, (sizep))) == NULL? -1: 0): \
51 PyBytes_AsStringAndSize(ob, (charpp), (sizep)))
Ddescriptor.cc55 #define PyString_AsStringAndSize(ob, charpp, sizep) \ argument
57 ((*(charpp) = PyUnicode_AsUTF8AndSize(ob, (sizep))) == NULL? -1: 0): \
58 PyBytes_AsStringAndSize(ob, (charpp), (sizep)))
Ddescriptor_containers.cc67 #define PyString_AsStringAndSize(ob, charpp, sizep) \ argument
69 ((*(charpp) = PyUnicode_AsUTF8AndSize(ob, (sizep))) == NULL? -1: 0): \
70 PyBytes_AsStringAndSize(ob, (charpp), (sizep)))
Dmessage.cc82 #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/
Dlfunc.c115 f->sizep = 0; in luaF_newproto()
137 luaM_freearray(L, f->p, f->sizep); in luaF_freeproto()
Dluac.c395 S(f->sizelocvars),S(f->sizek),S(f->sizep)); in PrintHeader()
427 int i,n=f->sizep; in PrintFunction()
Dlparser.c503 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()
Dldump.c104 n=f->sizep; in DumpConstants()
Dlundump.c126 f->sizep=n; in LoadConstants()
Dlvm.c762 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()
Dlgc.c466 for (i = 0; i < f->sizep; i++) /* mark nested protos */ in traverseproto()
471 sizeof(Proto *) * f->sizep + in traverseproto()
Dlobject.h481 int sizep; /* size of `p' */ member
/external/e2fsprogs/lib/ext2fs/
Dtdbtool.c535 static char *convert_string(char *instring, size_t *sizep) in convert_string() argument
563 *sizep = length; in convert_string()
/external/dnsmasq/src/
Dforward.c395 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/
Dsanitizer_common_interceptors.inc4914 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/
Dsyswrap-darwin.c3212 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()