Home
last modified time | relevance | path

Searched defs:size (Results 1 – 25 of 111) sorted by relevance

12345

/bionic/libc/bionic/
Dnew.cpp25 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[]()
Djemalloc_wrapper.cpp25 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()
Dmalloc_debug_leak.cpp110 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 …]
Dscandir.cpp38 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
Dmmap.cpp42 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()
Dstatvfs.cpp24 # define __fstatfs64(fd,size,buf) fstatfs(fd,buf) argument
25 # define __statfs64(path,size,buf) statfs(path,buf) argument
Dreadlink.cpp33 ssize_t readlink(const char* path, char* buf, size_t size) { in readlink()
Dmalloc_debug_check.cpp86 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()
Dgetcwd.cpp34 char* getcwd(char* buf, size_t size) { in getcwd()
Ddl_iterate_phdr_static.cpp38 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/
Dioctl.h52 #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/
Dinet_ntop.c46 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/
Darmada_drm.h29 uint32_t size; member
37 uint64_t size; member
47 uint32_t size; member
Dsis_drm.h42 unsigned long size; member
47 unsigned long offset, size; member
51 unsigned long offset, size; member
/bionic/libc/include/
Dalloca.h31 #define alloca(size) __builtin_alloca(size) argument
/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dsetbuffer.c37 setbuffer(FILE *fp, char *buf, int size) in setbuffer()
Dsetvbuf.c43 setvbuf(FILE *fp, char *buf, int mode, size_t size) in setvbuf()
Dfwrite.c48 fwrite(const void *buf, size_t size, size_t count, FILE *fp) in fwrite()
Dmakebuf.c53 size_t size; in __smakebuf() local
Dfgetwc.c43 size_t size; in __fgetwc_unlock() local
Dfputwc.c44 size_t size; in __fputwc_unlock() local
/bionic/libc/dns/resolv/
Dres_debug.h25 # 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/
Dmtrr.h30 unsigned int size; member
37 unsigned int size; member
45 __u32 size; member
51 __u32 size; member
/bionic/libc/stdio/
Dfread.c43 fread(void *buf, size_t size, size_t count, FILE *fp) in fread()
/bionic/libc/upstream-netbsd/lib/libc/stdlib/
Dbsearch.c62 bsearch(const void *key, const void *base0, size_t nmemb, size_t size, in bsearch()

12345