/bionic/libc/bionic/ |
H A D | sched_cpualloc.c | 32 cpu_set_t* __sched_cpualloc(size_t count) argument 34 return (cpu_set_t*) malloc(CPU_ALLOC_SIZE(count));
|
H A D | __pread64_chk.cpp | 33 extern "C" ssize_t __pread64_chk(int fd, void* buf, size_t count, off64_t offset, size_t buf_size) { argument 34 if (__predict_false(count > buf_size)) { 38 if (__predict_false(count > SSIZE_MAX)) { 39 __fortify_chk_fail("pread64: count > SSIZE_MAX", 0); 42 return pread64(fd, buf, count, offset);
|
H A D | __pread_chk.cpp | 33 extern "C" ssize_t __pread_chk(int fd, void* buf, size_t count, off_t offset, size_t buf_size) { argument 34 if (__predict_false(count > buf_size)) { 38 if (__predict_false(count > SSIZE_MAX)) { 39 __fortify_chk_fail("pread: count > SSIZE_MAX", 0); 42 return pread(fd, buf, count, offset);
|
H A D | __read_chk.cpp | 33 extern "C" ssize_t __read_chk(int fd, void* buf, size_t count, size_t buf_size) { argument 34 if (__predict_false(count > buf_size)) { 38 if (__predict_false(count > SSIZE_MAX)) { 39 __fortify_chk_fail("read: count > SSIZE_MAX", 0); 42 return read(fd, buf, count);
|
H A D | sched_cpucount.c | 34 int count = 0; local 37 count += __builtin_popcountl(set->__bits[nn]); 40 return count;
|
/bionic/libc/include/ |
H A D | semaphore.h | 39 unsigned int count; member in struct:__anon61
|
/bionic/libc/kernel/uapi/linux/ |
H A D | ivtvfb.h | 27 int count; member in struct:ivtvfb_dma_frame
|
H A D | keychord.h | 27 __u16 count; member in struct:input_keychord
|
H A D | atm_nicstar.h | 36 int count; member in struct:pool_levels
|
/bionic/libc/upstream-netbsd/android/include/sys/ |
H A D | sha1.h | 20 uint32_t count[2]; member in struct:__anon936
|
/bionic/tests/ |
H A D | sys_sendfile_test.cpp | 33 size_t count = 2; local 34 ssize_t rc = sendfile(dst_file.fd, src_file.fd, &offset, count); 52 size_t count = 2; local 53 ssize_t rc = sendfile64(dst_file.fd, src_file.fd, &offset, count);
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
H A D | fwrite.c | 44 * Write `count' objects (each size `size') from memory to the given file. 48 fwrite(const void *buf, size_t size, size_t count, FILE *fp) argument 58 if ((size >= MUL_NO_OVERFLOW || count >= MUL_NO_OVERFLOW) && 59 size > 0 && SIZE_MAX / size < count) { 66 * ANSI and SUSv2 require a return value of 0 if size or count are 0. 68 if ((n = count * size) == 0) 86 return (count);
|
/bionic/libc/arch-arm64/denver64/bionic/ |
H A D | memset.S | 50 #define count x2 define 77 cmp count, #256 80 cmp count, #15 83 ands tmp1, count, #0xC0 98 ands tmp1, count, #0x30 111 and count, count, #15 112 add dst, dst, count 119 tbz count, #3, 1f 122 tbz count, # [all...] |
H A D | memcpy_base.S | 38 #define count x2 define 62 cmp count, #64 64 cmp count, #15 71 * bottom 6 bits of count to be accurate. */ 72 ands tmp1, count, #0x30 89 ands count, count, #15 91 add src, src, count 93 add dst, dst, count 101 tbz count, # [all...] |
/bionic/libc/arch-arm64/generic/bionic/ |
H A D | memset.S | 49 #define count x1 define 51 #define count x2 define 83 cmp count, #64 86 cmp count, #15 89 ands tmp1, count, #0x30 102 and count, count, #15 103 add dst, dst, count 110 tbz count, #3, 1f 113 tbz count, # [all...] |
H A D | memcpy_base.S | 37 #define count x2 define 56 cmp count, #64 58 cmp count, #15 65 * bottom 6 bits of count to be accurate. */ 66 ands tmp1, count, #0x30 83 ands count, count, #15 85 add src, src, count 87 add dst, dst, count 95 tbz count, # [all...] |
/bionic/libc/dns/net/ |
H A D | getservent.c | 57 int nn,count; local 72 count = q[0]; /* get aliascount */ 75 total += (count+1)*sizeof(char*); 76 for (nn = 0; nn < count; nn++) { 89 p2 += (count+1)*sizeof(char*); 107 for (nn = 0; nn < count; nn++) {
|
/bionic/libc/kernel/uapi/linux/netfilter/ |
H A D | xt_connbytes.h | 40 } count; member in struct:xt_connbytes_info
|
H A D | xt_multiport.h | 32 __u8 count; member in struct:xt_multiport 39 __u8 count; member in struct:xt_multiport_v1
|
H A D | xt_statistic.h | 49 __u32 count; member in struct:xt_statistic_info::__anon570::__anon572
|
/bionic/libc/private/ |
H A D | bionic_futex.h | 54 static inline int __futex_wake(volatile void* ftx, int count) { argument 55 return __futex(ftx, FUTEX_WAKE, count, NULL); 58 static inline int __futex_wake_ex(volatile void* ftx, bool shared, int count) { argument 59 return __futex(ftx, shared ? FUTEX_WAKE : FUTEX_WAKE_PRIVATE, count, NULL);
|
/bionic/libc/stdio/ |
H A D | fread.c | 44 fread(void *buf, size_t size, size_t count, FILE *fp) argument 49 if ((size >= MUL_NO_OVERFLOW || count >= MUL_NO_OVERFLOW) && 50 size > 0 && SIZE_MAX / size < count) { 56 const size_t desired_total = count * size; 60 * ANSI and SUSv2 require a return value of 0 if size or count are 0.
|
/bionic/linker/ |
H A D | linker_sleb128.h | 27 sleb128_decoder(const uint8_t* buffer, size_t count) argument 28 : current_(buffer), end_(buffer+count) { }
|
/bionic/benchmarks/ |
H A D | utils.cpp | 44 uint64_t count = static_cast<uint64_t>(value); local 48 count = static_cast<uint64_t>(-value); 51 // The byte thresholds at which we display amounts. A count is displayed 71 if (count >= kUnitThresholds[i]) { 77 count / kAmountPerUnit[i], kUnitStrings[i]);
|
/bionic/libc/kernel/uapi/xen/ |
H A D | gntalloc.h | 26 uint32_t count; member in struct:ioctl_gntalloc_alloc_gref 36 uint32_t count; member in struct:ioctl_gntalloc_dealloc_gref
|