| /bionic/libc/bionic/ |
| D | new.cpp | 25 void* operator new(std::size_t size) { in operator new() 33 void* operator new[](std::size_t size) { in operator new[]() 49 void* operator new(std::size_t size, const std::nothrow_t&) { in operator new() 53 void* operator new[](std::size_t size, const std::nothrow_t&) { in operator new[]()
|
| D | jemalloc_wrapper.cpp | 25 size_t size = BIONIC_ALIGN(bytes, pagesize); in je_pvalloc() local 39 void* je_memalign_round_up_boundary(size_t boundary, size_t size) { in je_memalign_round_up_boundary()
|
| D | malloc_debug_leak.cpp | 110 uintptr_t* backtrace, size_t numEntries, size_t size) { in find_entry() 130 static HashEntry* record_backtrace(uintptr_t* backtrace, size_t numEntries, size_t size) { in record_backtrace() 262 extern "C" int fill_posix_memalign(void** memptr, size_t alignment, size_t size) { in fill_posix_memalign() 275 size_t size = BIONIC_ALIGN(bytes, pagesize); in fill_pvalloc() local 282 extern "C" void* fill_valloc(size_t size) { in fill_valloc() 304 size_t size = bytes + sizeof(AllocationEntry); in leak_malloc() local 380 size_t size = n_elements * elem_size; in leak_calloc() local 468 size_t size = (alignment-MALLOC_ALIGNMENT) + bytes; in leak_memalign() local 499 extern "C" int leak_posix_memalign(void** memptr, size_t alignment, size_t size) { in leak_posix_memalign() 520 size_t size = BIONIC_ALIGN(bytes, pagesize); in leak_pvalloc() local [all …]
|
| D | scandir.cpp | 38 size_t size() { in size() function in ScandirResult 82 size_t size = ((original->d_reclen + 3) & ~3); in CopyDirent() local 111 size_t size = names.size(); in scandir() local
|
| D | mmap.cpp | 42 void* mmap64(void* addr, size_t size, int prot, int flags, int fd, off64_t offset) { in mmap64() 62 void* mmap(void* addr, size_t size, int prot, int flags, int fd, off_t offset) { in mmap()
|
| D | statvfs.cpp | 24 # define __fstatfs64(fd,size,buf) fstatfs(fd,buf) argument 25 # define __statfs64(path,size,buf) statfs(path,buf) argument
|
| D | readlink.cpp | 33 ssize_t readlink(const char* path, char* buf, size_t size) { in readlink()
|
| D | malloc_debug_check.cpp | 86 size_t size; member 197 static inline void add(hdr_t* hdr, size_t size) { in add() 344 size_t size = sizeof(hdr_t) + bytes + sizeof(ftr_t); in chk_malloc() local 376 size_t size = (alignment-MALLOC_ALIGNMENT) + bytes; in chk_memalign() local 497 size_t size = sizeof(hdr_t) + bytes + sizeof(ftr_t); in chk_realloc() local 531 size_t size = sizeof(hdr_t) + total_bytes + sizeof(ftr_t); in chk_calloc() local 566 extern "C" int chk_posix_memalign(void** memptr, size_t alignment, size_t size) { in chk_posix_memalign() 587 size_t size = BIONIC_ALIGN(bytes, pagesize); in chk_pvalloc() local 594 extern "C" void* chk_valloc(size_t size) { in chk_valloc()
|
| D | getcwd.cpp | 34 char* getcwd(char* buf, size_t size) { in getcwd()
|
| D | dl_iterate_phdr_static.cpp | 38 int dl_iterate_phdr(int (*cb)(struct dl_phdr_info* info, size_t size, void* data), void* data) { in dl_iterate_phdr()
|
| /bionic/libc/kernel/uapi/asm-generic/ |
| D | ioctl.h | 52 #define _IOC(dir,type,nr,size) (((dir) << _IOC_DIRSHIFT) | ((type) << _IOC_TYPESHIFT) | ((nr)… argument 56 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size))) argument 57 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument 59 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size))) argument 60 #define _IOR_BAD(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size)) argument 61 #define _IOW_BAD(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size)) argument 62 #define _IOWR_BAD(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size)) argument
|
| /bionic/libc/upstream-openbsd/lib/libc/net/ |
| D | inet_ntop.c | 46 inet_ntop(int af, const void *src, char *dst, socklen_t size) in inet_ntop() 72 inet_ntop4(const u_char *src, char *dst, size_t size) in inet_ntop4() 94 inet_ntop6(const u_char *src, char *dst, size_t size) in inet_ntop6()
|
| /bionic/libc/kernel/uapi/drm/ |
| D | armada_drm.h | 29 uint32_t size; member 37 uint64_t size; member 47 uint32_t size; member
|
| D | sis_drm.h | 42 unsigned long size; member 47 unsigned long offset, size; member 51 unsigned long offset, size; member
|
| /bionic/libc/include/ |
| D | alloca.h | 31 #define alloca(size) __builtin_alloca(size) argument
|
| /bionic/libc/upstream-openbsd/lib/libc/stdio/ |
| D | setbuffer.c | 37 setbuffer(FILE *fp, char *buf, int size) in setbuffer()
|
| D | setvbuf.c | 43 setvbuf(FILE *fp, char *buf, int mode, size_t size) in setvbuf()
|
| D | fwrite.c | 48 fwrite(const void *buf, size_t size, size_t count, FILE *fp) in fwrite()
|
| D | makebuf.c | 53 size_t size; in __smakebuf() local
|
| D | fgetwc.c | 43 size_t size; in __fgetwc_unlock() local
|
| D | fputwc.c | 44 size_t size; in __fputwc_unlock() local
|
| /bionic/libc/dns/resolv/ |
| D | res_debug.h | 25 # define DprintQ(cond, args, query, size) /*empty*/ argument 30 # define DprintQ(cond, args, query, size) if (cond) {\ argument
|
| /bionic/libc/kernel/uapi/asm-x86/asm/ |
| D | mtrr.h | 30 unsigned int size; member 37 unsigned int size; member 45 __u32 size; member 51 __u32 size; member
|
| /bionic/libc/stdio/ |
| D | fread.c | 43 fread(void *buf, size_t size, size_t count, FILE *fp) in fread()
|
| /bionic/libc/upstream-netbsd/lib/libc/stdlib/ |
| D | bsearch.c | 62 bsearch(const void *key, const void *base0, size_t nmemb, size_t size, in bsearch()
|