HomeSort by: relevance | last modified time | path
    Searched refs:__n (Results 1 - 25 of 371) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/bsd/common/include/linux/
bits.h 12 #define BIT_MASK(__n) __BITS(__n-1,0)
  /src/external/cddl/osnet/dist/uts/common/sys/
ccompile.h 58 #define __sun_attr___PRINTFLIKE__(__n) \
59 __attribute__((__format__(printf, __n, (__n)+1)))
60 #define __sun_attr___VPRINTFLIKE__(__n) \
61 __attribute__((__format__(printf, __n, 0)))
73 #define __sun_attr___KPRINTFLIKE__(__n) \
74 __attribute__((__format__(cmn_err, __n, (__n)+1)))
75 #define __sun_attr___KVPRINTFLIKE__(__n) \
76 __attribute__((__format__(cmn_err, __n, 0))
    [all...]
  /src/external/lgpl3/gmp/dist/tune/
modlinv.c 46 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 * __inv) * __inv + __inv; /* 16 */
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/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...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/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...]
  /src/sys/arch/next68k/stand/boot/
samachdep.h 73 register u_int __n = (cpuspeed * (n) / 4) + 1; \
75 __asm("subql #1, %0" : "=r" (__n) : "0" (__n)); \
76 } while (__n > 0); \
  /src/external/apache2/llvm/dist/libcxx/include/__memory/
temporary_buffer.h 30 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;
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/generic/
collate_members.cc 52 size_t __n) const throw()
53 { return strxfrm(__to, __from, __n); }
68 size_t __n) const throw()
69 { return wcsxfrm(__to, __from, __n); }
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/gnu/
collate_members.cc 52 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); }
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/generic/
collate_members.cc 52 size_t __n) const throw()
53 { return strxfrm(__to, __from, __n); }
68 size_t __n) const throw()
69 { return wcsxfrm(__to, __from, __n); }
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/gnu/
collate_members.cc 52 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); }
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
stl_iterator_base_funcs.h 87 typename iterator_traits<_InputIterator>::difference_type __n = 0; local
91 ++__n;
93 return __n;
157 __advance(_InputIterator& __i, _Distance __n, input_iterator_tag)
161 __glibcxx_assert(__n >= 0);
162 while (__n--)
168 __advance(_BidirectionalIterator& __i, _Distance __n,
174 if (__n > 0)
175 while (__n--)
178 while (__n++
    [all...]
char_traits.h 144 compare(const char_type* __s1, const char_type* __s2, std::size_t __n);
150 find(const char_type* __s, std::size_t __n, const char_type& __a);
153 move(char_type* __s1, const char_type* __s2, std::size_t __n);
156 copy(char_type* __s1, const char_type* __s2, std::size_t __n);
159 assign(char_type* __s, std::size_t __n, char_type __a);
187 compare(const char_type* __s1, const char_type* __s2, std::size_t __n)
189 for (std::size_t __i = 0; __i < __n; ++__i)
211 find(const char_type* __s, std::size_t __n, const char_type& __a)
213 for (std::size_t __i = 0; __i < __n; ++__i)
223 move(char_type* __s1, const char_type* __s2, std::size_t __n)
    [all...]
ostream_insert.h 48 const _CharT* __s, streamsize __n)
53 const streamsize __put = __out.rdbuf()->sputn(__s, __n);
54 if (__put != __n)
60 __ostream_fill(basic_ostream<_CharT, _Traits>& __out, streamsize __n)
66 for (; __n > 0; --__n)
80 const _CharT* __s, streamsize __n)
91 if (__w > __n)
97 __ostream_fill(__out, __w - __n);
99 __ostream_write(__out, __s, __n);
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
stl_iterator_base_funcs.h 87 typename iterator_traits<_InputIterator>::difference_type __n = 0; local
91 ++__n;
93 return __n;
156 __advance(_InputIterator& __i, _Distance __n, input_iterator_tag)
160 __glibcxx_assert(__n >= 0);
161 while (__n--)
167 __advance(_BidirectionalIterator& __i, _Distance __n,
173 if (__n > 0)
174 while (__n--)
177 while (__n++
    [all...]
char_traits.h 129 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)
172 for (std::size_t __i = 0; __i < __n; ++__i)
194 find(const char_type* __s, std::size_t __n, const char_type& __a)
196 for (std::size_t __i = 0; __i < __n; ++__i)
206 move(char_type* __s1, const char_type* __s2, std::size_t __n)
    [all...]
ostream_insert.h 48 const _CharT* __s, streamsize __n)
53 const streamsize __put = __out.rdbuf()->sputn(__s, __n);
54 if (__put != __n)
60 __ostream_fill(basic_ostream<_CharT, _Traits>& __out, streamsize __n)
66 for (; __n > 0; --__n)
80 const _CharT* __s, streamsize __n)
91 if (__w > __n)
97 __ostream_fill(__out, __w - __n);
99 __ostream_write(__out, __s, __n);
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
pool_allocator.cc 60 // heap too much. Assume that __n is properly aligned. We hold the
63 __pool_alloc_base::_M_allocate_chunk(size_t __n, int& __nobjs)
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, and optionally adds to "siz
    [all...]
streambuf.cc 46 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)
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
pool_allocator.cc 60 // heap too much. Assume that __n is properly aligned. We hold the
63 __pool_alloc_base::_M_allocate_chunk(size_t __n, int& __nobjs)
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, and optionally adds to "siz
    [all...]
streambuf.cc 46 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)
  /src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly/
collate_members.cc 53 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); }
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/dragonfly/
collate_members.cc 53 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 30 milliseconds

1 2 3 4 5 6 7 8 91011>>