Searched defs:count (Results 1 - 25 of 164) sorted by relevance

1234567

/bionic/libc/bionic/
H A Dsched_cpualloc.c32 cpu_set_t* __sched_cpualloc(size_t count) argument
37 return (cpu_set_t*) malloc(CPU_ALLOC_SIZE(count)); // NOLINT
H A Dsched_cpucount.c34 int count = 0; local
37 count += __builtin_popcountl(set->__bits[nn]);
40 return count;
H A Dgetentropy.cpp40 ssize_t count = TEMP_FAILURE_RETRY(read(fd, static_cast<char*>(buffer) + collected, local
42 if (count == -1) {
46 collected += count;
64 long count = TEMP_FAILURE_RETRY(getrandom(static_cast<char*>(buffer) + collected, local
66 if (count == -1) {
75 collected += count;
/bionic/libc/include/
H A Dsemaphore.h39 unsigned int count; member in struct:__anon106
/bionic/tools/versioner/current/
H A Dsemaphore.h39 unsigned int count; member in struct:__anon2520
/bionic/libc/kernel/android/uapi/linux/
H A Dkeychord.h27 __u16 count; member in struct:input_keychord
/bionic/libc/kernel/uapi/linux/
H A Divtvfb.h26 int count; member in struct:ivtvfb_dma_frame
H A Datm_nicstar.h33 int count; member in struct:pool_levels
/bionic/libc/upstream-netbsd/android/include/sys/
H A Dsha1.h20 uint32_t count[2]; member in struct:__anon1226
/bionic/libc/versioner-dependencies/common/kernel_android_uapi/linux/
H A Dkeychord.h27 __u16 count; member in struct:input_keychord
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Divtvfb.h26 int count; member in struct:ivtvfb_dma_frame
H A Datm_nicstar.h33 int count; member in struct:pool_levels
/bionic/tests/
H A Dsys_sendfile_test.cpp33 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/tools/versioner/dependencies/common/kernel_android_uapi/linux/
H A Dkeychord.h27 __u16 count; member in struct:input_keychord
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/
H A Divtvfb.h26 int count; member in struct:ivtvfb_dma_frame
H A Datm_nicstar.h33 int count; member in struct:pool_levels
/bionic/linker/
H A Dlinker_sleb128.h42 sleb128_decoder(const uint8_t* buffer, size_t count) argument
43 : current_(buffer), end_(buffer+count) { }
/bionic/libc/arch-arm64/generic/bionic/
H A Dmemset.S76 #define count x2 define
89 cmp count, dst
104 add dstend, dstin, count
106 cmp count, 96
108 cmp count, 16
113 tbz count, 3, 1f
118 1: tbz count, 2, 2f
122 2: cbz count, 3f
124 tbz count, 1, 3f
131 tbnz count,
[all...]
/bionic/libc/include/bits/fortify/
H A Dstdio.h96 size_t fread(void* const __pass_object_size0 buf, size_t size, size_t count, FILE* stream)
98 __clang_error_if(__unsafe_check_mul_overflow(size, count),
99 "in call to 'fread', size * count overflows")
100 __clang_error_if(__bos(buf) != __BIONIC_FORTIFY_UNKNOWN_SIZE && size * count > __bos(buf),
101 "in call to 'fread', size * count is too large for the given buffer") {
105 return __call_bypassing_fortify(fread)(buf, size, count, stream);
107 return __fread_chk(buf, size, count, stream, bos);
111 size_t fwrite(const void* const __pass_object_size0 buf, size_t size, size_t count, FILE* stream)
113 __clang_error_if(__unsafe_check_mul_overflow(size, count),
114 "in call to 'fwrite', size * count overflow
173 fread(void* buf, size_t size, size_t count, FILE* stream) argument
197 fwrite(const void* buf, size_t size, size_t count, FILE* stream) argument
[all...]
/bionic/libc/kernel/uapi/linux/netfilter/
H A Dxt_connbytes.h36 } count; member in struct:xt_connbytes_info
H A Dxt_multiport.h30 __u8 count; member in struct:xt_multiport
35 __u8 count; member in struct:xt_multiport_v1
/bionic/libc/private/
H A Dbionic_futex.h53 static inline int __futex_wake(volatile void* ftx, int count) { argument
54 return __futex(ftx, FUTEX_WAKE, count, NULL, 0);
57 static inline int __futex_wake_ex(volatile void* ftx, bool shared, int count) { argument
58 return __futex(ftx, shared ? FUTEX_WAKE : FUTEX_WAKE_PRIVATE, count, NULL, 0);
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/netfilter/
H A Dxt_connbytes.h36 } count; member in struct:xt_connbytes_info
H A Dxt_multiport.h30 __u8 count; member in struct:xt_multiport
35 __u8 count; member in struct:xt_multiport_v1
/bionic/tools/versioner/current/bits/fortify/
H A Dstdio.h96 size_t fread(void* const __pass_object_size0 buf, size_t size, size_t count, FILE* stream)
98 __clang_error_if(__unsafe_check_mul_overflow(size, count),
99 "in call to 'fread', size * count overflows")
100 __clang_error_if(__bos(buf) != __BIONIC_FORTIFY_UNKNOWN_SIZE && size * count > __bos(buf),
101 "in call to 'fread', size * count is too large for the given buffer") {
105 return __call_bypassing_fortify(fread)(buf, size, count, stream);
107 return __fread_chk(buf, size, count, stream, bos);
111 size_t fwrite(const void* const __pass_object_size0 buf, size_t size, size_t count, FILE* stream)
113 __clang_error_if(__unsafe_check_mul_overflow(size, count),
114 "in call to 'fwrite', size * count overflow
173 fread(void* buf, size_t size, size_t count, FILE* stream) argument
197 fwrite(const void* buf, size_t size, size_t count, FILE* stream) argument
[all...]

Completed in 4014 milliseconds

1234567