Searched refs:__n (Results 1 - 25 of 368) sorted by relevance

1234567891011>>

/netbsd-current/external/cddl/osnet/dist/uts/common/sys/
H A Dccompile.h54 #define __sun_attr___PRINTFLIKE__(__n) \
55 __attribute__((__format__(printf, __n, (__n)+1)))
56 #define __sun_attr___VPRINTFLIKE__(__n) \
57 __attribute__((__format__(printf, __n, 0)))
69 #define __sun_attr___KPRINTFLIKE__(__n) \
70 __attribute__((__format__(cmn_err, __n, (__n)+1)))
71 #define __sun_attr___KVPRINTFLIKE__(__n) \
72 __attribute__((__format__(cmn_err, __n,
[all...]
/netbsd-current/sys/external/bsd/common/include/linux/
H A Dbits.h12 #define BIT_MASK(__n) __BITS(__n-1,0)
/netbsd-current/external/lgpl3/gmp/dist/tune/
H A Dmodlinv.c46 mp_limb_t __n = (n); \
48 ASSERT ((__n & 1) == 1); \
49 __inv = binvert_limb_table[(__n&0xFF)/2]; /* 8 */ \
50 __inv = (1 - __n * __inv) * __inv + __inv; /* 16 */ \
51 __inv = (1 - __n * __inv) * __inv + __inv; /* 32 */ \
52 ASSERT (__inv * __n == 1); \
60 mp_limb_t __n = (n); \
62 ASSERT ((__n & 1) == 1); \
63 __inv = binvert_limb_table[(__n&0xFF)/2]; /* 8 */ \
64 __inv = (1 - __n * __in
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
H A Dcompiletime_settings.h41 * @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());
H A Dequally_split.h39 * 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, argument
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, argument
79 _DifferenceType __chunk_length = __n / __num_threads;
80 _DifferenceType __num_longer_chunks = __n
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
H A Dcompiletime_settings.h41 * @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());
H A Dequally_split.h39 * 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, argument
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, argument
79 _DifferenceType __chunk_length = __n / __num_threads;
80 _DifferenceType __num_longer_chunks = __n
[all...]
/netbsd-current/external/apache2/llvm/dist/libcxx/include/__memory/
H A Dtemporary_buffer.h30 get_temporary_buffer(ptrdiff_t __n) _NOEXCEPT
36 if (__n > __m)
37 __n = __m;
38 while (__n > 0)
46 __n * sizeof(_Tp), __al, nothrow));
49 __n * sizeof(_Tp), nothrow));
59 __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), nothrow));
64 __r.second = __n;
67 __n /= 2;
/netbsd-current/sys/arch/next68k/stand/boot/
H A Dsamachdep.h73 register u_int __n = (cpuspeed * (n) / 4) + 1; \
75 __asm("subql #1, %0" : "=r" (__n) : "0" (__n)); \
76 } while (__n > 0); \
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/generic/
H A Dcollate_members.cc52 size_t __n) const throw()
53 { return strxfrm(__to, __from, __n); }
68 size_t __n) const throw()
69 { return wcsxfrm(__to, __from, __n); }
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/gnu/
H A Dcollate_members.cc52 size_t __n) const throw()
53 { return __strxfrm_l(__to, __from, __n, _M_c_locale_collate); }
68 size_t __n) const throw()
69 { return __wcsxfrm_l(__to, __from, __n, _M_c_locale_collate); }
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/config/locale/generic/
H A Dcollate_members.cc52 size_t __n) const throw()
53 { return strxfrm(__to, __from, __n); }
68 size_t __n) const throw()
69 { return wcsxfrm(__to, __from, __n); }
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/config/locale/gnu/
H A Dcollate_members.cc52 size_t __n) const throw()
53 { return __strxfrm_l(__to, __from, __n, _M_c_locale_collate); }
68 size_t __n) const throw()
69 { return __wcsxfrm_l(__to, __from, __n, _M_c_locale_collate); }
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dstl_iterator_base_funcs.h86 typename iterator_traits<_InputIterator>::difference_type __n = 0; local
90 ++__n;
92 return __n;
147 __advance(_InputIterator& __i, _Distance __n, input_iterator_tag) argument
151 __glibcxx_assert(__n >= 0);
152 while (__n--)
158 __advance(_BidirectionalIterator& __i, _Distance __n, argument
164 if (__n > 0)
165 while (__n--)
168 while (__n
174 __advance(_RandomAccessIterator& __i, _Distance __n, random_access_iterator_tag) argument
202 advance(_InputIterator& __i, _Distance __n) argument
[all...]
H A Dchar_traits.h114 compare(const char_type* __s1, const char_type* __s2, std::size_t __n);
120 find(const char_type* __s, std::size_t __n, const char_type& __a);
123 move(char_type* __s1, const char_type* __s2, std::size_t __n);
126 copy(char_type* __s1, const char_type* __s2, std::size_t __n);
129 assign(char_type* __s, std::size_t __n, char_type __a);
155 compare(const char_type* __s1, const char_type* __s2, std::size_t __n) argument
157 for (std::size_t __i = 0; __i < __n; ++__i)
179 find(const char_type* __s, std::size_t __n, const char_type& __a) argument
181 for (std::size_t __i = 0; __i < __n; ++__i)
191 move(char_type* __s1, const char_type* __s2, std::size_t __n) argument
241 copy(char_type* __s1, const char_type* __s2, std::size_t __n) argument
252 assign(char_type* __s, std::size_t __n, char_type __a) argument
308 __constant_char_array_p(const _CharT* __a, size_t __n) argument
372 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
403 find(const char_type* __s, size_t __n, const char_type& __a) argument
417 move(char_type* __s1, const char_type* __s2, size_t __n) argument
429 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
441 assign(char_type* __s, size_t __n, char_type __a) argument
503 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
527 find(const char_type* __s, size_t __n, const char_type& __a) argument
541 move(char_type* __s1, const char_type* __s2, size_t __n) argument
553 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
565 assign(char_type* __s, size_t __n, char_type __a) argument
624 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
651 find(const char_type* __s, size_t __n, const char_type& __a) argument
665 move(char_type* __s1, const char_type* __s2, size_t __n) argument
677 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
689 assign(char_type* __s, size_t __n, char_type __a) argument
764 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
784 find(const char_type* __s, size_t __n, const char_type& __a) argument
793 move(char_type* __s1, const char_type* __s2, size_t __n) argument
806 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
819 assign(char_type* __s, size_t __n, char_type __a) argument
878 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
898 find(const char_type* __s, size_t __n, const char_type& __a) argument
907 move(char_type* __s1, const char_type* __s2, size_t __n) argument
920 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
933 assign(char_type* __s, size_t __n, char_type __a) argument
[all...]
H A Dostream_insert.h45 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) argument
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);
44 __ostream_write(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s, streamsize __n) argument
76 __ostream_insert(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s, streamsize __n) argument
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstl_iterator_base_funcs.h87 typename iterator_traits<_InputIterator>::difference_type __n = 0; local
91 ++__n;
93 return __n;
156 __advance(_InputIterator& __i, _Distance __n, input_iterator_tag) argument
160 __glibcxx_assert(__n >= 0);
161 while (__n--)
167 __advance(_BidirectionalIterator& __i, _Distance __n, argument
173 if (__n > 0)
174 while (__n--)
177 while (__n
183 __advance(_RandomAccessIterator& __i, _Distance __n, random_access_iterator_tag) argument
218 advance(_InputIterator& __i, _Distance __n) argument
[all...]
H A Dchar_traits.h129 compare(const char_type* __s1, const char_type* __s2, std::size_t __n);
135 find(const char_type* __s, std::size_t __n, const char_type& __a);
138 move(char_type* __s1, const char_type* __s2, std::size_t __n);
141 copy(char_type* __s1, const char_type* __s2, std::size_t __n);
144 assign(char_type* __s, std::size_t __n, char_type __a);
170 compare(const char_type* __s1, const char_type* __s2, std::size_t __n) argument
172 for (std::size_t __i = 0; __i < __n; ++__i)
194 find(const char_type* __s, std::size_t __n, const char_type& __a) argument
196 for (std::size_t __i = 0; __i < __n; ++__i)
206 move(char_type* __s1, const char_type* __s2, std::size_t __n) argument
256 copy(char_type* __s1, const char_type* __s2, std::size_t __n) argument
276 assign(char_type* __s, std::size_t __n, char_type __a) argument
374 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
403 find(const char_type* __s, size_t __n, const char_type& __a) argument
415 move(char_type* __s1, const char_type* __s2, size_t __n) argument
427 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
439 assign(char_type* __s, size_t __n, char_type __a) argument
508 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
530 find(const char_type* __s, size_t __n, const char_type& __a) argument
542 move(char_type* __s1, const char_type* __s2, size_t __n) argument
554 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
566 assign(char_type* __s, size_t __n, char_type __a) argument
636 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
661 find(const char_type* __s, size_t __n, const char_type& __a) argument
673 move(char_type* __s1, const char_type* __s2, size_t __n) argument
685 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
697 assign(char_type* __s, size_t __n, char_type __a) argument
779 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
799 find(const char_type* __s, size_t __n, const char_type& __a) argument
808 move(char_type* __s1, const char_type* __s2, size_t __n) argument
821 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
834 assign(char_type* __s, size_t __n, char_type __a) argument
900 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
920 find(const char_type* __s, size_t __n, const char_type& __a) argument
929 move(char_type* __s1, const char_type* __s2, size_t __n) argument
942 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
955 assign(char_type* __s, size_t __n, char_type __a) argument
[all...]
H A Dostream_insert.h46 const _CharT* __s, streamsize __n)
51 const streamsize __put = __out.rdbuf()->sputn(__s, __n);
52 if (__put != __n)
58 __ostream_fill(basic_ostream<_CharT, _Traits>& __out, streamsize __n) argument
64 for (; __n > 0; --__n)
78 const _CharT* __s, streamsize __n)
89 if (__w > __n)
95 __ostream_fill(__out, __w - __n);
97 __ostream_write(__out, __s, __n);
45 __ostream_write(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s, streamsize __n) argument
77 __ostream_insert(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s, streamsize __n) argument
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
H A Dpool_allocator.cc60 // heap too much. Assume that __n is properly aligned. We hold the
63 __pool_alloc_base::_M_allocate_chunk(size_t __n, int& __nobjs) argument
66 size_t __total_bytes = __n * __nobjs;
75 else if (__bytes_left >= __n)
77 __nobjs = (int)(__bytes_left / __n);
78 __total_bytes = __n * __nobjs;
104 size_t __i = __n;
114 return _M_allocate_chunk(__n, __nobjs);
125 return _M_allocate_chunk(__n, __nobjs);
129 // Returns an object of size __n, an
133 _M_refill(size_t __n) argument
[all...]
H A Dstreambuf.cc46 const streamsize __n = __sbin->egptr() - __sbin->gptr(); local
47 if (__n > 1)
49 const streamsize __wrote = __sbout->sputn(__sbin->gptr(), __n);
52 if (__wrote < __n)
86 const streamsize __n = __sbin->egptr() - __sbin->gptr(); local
87 if (__n > 1)
89 const streamsize __wrote = __sbout->sputn(__sbin->gptr(), __n);
92 if (__wrote < __n)
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
H A Dpool_allocator.cc60 // heap too much. Assume that __n is properly aligned. We hold the
63 __pool_alloc_base::_M_allocate_chunk(size_t __n, int& __nobjs) argument
66 size_t __total_bytes = __n * __nobjs;
75 else if (__bytes_left >= __n)
77 __nobjs = (int)(__bytes_left / __n);
78 __total_bytes = __n * __nobjs;
104 size_t __i = __n;
114 return _M_allocate_chunk(__n, __nobjs);
125 return _M_allocate_chunk(__n, __nobjs);
129 // Returns an object of size __n, an
133 _M_refill(size_t __n) argument
[all...]
H A Dstreambuf.cc46 const streamsize __n = __sbin->egptr() - __sbin->gptr(); local
47 if (__n > 1)
49 const streamsize __wrote = __sbout->sputn(__sbin->gptr(), __n);
52 if (__wrote < __n)
86 const streamsize __n = __sbin->egptr() - __sbin->gptr(); local
87 if (__n > 1)
89 const streamsize __wrote = __sbout->sputn(__sbin->gptr(), __n);
92 if (__wrote < __n)
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/dragonfly/
H A Dcollate_members.cc53 size_t __n) const throw()
54 { return strxfrm_l(__to, __from, __n, (locale_t)_M_c_locale_collate); }
69 size_t __n) const throw()
70 { return wcsxfrm_l(__to, __from, __n, (locale_t)_M_c_locale_collate); }
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly/
H A Dcollate_members.cc53 size_t __n) const throw()
54 { return strxfrm_l(__to, __from, __n, (locale_t)_M_c_locale_collate); }
69 size_t __n) const throw()
70 { return wcsxfrm_l(__to, __from, __n, (locale_t)_M_c_locale_collate); }

Completed in 322 milliseconds

1234567891011>>