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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
PR12778.cpp 4 void* allocate(int __n) {
5 return ::operator new(__n);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
socket2.h 24 extern ssize_t __recv_chk (int __fd, void *__buf, size_t __n, size_t __buflen,
26 extern ssize_t __REDIRECT (__recv_alias, (int __fd, void *__buf, size_t __n,
29 (int __fd, void *__buf, size_t __n, size_t __buflen,
35 recv (int __fd, void *__buf, size_t __n, int __flags)
39 if (!__builtin_constant_p (__n))
40 return __recv_chk (__fd, __buf, __n, __bos0 (__buf), __flags);
42 if (__n > __bos0 (__buf))
43 return __recv_chk_warn (__fd, __buf, __n, __bos0 (__buf), __flags);
45 return __recv_alias (__fd, __buf, __n, __flags);
48 extern ssize_t __recvfrom_chk (int __fd, void *__restrict __buf, size_t __n,
    [all...]
stdio2.h 53 extern int __snprintf_chk (char *__restrict __s, size_t __n, int __flag,
56 extern int __vsnprintf_chk (char *__restrict __s, size_t __n, int __flag,
62 __NTH (snprintf (char *__restrict __s, size_t __n,
65 return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
75 __NTH (vsnprintf (char *__restrict __s, size_t __n,
78 return __builtin___vsnprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
233 extern char *__fgets_chk (char *__restrict __s, size_t __size, int __n,
236 (char *__restrict __s, int __n,
239 (char *__restrict __s, size_t __size, int __n,
245 fgets (char *__restrict __s, int __n, FILE *__restrict __stream
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
socket2.h 24 extern ssize_t __recv_chk (int __fd, void *__buf, size_t __n, size_t __buflen,
26 extern ssize_t __REDIRECT (__recv_alias, (int __fd, void *__buf, size_t __n,
29 (int __fd, void *__buf, size_t __n, size_t __buflen,
35 recv (int __fd, void *__buf, size_t __n, int __flags)
39 if (!__builtin_constant_p (__n))
40 return __recv_chk (__fd, __buf, __n, __bos0 (__buf), __flags);
42 if (__n > __bos0 (__buf))
43 return __recv_chk_warn (__fd, __buf, __n, __bos0 (__buf), __flags);
45 return __recv_alias (__fd, __buf, __n, __flags);
48 extern ssize_t __recvfrom_chk (int __fd, void *__restrict __buf, size_t __n,
    [all...]
stdio2.h 53 extern int __snprintf_chk (char *__restrict __s, size_t __n, int __flag,
56 extern int __vsnprintf_chk (char *__restrict __s, size_t __n, int __flag,
62 __NTH (snprintf (char *__restrict __s, size_t __n,
65 return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
75 __NTH (vsnprintf (char *__restrict __s, size_t __n,
78 return __builtin___vsnprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1,
233 extern char *__fgets_chk (char *__restrict __s, size_t __size, int __n,
236 (char *__restrict __s, int __n,
239 (char *__restrict __s, size_t __size, int __n,
245 fgets (char *__restrict __s, int __n, FILE *__restrict __stream
    [all...]
  /bionic/libc/include/android/
legacy_strings_inlines.h 41 static __inline int ffs(int __n) { return __builtin_ffs(__n); }
legacy_stdlib_inlines.h 38 static __inline int abs(int __n) { return (__n < 0) ? -__n : __n; }
40 static __inline long labs(long __n) { return (__n < 0L) ? -__n : __n; }
42 static __inline long long llabs(long long __n) {
43 return (__n < 0LL) ? -__n : __n
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
compiletime_settings.h 41 * @param __n Input size.
44 #define _GLIBCXX_CALL(__n)
47 #define _GLIBCXX_CALL(__n) \
48 printf(" %__s:\niam = %d, __n = %ld, __num_threads = %d\n", \
49 __PRETTY_FUNCTION__, omp_get_thread_num(), (__n), __get_max_threads());
equally_split.h 39 * splitting positions when splitting the range [0,__n) into parts of
42 * @param __n Number of elements
48 __equally_split(_DifferenceType __n, _ThreadIndex __num_threads,
51 _DifferenceType __chunk_length = __n / __num_threads;
52 _DifferenceType __num_longer_chunks = __n % __num_threads;
60 *__s++ = __n;
69 * @param __n Number of elements
75 __equally_split_point(_DifferenceType __n,
79 _DifferenceType __chunk_length = __n / __num_threads;
80 _DifferenceType __num_longer_chunks = __n % __num_threads
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
compiletime_settings.h 41 * @param __n Input size.
44 #define _GLIBCXX_CALL(__n)
47 #define _GLIBCXX_CALL(__n) \
48 printf(" %__s:\niam = %d, __n = %ld, __num_threads = %d\n", \
49 __PRETTY_FUNCTION__, omp_get_thread_num(), (__n), __get_max_threads());
equally_split.h 39 * splitting positions when splitting the range [0,__n) into parts of
42 * @param __n Number of elements
48 __equally_split(_DifferenceType __n, _ThreadIndex __num_threads,
51 _DifferenceType __chunk_length = __n / __num_threads;
52 _DifferenceType __num_longer_chunks = __n % __num_threads;
60 *__s++ = __n;
69 * @param __n Number of elements
75 __equally_split_point(_DifferenceType __n,
79 _DifferenceType __chunk_length = __n / __num_threads;
80 _DifferenceType __num_longer_chunks = __n % __num_threads
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_iterator_base_funcs.h 79 typename iterator_traits<_InputIterator>::difference_type __n = 0; local
83 ++__n;
85 return __n;
123 __advance(_InputIterator& __i, _Distance __n, input_iterator_tag)
127 _GLIBCXX_DEBUG_ASSERT(__n >= 0);
128 while (__n--)
134 __advance(_BidirectionalIterator& __i, _Distance __n,
140 if (__n > 0)
141 while (__n--)
144 while (__n++
    [all...]
ostream_insert.h 45 const _CharT* __s, streamsize __n)
50 const streamsize __put = __out.rdbuf()->sputn(__s, __n);
51 if (__put != __n)
57 __ostream_fill(basic_ostream<_CharT, _Traits>& __out, streamsize __n)
63 for (; __n > 0; --__n)
77 const _CharT* __s, streamsize __n)
88 if (__w > __n)
94 __ostream_fill(__out, __w - __n);
96 __ostream_write(__out, __s, __n);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_iterator_base_funcs.h 79 typename iterator_traits<_InputIterator>::difference_type __n = 0; local
83 ++__n;
85 return __n;
123 __advance(_InputIterator& __i, _Distance __n, input_iterator_tag)
127 _GLIBCXX_DEBUG_ASSERT(__n >= 0);
128 while (__n--)
134 __advance(_BidirectionalIterator& __i, _Distance __n,
140 if (__n > 0)
141 while (__n--)
144 while (__n++
    [all...]
ostream_insert.h 45 const _CharT* __s, streamsize __n)
50 const streamsize __put = __out.rdbuf()->sputn(__s, __n);
51 if (__put != __n)
57 __ostream_fill(basic_ostream<_CharT, _Traits>& __out, streamsize __n)
63 for (; __n > 0; --__n)
77 const _CharT* __s, streamsize __n)
88 if (__w > __n)
94 __ostream_fill(__out, __w - __n);
96 __ostream_write(__out, __s, __n);
    [all...]
  /external/libcxx/test/support/
constexpr_char_traits.hpp 37 static TEST_CONSTEXPR_CXX14 int compare(const char_type* __s1, const char_type* __s2, size_t __n);
39 static TEST_CONSTEXPR_CXX14 const char_type* find(const char_type* __s, size_t __n, const char_type& __a);
40 static TEST_CONSTEXPR_CXX14 char_type* move(char_type* __s1, const char_type* __s2, size_t __n);
41 static TEST_CONSTEXPR_CXX14 char_type* copy(char_type* __s1, const char_type* __s2, size_t __n);
42 static TEST_CONSTEXPR_CXX14 char_type* assign(char_type* __s, size_t __n, char_type __a);
63 constexpr_char_traits<_CharT>::compare(const char_type* __s1, const char_type* __s2, size_t __n)
65 for (; __n; --__n, ++__s1, ++__s2)
87 constexpr_char_traits<_CharT>::find(const char_type* __s, size_t __n, const char_type& __a)
89 for (; __n; --__n
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
constexpr_char_traits.hpp 37 static TEST_CONSTEXPR_CXX14 int compare(const char_type* __s1, const char_type* __s2, size_t __n);
39 static TEST_CONSTEXPR_CXX14 const char_type* find(const char_type* __s, size_t __n, const char_type& __a);
40 static TEST_CONSTEXPR_CXX14 char_type* move(char_type* __s1, const char_type* __s2, size_t __n);
41 static TEST_CONSTEXPR_CXX14 char_type* copy(char_type* __s1, const char_type* __s2, size_t __n);
42 static TEST_CONSTEXPR_CXX14 char_type* assign(char_type* __s, size_t __n, char_type __a);
63 constexpr_char_traits<_CharT>::compare(const char_type* __s1, const char_type* __s2, size_t __n)
65 for (; __n; --__n, ++__s1, ++__s2)
87 constexpr_char_traits<_CharT>::find(const char_type* __s, size_t __n, const char_type& __a)
89 for (; __n; --__n
    [all...]
  /external/syslinux/com32/include/
stdlib.h 16 static __inline__ int abs(int __n)
18 return (__n < 0) ? -__n : __n;
29 static __inline__ long labs(long __n)
31 return (__n < 0L) ? -__n : __n;
34 static __inline__ long long llabs(long long __n)
36 return (__n < 0LL) ? -__n : __n
    [all...]
  /external/libese/libese-sysdeps/
android-sysdeps.c 21 void *ese_memcpy(void *__dest, const void *__src, uint64_t __n) {
22 return memcpy(__dest, __src, __n);
25 void *ese_memset(void *__s, int __c, uint64_t __n) {
26 return memset(__s, __c, __n);
darwin-sysdeps.c 22 void *ese_memcpy(void *__dest, const void *__src, uint64_t __n) {
23 return memcpy(__dest, __src, __n);
26 void *ese_memset(void *__s, int __c, uint64_t __n) {
27 return memset(__s, __c, __n);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
debug_allocator.h 88 allocate(size_type __n)
90 pointer __res = _M_allocator.allocate(__n + _M_extra);
92 *__ps = __n;
97 allocate(size_type __n, const void* __hint)
99 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
101 *__ps = __n;
106 deallocate(pointer __p, size_type __n)
111 if (*reinterpret_cast<size_type*>(__real_p) != __n)
116 _M_allocator.deallocate(__real_p, __n + _M_extra);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
debug_allocator.h 88 allocate(size_type __n)
90 pointer __res = _M_allocator.allocate(__n + _M_extra);
92 *__ps = __n;
97 allocate(size_type __n, const void* __hint)
99 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint);
101 *__ps = __n;
106 deallocate(pointer __p, size_type __n)
111 if (*reinterpret_cast<size_type*>(__real_p) != __n)
116 _M_allocator.deallocate(__real_p, __n + _M_extra);
  /bionic/libc/include/
libgen.h 53 int dirname_r(const char* __path, char* __buf, size_t __n);
54 int basename_r(const char* __path, char* __buf, size_t __n);
string.h 44 void* memccpy(void* __dst, const void* __src, int __stop_char, size_t __n);
45 void* memchr(const void* __s, int __ch, size_t __n) __attribute_pure__;
47 extern "C++" void* memrchr(void* __s, int __ch, size_t __n) __RENAME(memrchr) __attribute_pure__;
48 extern "C++" const void* memrchr(const void* __s, int __ch, size_t __n) __RENAME(memrchr) __attribute_pure__;
50 void* memrchr(const void* __s, int __ch, size_t __n) __attribute_pure__;
52 int memcmp(const void* __lhs, const void* __rhs, size_t __n) __attribute_pure__;
55 void* mempcpy(void* __dst, const void* __src, size_t __n) __INTRODUCED_IN(23);
57 void* memmove(void* __dst, const void* __src, size_t __n);
58 void* memset(void* __dst, int __ch, size_t __n);
62 char* __strchr_chk(const char* __s, int __ch, size_t __n) __INTRODUCED_IN(18)
    [all...]
  /bionic/libc/include/bits/
strcasecmp.h 40 int strncasecmp(const char* __s1, const char* __s2, size_t __n) __attribute_pure__;
41 int strncasecmp_l(const char* __s1, const char* __s2, size_t __n, locale_t __l) __attribute_pure__ __INTRODUCED_IN(23);

Completed in 659 milliseconds

1 2 3 4 5 6 7 8 91011>>