Home
last modified time | relevance | path

Searched refs:__n (Results 1 – 25 of 516) sorted by relevance

12345678910>>...21

/OK3568_Linux_fs/kernel/drivers/media/platform/exynos4-is/
H A Dfimc-is-regs.h29 #define INTGR0_INTGC(__n) (1 << ((__n) + 16)) argument
31 #define INTGR0_INTGD(__n) (1 << (__n)) argument
36 #define INTCR0_INTGC(__n) (1 << ((__n) + 16)) argument
38 #define INTCR0_INTCD(__n) (1 << ((__n) + 16)) argument
43 #define INTMR0_INTMC(__n) (1 << ((__n) + 16)) argument
45 #define INTMR0_INTMD(__n) (1 << (__n)) argument
50 #define INTSR0_GET_INTSD(x, __n) (((x) >> (__n)) & 0x1) argument
52 #define INTSR0_GET_INTSC(x, __n) (((x) >> ((__n) + 16)) & 0x1) argument
57 #define INTMSR0_GET_INTMSD(x, __n) (((x) >> (__n)) & 0x1) argument
59 #define INTMSR0_GET_INTMSC(x, __n) (((x) >> ((__n) + 16)) & 0x1) argument
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/
H A Dchar_traits.h114 compare(const char_type* __s1, const char_type* __s2, std::size_t __n); in _GLIBCXX_VISIBILITY()
120 find(const char_type* __s, std::size_t __n, const char_type& __a); in _GLIBCXX_VISIBILITY()
123 move(char_type* __s1, const char_type* __s2, std::size_t __n); in _GLIBCXX_VISIBILITY()
126 copy(char_type* __s1, const char_type* __s2, std::size_t __n); in _GLIBCXX_VISIBILITY()
129 assign(char_type* __s, std::size_t __n, char_type __a); in _GLIBCXX_VISIBILITY()
155 compare(const char_type* __s1, const char_type* __s2, std::size_t __n) in _GLIBCXX_VISIBILITY()
157 for (std::size_t __i = 0; __i < __n; ++__i) in _GLIBCXX_VISIBILITY()
179 find(const char_type* __s, std::size_t __n, const char_type& __a) in _GLIBCXX_VISIBILITY()
181 for (std::size_t __i = 0; __i < __n; ++__i) in _GLIBCXX_VISIBILITY()
191 move(char_type* __s1, const char_type* __s2, std::size_t __n) in _GLIBCXX_VISIBILITY()
[all …]
H A Dvalarray_array.h57 __valarray_get_storage(size_t __n) in _GLIBCXX_VISIBILITY()
58 { return static_cast<_Tp*>(operator new(__n * sizeof(_Tp))); } in _GLIBCXX_VISIBILITY()
169 __valarray_copy_construct (const _Tp* __restrict__ __a, size_t __n, in _GLIBCXX_VISIBILITY()
173 while (__n--) in _GLIBCXX_VISIBILITY()
179 while (__n--) in _GLIBCXX_VISIBILITY()
191 _Tp* __restrict__ __o, size_t __n) in _GLIBCXX_VISIBILITY()
194 while (__n--) in _GLIBCXX_VISIBILITY()
197 while (__n--) in _GLIBCXX_VISIBILITY()
217 __valarray_fill(_Tp* __restrict__ __a, size_t __n, const _Tp& __t) in _GLIBCXX_VISIBILITY()
219 while (__n--) in _GLIBCXX_VISIBILITY()
[all …]
H A Dstring_view.tcc48 find(const _CharT* __str, size_type __pos, size_type __n) const noexcept in find()
50 __glibcxx_requires_string_len(__str, __n); in find()
52 if (__n == 0) in find()
55 if (__n <= this->_M_len) in find()
57 for (; __pos <= this->_M_len - __n; ++__pos) in find()
60 __str + 1, __n - 1) == 0) in find()
74 const size_type __n = this->_M_len - __pos; in find() local
75 const _CharT* __p = traits_type::find(this->_M_str + __pos, __n, __c); in find()
85 rfind(const _CharT* __str, size_type __pos, size_type __n) const noexcept in rfind()
87 __glibcxx_requires_string_len(__str, __n); in rfind()
[all …]
H A Dstl_iterator_base_funcs.h86 typename iterator_traits<_InputIterator>::difference_type __n = 0; in _GLIBCXX_VISIBILITY()
90 ++__n; in _GLIBCXX_VISIBILITY()
92 return __n; in _GLIBCXX_VISIBILITY()
147 __advance(_InputIterator& __i, _Distance __n, input_iterator_tag) in _GLIBCXX_VISIBILITY()
151 __glibcxx_assert(__n >= 0); in _GLIBCXX_VISIBILITY()
152 while (__n--) in _GLIBCXX_VISIBILITY()
158 __advance(_BidirectionalIterator& __i, _Distance __n, in _GLIBCXX_VISIBILITY()
164 if (__n > 0) in _GLIBCXX_VISIBILITY()
165 while (__n--) in _GLIBCXX_VISIBILITY()
168 while (__n++) in _GLIBCXX_VISIBILITY()
[all …]
H A Dvector.tcc67 reserve(size_type __n) in reserve() argument
69 if (__n > this->max_size()) in reserve()
71 if (this->capacity() < __n) in reserve()
78 __tmp = this->_M_allocate(__n); in reserve()
85 __tmp = _M_allocate_and_copy(__n, in reserve()
97 this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __n; in reserve()
137 const size_type __n = __position - begin(); in insert() local
166 return iterator(this->_M_impl._M_start + __n); in insert()
258 _M_fill_assign(size_t __n, const value_type& __val) in _M_fill_assign() argument
260 if (__n > capacity()) in _M_fill_assign()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/
H A Dchar_traits.h114 compare(const char_type* __s1, const char_type* __s2, std::size_t __n); in _GLIBCXX_VISIBILITY()
120 find(const char_type* __s, std::size_t __n, const char_type& __a); in _GLIBCXX_VISIBILITY()
123 move(char_type* __s1, const char_type* __s2, std::size_t __n); in _GLIBCXX_VISIBILITY()
126 copy(char_type* __s1, const char_type* __s2, std::size_t __n); in _GLIBCXX_VISIBILITY()
129 assign(char_type* __s, std::size_t __n, char_type __a); in _GLIBCXX_VISIBILITY()
155 compare(const char_type* __s1, const char_type* __s2, std::size_t __n) in _GLIBCXX_VISIBILITY()
157 for (std::size_t __i = 0; __i < __n; ++__i) in _GLIBCXX_VISIBILITY()
179 find(const char_type* __s, std::size_t __n, const char_type& __a) in _GLIBCXX_VISIBILITY()
181 for (std::size_t __i = 0; __i < __n; ++__i) in _GLIBCXX_VISIBILITY()
191 move(char_type* __s1, const char_type* __s2, std::size_t __n) in _GLIBCXX_VISIBILITY()
[all …]
H A Dvalarray_array.h57 __valarray_get_storage(size_t __n) in _GLIBCXX_VISIBILITY()
58 { return static_cast<_Tp*>(operator new(__n * sizeof(_Tp))); } in _GLIBCXX_VISIBILITY()
169 __valarray_copy_construct (const _Tp* __restrict__ __a, size_t __n, in _GLIBCXX_VISIBILITY()
173 while (__n--) in _GLIBCXX_VISIBILITY()
179 while (__n--) in _GLIBCXX_VISIBILITY()
191 _Tp* __restrict__ __o, size_t __n) in _GLIBCXX_VISIBILITY()
194 while (__n--) in _GLIBCXX_VISIBILITY()
197 while (__n--) in _GLIBCXX_VISIBILITY()
217 __valarray_fill(_Tp* __restrict__ __a, size_t __n, const _Tp& __t) in _GLIBCXX_VISIBILITY()
219 while (__n--) in _GLIBCXX_VISIBILITY()
[all …]
H A Dstring_view.tcc48 find(const _CharT* __str, size_type __pos, size_type __n) const noexcept in find()
50 __glibcxx_requires_string_len(__str, __n); in find()
52 if (__n == 0) in find()
55 if (__n <= this->_M_len) in find()
57 for (; __pos <= this->_M_len - __n; ++__pos) in find()
60 __str + 1, __n - 1) == 0) in find()
74 const size_type __n = this->_M_len - __pos; in find() local
75 const _CharT* __p = traits_type::find(this->_M_str + __pos, __n, __c); in find()
85 rfind(const _CharT* __str, size_type __pos, size_type __n) const noexcept in rfind()
87 __glibcxx_requires_string_len(__str, __n); in rfind()
[all …]
H A Dstl_iterator_base_funcs.h86 typename iterator_traits<_InputIterator>::difference_type __n = 0; in _GLIBCXX_VISIBILITY()
90 ++__n; in _GLIBCXX_VISIBILITY()
92 return __n; in _GLIBCXX_VISIBILITY()
147 __advance(_InputIterator& __i, _Distance __n, input_iterator_tag) in _GLIBCXX_VISIBILITY()
151 __glibcxx_assert(__n >= 0); in _GLIBCXX_VISIBILITY()
152 while (__n--) in _GLIBCXX_VISIBILITY()
158 __advance(_BidirectionalIterator& __i, _Distance __n, in _GLIBCXX_VISIBILITY()
164 if (__n > 0) in _GLIBCXX_VISIBILITY()
165 while (__n--) in _GLIBCXX_VISIBILITY()
168 while (__n++) in _GLIBCXX_VISIBILITY()
[all …]
H A Dvector.tcc67 reserve(size_type __n) in reserve() argument
69 if (__n > this->max_size()) in reserve()
71 if (this->capacity() < __n) in reserve()
78 __tmp = this->_M_allocate(__n); in reserve()
85 __tmp = _M_allocate_and_copy(__n, in reserve()
97 this->_M_impl._M_end_of_storage = this->_M_impl._M_start + __n; in reserve()
137 const size_type __n = __position - begin(); in insert() local
166 return iterator(this->_M_impl._M_start + __n); in insert()
258 _M_fill_assign(size_t __n, const value_type& __val) in _M_fill_assign() argument
260 if (__n > capacity()) in _M_fill_assign()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/bits/
H A Dwchar2.h25 const wchar_t *__restrict __s2, size_t __n,
29 const wchar_t *__restrict __s2, size_t __n),
33 const wchar_t *__restrict __s2, size_t __n,
40 size_t __n)) in __NTH() argument
44 if (!__builtin_constant_p (__n)) in __NTH()
45 return __wmemcpy_chk (__s1, __s2, __n, in __NTH()
48 if (__n > __glibc_objsize0 (__s1) / sizeof (wchar_t)) in __NTH()
49 return __wmemcpy_chk_warn (__s1, __s2, __n, in __NTH()
52 return __wmemcpy_alias (__s1, __s2, __n); in __NTH()
57 size_t __n, size_t __ns1) __THROW;
[all …]
H A Dstdio2.h58 extern int __snprintf_chk (char *__restrict __s, size_t __n, int __flag,
62 extern int __vsnprintf_chk (char *__restrict __s, size_t __n, int __flag,
68 __NTH (snprintf (char *__restrict __s, size_t __n, in __NTH() argument
71 return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, in __NTH()
82 __NTH (vsnprintf (char *__restrict __s, size_t __n, in __NTH() argument
85 return __builtin___vsnprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, in __NTH()
248 extern char *__fgets_chk (char *__restrict __s, size_t __size, int __n,
252 (char *__restrict __s, int __n,
256 (char *__restrict __s, size_t __size, int __n,
262 fgets (char *__restrict __s, int __n, FILE *__restrict __stream) in fgets() argument
[all …]
H A Dsocket2.h23 extern ssize_t __recv_chk (int __fd, void *__buf, size_t __n, size_t __buflen,
25 extern ssize_t __REDIRECT (__recv_alias, (int __fd, void *__buf, size_t __n,
28 (int __fd, void *__buf, size_t __n, size_t __buflen,
34 recv (int __fd, void *__buf, size_t __n, int __flags) in recv() argument
38 if (!__builtin_constant_p (__n)) in recv()
39 return __recv_chk (__fd, __buf, __n, __glibc_objsize0 (__buf), in recv()
42 if (__n > __glibc_objsize0 (__buf)) in recv()
43 return __recv_chk_warn (__fd, __buf, __n, __glibc_objsize0 (__buf), in recv()
46 return __recv_alias (__fd, __buf, __n, __flags); in recv()
49 extern ssize_t __recvfrom_chk (int __fd, void *__restrict __buf, size_t __n,
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/bits/
H A Dwchar2.h25 const wchar_t *__restrict __s2, size_t __n,
29 const wchar_t *__restrict __s2, size_t __n),
33 const wchar_t *__restrict __s2, size_t __n,
40 size_t __n)) in __NTH() argument
44 if (!__builtin_constant_p (__n)) in __NTH()
45 return __wmemcpy_chk (__s1, __s2, __n, in __NTH()
48 if (__n > __glibc_objsize0 (__s1) / sizeof (wchar_t)) in __NTH()
49 return __wmemcpy_chk_warn (__s1, __s2, __n, in __NTH()
52 return __wmemcpy_alias (__s1, __s2, __n); in __NTH()
57 size_t __n, size_t __ns1) __THROW;
[all …]
H A Dstdio2.h58 extern int __snprintf_chk (char *__restrict __s, size_t __n, int __flag,
62 extern int __vsnprintf_chk (char *__restrict __s, size_t __n, int __flag,
68 __NTH (snprintf (char *__restrict __s, size_t __n, in __NTH() argument
71 return __builtin___snprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, in __NTH()
82 __NTH (vsnprintf (char *__restrict __s, size_t __n, in __NTH() argument
85 return __builtin___vsnprintf_chk (__s, __n, __USE_FORTIFY_LEVEL - 1, in __NTH()
248 extern char *__fgets_chk (char *__restrict __s, size_t __size, int __n,
252 (char *__restrict __s, int __n,
256 (char *__restrict __s, size_t __size, int __n,
262 fgets (char *__restrict __s, int __n, FILE *__restrict __stream) in fgets() argument
[all …]
H A Dsocket2.h23 extern ssize_t __recv_chk (int __fd, void *__buf, size_t __n, size_t __buflen,
25 extern ssize_t __REDIRECT (__recv_alias, (int __fd, void *__buf, size_t __n,
28 (int __fd, void *__buf, size_t __n, size_t __buflen,
34 recv (int __fd, void *__buf, size_t __n, int __flags) in recv() argument
38 if (!__builtin_constant_p (__n)) in recv()
39 return __recv_chk (__fd, __buf, __n, __glibc_objsize0 (__buf), in recv()
42 if (__n > __glibc_objsize0 (__buf)) in recv()
43 return __recv_chk_warn (__fd, __buf, __n, __glibc_objsize0 (__buf), in recv()
46 return __recv_alias (__fd, __buf, __n, __flags); in recv()
49 extern ssize_t __recvfrom_chk (int __fd, void *__restrict __buf, size_t __n,
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A D__string92 int compare(const char_type* __s1, const char_type* __s2, size_t __n);
96 const char_type* find(const char_type* __s, size_t __n, const char_type& __a);
97 static char_type* move(char_type* __s1, const char_type* __s2, size_t __n);
99 static char_type* copy(char_type* __s1, const char_type* __s2, size_t __n);
101 static char_type* assign(char_type* __s, size_t __n, char_type __a);
117 char_traits<_CharT>::compare(const char_type* __s1, const char_type* __s2, size_t __n)
119 for (; __n; --__n, ++__s1, ++__s2)
143 char_traits<_CharT>::find(const char_type* __s, size_t __n, const char_type& __a)
145 for (; __n; --__n)
156 char_traits<_CharT>::move(char_type* __s1, const char_type* __s2, size_t __n)
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A D__string92 int compare(const char_type* __s1, const char_type* __s2, size_t __n);
96 const char_type* find(const char_type* __s, size_t __n, const char_type& __a);
97 static char_type* move(char_type* __s1, const char_type* __s2, size_t __n);
99 static char_type* copy(char_type* __s1, const char_type* __s2, size_t __n);
101 static char_type* assign(char_type* __s, size_t __n, char_type __a);
117 char_traits<_CharT>::compare(const char_type* __s1, const char_type* __s2, size_t __n)
119 for (; __n; --__n, ++__s1, ++__s2)
143 char_traits<_CharT>::find(const char_type* __s, size_t __n, const char_type& __a)
145 for (; __n; --__n)
156 char_traits<_CharT>::move(char_type* __s1, const char_type* __s2, size_t __n)
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/tr1/
H A Dpoly_laguerre.tcc77 __poly_laguerre_large_n(unsigned __n, _Tpa __alpha1, _Tp __x) in __poly_laguerre_large_n() argument
79 const _Tp __a = -_Tp(__n); in __poly_laguerre_large_n()
90 const _Tp __lg_b = _GLIBCXX_MATH_NS::lgamma(_Tp(__n) + __b); in __poly_laguerre_large_n()
91 const _Tp __lnfact = _GLIBCXX_MATH_NS::lgamma(_Tp(__n + 1)); in __poly_laguerre_large_n()
93 const _Tp __lg_b = __log_gamma(_Tp(__n) + __b); in __poly_laguerre_large_n()
94 const _Tp __lnfact = __log_gamma(_Tp(__n + 1)); in __poly_laguerre_large_n()
131 __poly_laguerre_hyperg(unsigned int __n, _Tpa __alpha1, _Tp __x) in __poly_laguerre_hyperg() argument
136 : ((__n % 2 == 1) ? -_Tp(1) : _Tp(1))); in __poly_laguerre_hyperg()
140 for (unsigned int __k = 1; __k <= __n; ++__k) in __poly_laguerre_hyperg()
145 for (int __k = int(__n) - 1; __k >= 0; --__k) in __poly_laguerre_hyperg()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/tr1/
H A Dpoly_laguerre.tcc77 __poly_laguerre_large_n(unsigned __n, _Tpa __alpha1, _Tp __x) in __poly_laguerre_large_n() argument
79 const _Tp __a = -_Tp(__n); in __poly_laguerre_large_n()
90 const _Tp __lg_b = _GLIBCXX_MATH_NS::lgamma(_Tp(__n) + __b); in __poly_laguerre_large_n()
91 const _Tp __lnfact = _GLIBCXX_MATH_NS::lgamma(_Tp(__n + 1)); in __poly_laguerre_large_n()
93 const _Tp __lg_b = __log_gamma(_Tp(__n) + __b); in __poly_laguerre_large_n()
94 const _Tp __lnfact = __log_gamma(_Tp(__n + 1)); in __poly_laguerre_large_n()
131 __poly_laguerre_hyperg(unsigned int __n, _Tpa __alpha1, _Tp __x) in __poly_laguerre_hyperg() argument
136 : ((__n % 2 == 1) ? -_Tp(1) : _Tp(1))); in __poly_laguerre_hyperg()
140 for (unsigned int __k = 1; __k <= __n; ++__k) in __poly_laguerre_hyperg()
145 for (int __k = int(__n) - 1; __k >= 0; --__k) in __poly_laguerre_hyperg()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/experimental/bits/
H A Dstring_view.tcc52 find(const _CharT* __str, size_type __pos, size_type __n) const noexcept in find()
54 __glibcxx_requires_string_len(__str, __n); in find()
56 if (__n == 0) in find()
59 if (__n <= this->_M_len) in find()
61 for (; __pos <= this->_M_len - __n; ++__pos) in find()
64 __str + 1, __n - 1) == 0) in find()
78 const size_type __n = this->_M_len - __pos; in find() local
79 const _CharT* __p = traits_type::find(this->_M_str + __pos, __n, __c); in find()
89 rfind(const _CharT* __str, size_type __pos, size_type __n) const noexcept in rfind()
91 __glibcxx_requires_string_len(__str, __n); in rfind()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/experimental/bits/
H A Dstring_view.tcc52 find(const _CharT* __str, size_type __pos, size_type __n) const noexcept in find()
54 __glibcxx_requires_string_len(__str, __n); in find()
56 if (__n == 0) in find()
59 if (__n <= this->_M_len) in find()
61 for (; __pos <= this->_M_len - __n; ++__pos) in find()
64 __str + 1, __n - 1) == 0) in find()
78 const size_type __n = this->_M_len - __pos; in find() local
79 const _CharT* __p = traits_type::find(this->_M_str + __pos, __n, __c); in find()
89 rfind(const _CharT* __str, size_type __pos, size_type __n) const noexcept in rfind()
91 __glibcxx_requires_string_len(__str, __n); in rfind()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/tr2/
H A Ddynamic_bitset.tcc52 for (size_t __n = this->_M_w.size() - 1; __n >= __wshift; --__n) in _M_do_left_shift() local
53 this->_M_w[__n] = this->_M_w[__n - __wshift]; in _M_do_left_shift()
57 for (size_t __n = _M_w.size() - 1; __n > __wshift; --__n) in _M_do_left_shift() local
58 this->_M_w[__n] = ((this->_M_w[__n - __wshift] << __offset) in _M_do_left_shift()
59 | (this->_M_w[__n - __wshift - 1] >> __sub_offset)); in _M_do_left_shift()
79 for (size_t __n = 0; __n <= __limit; ++__n) in _M_do_right_shift() local
80 this->_M_w[__n] = this->_M_w[__n + __wshift]; in _M_do_right_shift()
85 for (size_t __n = 0; __n < __limit; ++__n) in _M_do_right_shift() local
86 this->_M_w[__n] = ((this->_M_w[__n + __wshift] >> __offset) in _M_do_right_shift()
87 | (this->_M_w[__n + __wshift + 1] << __sub_offset)); in _M_do_right_shift()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/tr2/
H A Ddynamic_bitset.tcc52 for (size_t __n = this->_M_w.size() - 1; __n >= __wshift; --__n) in _M_do_left_shift() local
53 this->_M_w[__n] = this->_M_w[__n - __wshift]; in _M_do_left_shift()
57 for (size_t __n = _M_w.size() - 1; __n > __wshift; --__n) in _M_do_left_shift() local
58 this->_M_w[__n] = ((this->_M_w[__n - __wshift] << __offset) in _M_do_left_shift()
59 | (this->_M_w[__n - __wshift - 1] >> __sub_offset)); in _M_do_left_shift()
79 for (size_t __n = 0; __n <= __limit; ++__n) in _M_do_right_shift() local
80 this->_M_w[__n] = this->_M_w[__n + __wshift]; in _M_do_right_shift()
85 for (size_t __n = 0; __n < __limit; ++__n) in _M_do_right_shift() local
86 this->_M_w[__n] = ((this->_M_w[__n + __wshift] >> __offset) in _M_do_right_shift()
87 | (this->_M_w[__n + __wshift + 1] << __sub_offset)); in _M_do_right_shift()
[all …]

12345678910>>...21