Home
last modified time | relevance | path

Searched refs:byte_count (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/private/
DThreadLocalBuffer.h52 #define LOCAL_INIT_THREAD_LOCAL_BUFFER(type, name, byte_count) \ argument
56 name ## _tls_buffer = reinterpret_cast<type>(calloc(1, byte_count)); \
59 const size_t name ## _tls_buffer_size __attribute__((unused)) = byte_count
/bionic/libc/include/
Dmalloc.h30 extern void* malloc(size_t byte_count) __mallocfunc __wur __attribute__((alloc_size(1)));
32 extern void* realloc(void* p, size_t byte_count) __wur __attribute__((alloc_size(2)));
35 extern void* memalign(size_t alignment, size_t byte_count) __mallocfunc __wur __attribute__((alloc_…
/bionic/libc/bionic/
Dlegacy_32_bit_support.cpp83 ssize_t pread(int fd, void* buf, size_t byte_count, off_t offset) { in pread() argument
84 return pread64(fd, buf, byte_count, static_cast<off64_t>(offset)); in pread()
88 ssize_t pwrite(int fd, const void* buf, size_t byte_count, off_t offset) { in pwrite() argument
89 return pwrite64(fd, buf, byte_count, static_cast<off64_t>(offset)); in pwrite()
Dstubs.cpp58 passwd* dst, char* buf, size_t byte_count, in do_getpw_r() argument
85 if (byte_count < required_byte_count) { in do_getpw_r()
90 snprintf(buf, byte_count, "%s%c%s%c%s", src->pw_name, 0, src->pw_dir, 0, src->pw_shell); in do_getpw_r()
107 char* buf, size_t byte_count, passwd** result) { in getpwnam_r() argument
108 return do_getpw_r(1, name, -1, pwd, buf, byte_count, result); in getpwnam_r()
112 char* buf, size_t byte_count, passwd** result) { in getpwuid_r() argument
113 return do_getpw_r(0, NULL, uid, pwd, buf, byte_count, result); in getpwuid_r()