Searched defs:count (Results 26 - 50 of 81) sorted by relevance

1234

/bionic/libc/arch-arm64/generic/bionic/
H A Dmemmove.S40 #define count x2 define
60 lsl count, count, #2
66 add tmp1, src, count
73 add dst, dstin, count
74 add src, src, count
75 cmp count, #64
82 * bottom 6 bits of count to be accurate. */
83 ands tmp1, count, #0x30
101 tbz count, #
[all...]
/bionic/libc/kernel/uapi/linux/netfilter/
H A Dxt_statistic.h49 __u32 count; member in struct:xt_statistic_info::__anon615::__anon617
/bionic/libc/kernel/uapi/xen/
H A Dgntalloc.h27 __u32 count; member in struct:ioctl_gntalloc_alloc_gref
37 __u32 count; member in struct:ioctl_gntalloc_dealloc_gref
H A Dgntdev.h30 __u32 count; member in struct:ioctl_gntdev_map_grant_ref
40 __u32 count; member in struct:ioctl_gntdev_unmap_grant_ref
49 __u32 count; member in struct:ioctl_gntdev_get_offset_for_vaddr
55 __u32 count; member in struct:ioctl_gntdev_set_max_grants
/bionic/libc/private/
H A Dbionic_futex.h56 static inline int __futex_wake(volatile void* ftx, int count) { argument
57 return __futex(ftx, FUTEX_WAKE, count, NULL, 0);
60 static inline int __futex_wake_ex(volatile void* ftx, bool shared, int count) { argument
61 return __futex(ftx, shared ? FUTEX_WAKE : FUTEX_WAKE_PRIVATE, count, NULL, 0);
/bionic/libc/arch-arm64/denver64/bionic/
H A Dmemcpy_base.S38 #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/bionic/
H A Dpthread_barrier.cpp92 unsigned count) {
94 if (count == 0) {
97 barrier->init_count = count;
91 pthread_barrier_init(pthread_barrier_t* barrier_interface, const pthread_barrierattr_t* attr, unsigned count) argument
H A Dsystem_properties_compat.c48 unsigned volatile count; member in struct:prop_area_compat
74 unsigned count = pa->count; local
84 while(count--) {
126 for (i = 0; i < pa->count; i++) {
H A Dlegacy_32_bit_support.cpp87 ssize_t preadv(int fd, const struct iovec* ios, int count, off_t offset) { argument
88 return __preadv64(fd, ios, count, offset, 0);
90 ssize_t preadv64(int fd, const struct iovec* ios, int count, off64_t offset) { argument
91 return __preadv64(fd, ios, count, offset, offset >> 32);
93 ssize_t pwritev(int fd, const struct iovec* ios, int count, off_t offset) { argument
94 return __pwritev64(fd, ios, count, offset, 0);
96 ssize_t pwritev64(int fd, const struct iovec* ios, int count, off64_t offset) { argument
97 return __pwritev64(fd, ios, count, offset, offset >> 32);
H A Dpty.cpp101 ssize_t count = readlink(path, buf, len); local
102 if (count == -1) {
105 if (static_cast<size_t>(count) == len) {
109 buf[count] = '\0';
H A Dsemaphore.cpp72 // Convert a value into the corresponding sem->count bit pattern.
75 // Convert a sem->count bit pattern into the corresponding signed value.
80 // The value +1 as a sem->count bit-pattern.
83 // The value -1 as a sem->count bit-pattern.
90 static_assert(sizeof(atomic_uint) == sizeof(sem->count),
91 "sem->count should actually be atomic_uint in implementation.");
93 // We prefer casting to atomic_uint instead of declaring sem->count to be atomic_uint directly.
95 return reinterpret_cast<atomic_uint*>(&sem->count);
111 unsigned int count = SEMCOUNT_FROM_VALUE(value); local
113 count |
[all...]
H A Dlibc_init_common.cpp347 int count = 0; local
348 while (fini_array[count] != NULL) {
349 ++count;
353 while (count > 0) {
354 Dtor dtor = fini_array[--count];
/bionic/libc/dns/nameser/
H A Dns_parse.c80 ns_skiprr(const u_char *ptr, const u_char *eom, ns_sect section, int count) { argument
83 for (; count > 0; count--) {
/bionic/libc/kernel/uapi/linux/
H A Dphantom.h29 __u32 count; member in struct:phm_regs
H A Dfsl_hypervisor.h55 __u64 count; member in struct:fsl_hv_ioctl_memcpy
H A Dnet_dropmon.h26 __u32 count; member in struct:net_dm_drop_point
H A Dcciss_ioctl.h36 __u32 count; member in struct:_cciss_coalint_struct
H A Dif_tun.h91 __u16 count; member in struct:tun_filter
/bionic/tests/
H A Dstack_unwinding_test.cpp64 int count = 0; local
65 _Unwind_Backtrace(FrameCounter, &count);
66 return count;
70 int count = 0; local
71 _Unwind_Backtrace(FrameCounter, &count);
73 ASSERT_EQ(count + 1, deeper_count);
H A Dsignal_test.cpp121 static int count = 0; local
122 if (++count == 1) {
/bionic/libc/kernel/uapi/linux/can/
H A Dbcm.h32 __u32 count; member in struct:bcm_msg_head
/bionic/linker/
H A Dlinker_reloc_iterators.h36 plain_reloc_iterator(rel_t* rel_array, size_t count) argument
37 : begin_(rel_array), end_(begin_ + count), current_(begin_) {}
/bionic/libc/include/
H A Dstdio.h293 __errordecl(__fread_too_big_error, "fread called with size * count bigger than buffer");
294 __errordecl(__fread_overflow, "fread called with overflowing size * count");
298 __errordecl(__fwrite_too_big_error, "fwrite called with size * count bigger than buffer");
299 __errordecl(__fwrite_overflow, "fwrite called with overflowing size * count");
348 size_t fread(void * __restrict buf, size_t size, size_t count, FILE * __restrict stream) { argument
353 return __fread_real(buf, size, count, stream);
356 if (__builtin_constant_p(size) && __builtin_constant_p(count)) {
358 if (__size_mul_overflow(size, count, &total)) {
366 return __fread_real(buf, size, count, stream);
370 return __fread_chk(buf, size, count, strea
374 fwrite(const void * __restrict buf, size_t size, size_t count, FILE * __restrict stream) argument
[all...]
H A Dunistd.h257 __errordecl(__pread_count_toobig_error, "pread called with count > SSIZE_MAX");
262 __errordecl(__pread64_count_toobig_error, "pread64 called with count > SSIZE_MAX");
267 __errordecl(__pwrite_count_toobig_error, "pwrite called with count > SSIZE_MAX");
272 __errordecl(__pwrite64_count_toobig_error, "pwrite64 called with count > SSIZE_MAX");
277 __errordecl(__read_count_toobig_error, "read called with count > SSIZE_MAX");
282 __errordecl(__write_count_toobig_error, "write called with count > SSIZE_MAX");
335 ssize_t pread(int fd, void* buf, size_t count, off_t offset) { argument
339 if (__builtin_constant_p(count) && (count > SSIZE_MAX)) {
344 return __PREAD_PREFIX(real)(fd, buf, count, offse
360 pread64(int fd, void* buf, size_t count, off64_t offset) argument
391 pwrite(int fd, const void* buf, size_t count, off_t offset) argument
416 pwrite64(int fd, const void* buf, size_t count, off64_t offset) argument
441 read(int fd, void* buf, size_t count) argument
466 write(int fd, const void* buf, size_t count) argument
[all...]
/bionic/libc/kernel/uapi/mtd/
H A Dubi-user.h87 __s32 count; member in struct:ubi_rnvol_req

Completed in 1157 milliseconds

1234