HomeSort by relevance Sort by last modified time
    Searched refs:__count (Results 1 - 25 of 30) sorted by null

1 2

  /bionic/libc/include/sys/
sendfile.h 43 ssize_t sendfile(int __out_fd, int __in_fd, off_t* __offset, size_t __count) __RENAME(sendfile64) __INTRODUCED_IN(21);
53 ssize_t sendfile(int __out_fd, int __in_fd, off_t* __offset, size_t __count);
60 ssize_t sendfile64(int __out_fd, int __in_fd, off64_t* __offset, size_t __count) __INTRODUCED_IN(21);
uio.h 38 ssize_t readv(int __fd, const struct iovec* __iov, int __count);
39 ssize_t writev(int __fd, const struct iovec* __iov, int __count);
42 ssize_t preadv(int __fd, const struct iovec* __iov, int __count, off_t __offset) __RENAME_IF_FILE_OFFSET64(preadv64) __INTRODUCED_IN(24);
43 ssize_t pwritev(int __fd, const struct iovec* __iov, int __count, off_t __offset) __RENAME_IF_FILE_OFFSET64(pwritev64) __INTRODUCED_IN(24);
44 ssize_t preadv64(int __fd, const struct iovec* __iov, int __count, off64_t __offset) __INTRODUCED_IN(24);
45 ssize_t pwritev64(int __fd, const struct iovec* __iov, int __count, off64_t __offset) __INTRODUCED_IN(24);
  /bionic/libc/include/
poll.h 52 int poll(struct pollfd* _Nullable __fds, nfds_t __count, int __timeout_ms);
64 int ppoll(struct pollfd* _Nullable __fds, nfds_t __count, const struct timespec* _Nullable __timeout, const sigset_t* _Nullable __mask) __INTRODUCED_IN(21);
69 int ppoll64(struct pollfd* _Nullable __fds, nfds_t __count, const struct timespec* _Nullable __timeout, const sigset64_t* _Nullable __mask) __INTRODUCED_IN(28);
search.h 53 void* lfind(const void* __key, const void* __base, size_t* __count, size_t __size, int (*__comparator)(const void*, const void*))
55 void* lsearch(const void* __key, void* __base, size_t* __count, size_t __size, int (*__comparator)(const void*, const void*))
unistd.h 238 ssize_t read(int __fd, void* __buf, size_t __count);
239 ssize_t write(int __fd, const void* __buf, size_t __count);
251 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset)
253 ssize_t pwrite(int __fd, const void* __buf, size_t __count, off_t __offset)
259 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset);
260 ssize_t pwrite(int __fd, const void* __buf, size_t __count, off_t __offset);
266 ssize_t pread64(int __fd, void* __buf, size_t __count, off64_t __offset) __INTRODUCED_IN(12);
267 ssize_t pwrite64(int __fd, const void* __buf, size_t __count, off64_t __offset) __INTRODUCED_IN(12);
stdio.h 116 size_t fread(void* __buf, size_t __size, size_t __count, FILE* __fp);
118 size_t fwrite(const void* __buf, size_t __size, size_t __count, FILE* __fp);
262 size_t fread_unlocked(void* __buf, size_t __size, size_t __count, FILE* __fp) __INTRODUCED_IN(28);
263 size_t fwrite_unlocked(const void* __buf, size_t __size, size_t __count, FILE* __fp) __INTRODUCED_IN(28);
fcntl.h 80 ssize_t vmsplice(int __fd, const struct iovec* __iov, size_t __count, unsigned int __flags) __INTRODUCED_IN(21);
  /external/u-boot/arch/mips/include/asm/
string.h 25 extern int strncmp(__const__ char *__cs, __const__ char *__ct, __kernel_size_t __count);
28 extern void *memset(void *__s, int __c, __kernel_size_t __count);
  /external/libxkbcommon/xkbcommon/src/
darray.h 99 unsigned __count = (count), __oldSize = (arr).size; \
100 darray_resize(arr, __oldSize + __count); \
101 memcpy((arr).item + __oldSize, items, __count * sizeof(*(arr).item)); \
105 unsigned __count = (count); \
106 darray_resize(arr, __count); \
107 memcpy((arr).item, items, __count * sizeof(*(arr).item)); \
127 unsigned __count = (count), __oldSize = (arr).size; \
128 darray_resize(arr, __oldSize + __count + 1); \
129 memcpy((arr).item + __oldSize, items, __count * sizeof(*(arr).item)); \
134 unsigned __count = (count), __oldSize = (arr).size;
    [all...]
  /bionic/tools/versioner/tests/preprocessor_file_offset_bits/expected/
foo.h 26 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset) __RENAME(pread64)
31 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset);
  /bionic/tools/versioner/tests/preprocessor_file_offset_bits/headers/
foo.h 24 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset) __RENAME(pread64)
27 ssize_t pread(int __fd, void* __buf, size_t __count, off_t __offset);
  /external/clang/lib/Headers/
mmintrin.h 734 /// \param __count
737 /// values. If __count is greater or equal to 16, the result is set to all 0.
739 _mm_sll_pi16(__m64 __m, __m64 __count)
741 return (__m64)__builtin_ia32_psllw((__v4hi)__m, __count);
755 /// \param __count
758 /// values. If __count is greater or equal to 16, the result is set to all 0.
760 _mm_slli_pi16(__m64 __m, int __count)
762 return (__m64)__builtin_ia32_psllwi((__v4hi)__m, __count);
777 /// \param __count
780 /// values. If __count is greater or equal to 32, the result is set to all 0
    [all...]
cpuid.h 154 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \
156 : "0"(__level), "2"(__count))
166 #define __cpuid_count(__level, __count, __eax, __ebx, __ecx, __edx) \
171 : "0"(__level), "2"(__count))
avx2intrin.h 596 _mm256_slli_epi16(__m256i __a, int __count)
598 return (__m256i)__builtin_ia32_psllwi256((__v16hi)__a, __count);
602 _mm256_sll_epi16(__m256i __a, __m128i __count)
604 return (__m256i)__builtin_ia32_psllw256((__v16hi)__a, (__v8hi)__count);
608 _mm256_slli_epi32(__m256i __a, int __count)
610 return (__m256i)__builtin_ia32_pslldi256((__v8si)__a, __count);
614 _mm256_sll_epi32(__m256i __a, __m128i __count)
616 return (__m256i)__builtin_ia32_pslld256((__v8si)__a, (__v4si)__count);
620 _mm256_slli_epi64(__m256i __a, int __count)
622 return __builtin_ia32_psllqi256((__v4di)__a, __count);
    [all...]
emmintrin.h     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Synch.py 36 __count is the number of times the current thread has acquired it
38 When the lock is released, __tid is None and __count is zero.
47 self.__count = 0
64 self.__count = self.__count + 1
74 assert self.__count == 0
76 self.__count = 1
94 assert self.__count > 0
95 self.__count = self.__count - 1
    [all...]
  /external/python/cpython2/Demo/metaclasses/
Synch.py 36 __count is the number of times the current thread has acquired it
38 When the lock is released, __tid is None and __count is zero.
47 self.__count = 0
64 self.__count = self.__count + 1
74 assert self.__count == 0
76 self.__count = 1
94 assert self.__count > 0
95 self.__count = self.__count -
    [all...]
  /external/libjpeg-turbo/simd/loongson/
loongson-mmintrin.h 665 _mm_slli_pi16(__m64 __m, int64_t __count)
671 : "f" (__m), "f" (*(__m64 *)&__count)
678 _mm_slli_pi32(__m64 __m, int64_t __count)
684 : "f" (__m), "f" (*(__m64 *)&__count)
691 _mm_slli_si64(__m64 __m, int64_t __count)
697 : "f" (__m), "f" (*(__m64 *)&__count)
704 _mm_srli_pi16(__m64 __m, int64_t __count)
710 : "f" (__m), "f" (*(__m64 *)&__count)
717 _mm_srli_pi32(__m64 __m, int64_t __count)
723 : "f" (__m), "f" (*(__m64 *)&__count)
    [all...]
  /external/u-boot/arch/sh/include/asm/
string.h 88 extern void *memset(void *__s, int __c, size_t __count);
  /external/python/cpython2/Lib/
threading.py 136 self.__count = 0
145 self.__class__.__name__, owner, self.__count)
170 self.__count = self.__count + 1
177 self.__count = 1
205 self.__count = count = self.__count - 1
223 self.__count = count
231 count = self.__count
232 self.__count =
    [all...]
  /external/elfutils/libelf/
libelf.h 461 extern size_t elf32_fsize (Elf_Type __type, size_t __count,
465 extern size_t elf64_fsize (Elf_Type __type, size_t __count,
  /external/icu/icu4c/source/common/unicode/
utf8.h 687 uint8_t __b, __count=1, __shift=6; \
694 U8_MASK_LEAD_BYTE(__b, __count); \
699 ++__count; \
utf_old.h 385 uint8_t __count=UTF8_COUNT_TRAIL_BYTES(c); \
386 UTF8_MASK_LEAD_BYTE(c, __count); \
387 switch(__count) { \
474 uint8_t __b, __count=1, __shift=6; \
481 UTF8_MASK_LEAD_BYTE(__b, __count); \
486 ++__count; \
    [all...]
  /external/icu/libandroidicu/include/unicode/
utf8.h 687 uint8_t __b, __count=1, __shift=6; \
694 U8_MASK_LEAD_BYTE(__b, __count); \
699 ++__count; \
utf_old.h 385 uint8_t __count=UTF8_COUNT_TRAIL_BYTES(c); \
386 UTF8_MASK_LEAD_BYTE(c, __count); \
387 switch(__count) { \
474 uint8_t __b, __count=1, __shift=6; \
481 UTF8_MASK_LEAD_BYTE(__b, __count); \
486 ++__count; \
    [all...]

Completed in 1241 milliseconds

1 2