Home
last modified time | relevance | path

Searched defs:__n (Results 1 – 25 of 68) sorted by relevance

123

/freebsd-src/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dccompile.h56 #define __sun_attr___PRINTFLIKE__(__n) \ argument
58 #define __sun_attr___VPRINTFLIKE__(__n) \ argument
114 #define __PRINTFLIKE(__n) __sun_attr__((__PRINTFLIKE__(__n))) argument
115 #define __VPRINTFLIKE(__n) __sun_attr__((__VPRINTFLIKE__(__n))) argument
116 #define __KPRINTFLIKE(__n) __sun_attr__((__KPRINTFLIKE__(__n))) argument
117 #define __KVPRINTFLIKE(__n) __sun_attr__((__KVPRINTFLIKE__(__n))) argument
/freebsd-src/contrib/llvm-project/clang/lib/Headers/
H A Dintrin.h451 __movsb(unsigned char * __dst,unsigned char const * __src,size_t __n) __movsb() argument
468 __movsd(unsigned long * __dst,unsigned long const * __src,size_t __n) __movsd() argument
485 __movsw(unsigned short * __dst,unsigned short const * __src,size_t __n) __movsw() argument
502 __stosd(unsigned long * __dst,unsigned long __x,size_t __n) __stosd() argument
510 __stosw(unsigned short * __dst,unsigned short __x,size_t __n) __stosw() argument
519 __movsq(unsigned long long * __dst,unsigned long long const * __src,size_t __n) __movsq() argument
527 __stosq(unsigned __int64 * __dst,unsigned __int64 __x,size_t __n) __stosq() argument
[all...]
/freebsd-src/contrib/llvm-project/libcxx/src/
H A Dstrstream.cpp28 void strstreambuf::__init(char* __gnext, streamsize __n, char* __pbeg) { in __init()
41 strstreambuf::strstreambuf(char* __gnext, streamsize __n, char* __pbeg) in strstreambuf()
46 strstreambuf::strstreambuf(const char* __gnext, streamsize __n) in strstreambuf()
51 strstreambuf::strstreambuf(signed char* __gnext, streamsize __n, signed char* __pbeg) in strstreambuf()
56 strstreambuf::strstreambuf(const signed char* __gnext, streamsize __n) in strstreambuf()
61 strstreambuf::strstreambuf(unsigned char* __gnext, streamsize __n, unsigned char* __pbeg) in strstreambuf()
66 strstreambuf::strstreambuf(const unsigned char* __gnext, streamsize __n) in strstreambuf()
/freebsd-src/contrib/llvm-project/libcxx/include/__format/
H A Dbuffer.h107 size_t __n = __str.size(); in __copy() local
139 size_t __n = static_cast<size_t>(__last - __first); in __transform() local
161 _LIBCPP_HIDE_FROM_ABI void __fill(size_t __n, _CharT __value) { in __fill()
226 _LIBCPP_HIDE_FROM_ABI void __flush_on_overflow(size_t __n) { in __flush_on_overflow()
271 _LIBCPP_HIDE_FROM_ABI void __flush(_CharT*, size_t __n) { in __flush()
289 _LIBCPP_HIDE_FROM_ABI void __flush(_CharT* __ptr, size_t __n) { in __flush()
H A Dformatter_output.h157 __fill(_OutIt __out_it,size_t __n,_CharT __value) __fill() argument
186 __fill(_OutIt __out_it,size_t __n,__format_spec::__code_point<_CharT> __value) __fill() argument
198 __fill(_OutIt __out_it,size_t __n,__format_spec::__code_point<_CharT> __value) __fill() argument
204 __fill(_OutIt __out_it,size_t __n,__format_spec::__code_point<_CharT> __value) __fill() argument
[all...]
/freebsd-src/contrib/llvm-project/libcxx/include/__iterator/
H A Dadvance.h39 __advance(_InputIter& __i, typename iterator_traits<_InputIter>::difference_type __n, input_iterator_tag) { in __advance() argument
46 __advance(_BiDirIter& __i, typename iterator_traits<_BiDirIter>::difference_type __n, bidirectional_iterator_tag) { in __advance() argument
57 __advance(_RandIter& __i, typename iterator_traits<_RandIter>::difference_type __n, random_access_iterator_ta argument
67 _Difference __n = static_cast<_Difference>(std::__convert_to_integral(__orig_n)); advance() local
[all...]
/freebsd-src/contrib/llvm-project/libcxx/include/__memory/
H A Duninitialized_algorithms.h91 __uninitialized_copy_n(_InputIterator __ifirst,_Size __n,_ForwardIterator __ofirst,_EndPredicate __stop_copying) __uninitialized_copy_n() argument
110 uninitialized_copy_n(_InputIterator __ifirst,_Size __n,_ForwardIterator __ofirst) uninitialized_copy_n() argument
149 __uninitialized_fill_n(_ForwardIterator __first,_Size __n,const _Tp & __x) __uninitialized_fill_n() argument
168 uninitialized_fill_n(_ForwardIterator __first,_Size __n,const _Tp & __x) uninitialized_fill_n() argument
205 __uninitialized_default_construct_n(_ForwardIterator __first,_Size __n) __uninitialized_default_construct_n() argument
223 uninitialized_default_construct_n(_ForwardIterator __first,_Size __n) uninitialized_default_construct_n() argument
258 __uninitialized_value_construct_n(_ForwardIterator __first,_Size __n) __uninitialized_value_construct_n() argument
276 uninitialized_value_construct_n(_ForwardIterator __first,_Size __n) uninitialized_value_construct_n() argument
332 __uninitialized_move_n(_InputIterator __ifirst,_Size __n,_ForwardIterator __ofirst,_EndPredicate __stop_moving,_IterMove __iter_move) __uninitialized_move_n() argument
351 uninitialized_move_n(_InputIterator __ifirst,_Size __n,_ForwardIterator __ofirst) uninitialized_move_n() argument
480 __uninitialized_allocator_fill_n_multidimensional(_Alloc & __alloc,_BidirIter __it,_Size __n,_Tp const & __value) __uninitialized_allocator_fill_n_multidimensional() argument
498 __uninitialized_allocator_value_construct_n_multidimensional(_Alloc & __alloc,_BidirIter __it,_Size __n) __uninitialized_allocator_value_construct_n_multidimensional() argument
[all...]
H A Dallocate_at_least.h41 return {__alloc.allocate(__n), __n}; in __allocate_at_least() argument
32 allocate_at_least(_Alloc & __alloc,size_t __n) allocate_at_least() argument
/freebsd-src/contrib/llvm-project/libcxx/include/__algorithm/
H A Dsample.h41 _Distance __n, in __sample()
66 _Distance __n, in __sample()
90 _Distance __n, in __sample()
108 _Distance __n, in sample()
H A Dfill_n.h26 __fill_n(_OutputIterator __first,_Size __n,const _Tp & __value) __fill_n() argument
34 fill_n(_OutputIterator __first,_Size __n,const _Tp & __value) fill_n() argument
[all...]
H A Dcopy_n.h33 _IntegralSize __n = __orig_n; in copy_n() local
54 _IntegralSize __n = __orig_n; in copy_n() local
H A Dcopy_move_common.h74 __result -= __n; in __copy_backward_trivial_impl() local
64 const size_t __n = static_cast<size_t>(__last - __first); __copy_trivial_impl() local
H A Dpstl_generate.h
H A Dpstl_fill.h
H A Dpstl_copy.h
/freebsd-src/contrib/llvm-project/libcxx/include/__random/
H A Dchi_squared_distribution.h42 _LIBCPP_HIDE_FROM_ABI explicit param_type(result_type __n = 1) : __n_(__n) {} in __n_() argument
59 …_LIBCPP_HIDE_FROM_ABI explicit chi_squared_distribution(result_type __n) : __p_(param_type(__n)) {} in chi_squared_distribution()
114 result_type __n; variable
H A Dstudent_t_distribution.h44 _LIBCPP_HIDE_FROM_ABI explicit param_type(result_type __n = 1) : __n_(__n) {} in __n_() argument
62 _LIBCPP_HIDE_FROM_ABI explicit student_t_distribution(result_type __n) : __p_(param_type(__n)) {} in student_t_distribution()
121 result_type __n; variable
H A Dfisher_f_distribution.h62 : __p_(param_type(__m, __n)) {} in __p_() argument
127 result_type __n; variable
/freebsd-src/contrib/llvm-project/libcxx/include/__string/
H A Dconstexpr_c_functions.h57 __constexpr_memcmp(const _Tp * __lhs,const _Up * __rhs,__element_count __n) __constexpr_memcmp() argument
90 __constexpr_memcmp_equal(const _Tp * __lhs,const _Up * __rhs,__element_count __n) __constexpr_memcmp_equal() argument
195 __constexpr_memmove(_Tp * __dest,_Up * __src,__element_count __n) __constexpr_memmove() argument
/freebsd-src/sys/dev/bwi/
H A Dbitops.h69 #define __BIT(__n) (((__n) == 32) ? 0 : ((uint32_t)1 << (__n))) argument
72 #define __BITS(__m, __n) \ argument
/freebsd-src/lib/libnetbsd/sys/
H A Dcdefs.h76 #define __BIT(__n) \ argument
81 #define __BITS(__m, __n) \ argument
/freebsd-src/contrib/llvm-project/libcxx/include/__ranges/
H A Dsubrange.h100 subrange(__convertible_to_non_slicing<_Iter> auto __iter,_Sent __sent,make_unsigned_t<iter_difference_t<_Iter>> __n) subrange() argument
125 subrange(_Range && __range,make_unsigned_t<iter_difference_t<_Iter>> __n) subrange() argument
181 advance(iter_difference_t<_Iter> __n) advance() argument
[all...]
H A Dtake_view.h150 auto __n = ranges::size(__base_); in size() local
157 auto __n = ranges::size(__base_); in size() local
[all...]
/freebsd-src/contrib/llvm-project/libcxx/include/
H A Dwchar.h189 inline _LIBCPP_HIDE_FROM_ABI wchar_t* __libcpp_wmemchr(const wchar_t* __s, wchar_t __c, size_t __n)… in __libcpp_wmemchr()
193 wmemchr(const wchar_t* __s, wchar_t __c, size_t __n) { in wmemchr()
196 …_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD wchar_t* wmemchr(wchar_t* __s, wchar_t __c, size_t __n) { in wmemchr()
/freebsd-src/contrib/llvm-project/libcxx/include/__algorithm/pstl_backends/cpu_backends/
H A Dtransform.h

123