Home
last modified time | relevance | path

Searched refs:__len (Results 1 – 25 of 197) sorted by relevance

12345678

/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/dragonfly/
H A Dmonetary_members.cc273 size_t __len; in _M_initialize_moneypunct()
289 __len = strlen(__cgroup); in _M_initialize_moneypunct()
290 if (__len) in _M_initialize_moneypunct()
292 __group = new char[__len + 1]; in _M_initialize_moneypunct()
293 memcpy(__group, __cgroup, __len + 1); in _M_initialize_moneypunct()
301 _M_data->_M_grouping_size = __len; in _M_initialize_moneypunct()
304 __len = strlen(__cpossign); in _M_initialize_moneypunct()
305 if (__len) in _M_initialize_moneypunct()
307 __ps = new char[__len + 1]; in _M_initialize_moneypunct()
308 memcpy(__ps, __cpossign, __len + 1); in _M_initialize_moneypunct()
[all …]
H A Dnumeric_members.cc93 const size_t __len = strlen(__src); in _M_initialize_numpunct() local
94 if (__len) in _M_initialize_numpunct()
98 char* __dst = new char[__len + 1]; in _M_initialize_numpunct()
99 memcpy(__dst, __src, __len + 1); in _M_initialize_numpunct()
115 _M_data->_M_grouping_size = __len; in _M_initialize_numpunct()
192 const size_t __len = strlen(__src); in _M_initialize_numpunct() local
193 if (__len) in _M_initialize_numpunct()
197 char* __dst = new char[__len + 1]; in _M_initialize_numpunct()
198 memcpy(__dst, __src, __len + 1); in _M_initialize_numpunct()
213 _M_data->_M_grouping_size = __len; in _M_initialize_numpunct()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/dragonfly/
H A Dmonetary_members.cc273 size_t __len; in _M_initialize_moneypunct()
289 __len = strlen(__cgroup); in _M_initialize_moneypunct()
290 if (__len) in _M_initialize_moneypunct()
292 __group = new char[__len + 1]; in _M_initialize_moneypunct()
293 memcpy(__group, __cgroup, __len + 1); in _M_initialize_moneypunct()
301 _M_data->_M_grouping_size = __len; in _M_initialize_moneypunct()
304 __len = strlen(__cpossign); in _M_initialize_moneypunct()
305 if (__len) in _M_initialize_moneypunct()
307 __ps = new char[__len + 1]; in _M_initialize_moneypunct()
308 memcpy(__ps, __cpossign, __len + 1); in _M_initialize_moneypunct()
[all …]
H A Dnumeric_members.cc93 const size_t __len = strlen(__src); in _M_initialize_numpunct() local
94 if (__len) in _M_initialize_numpunct()
98 char* __dst = new char[__len + 1]; in _M_initialize_numpunct()
99 memcpy(__dst, __src, __len + 1); in _M_initialize_numpunct()
115 _M_data->_M_grouping_size = __len; in _M_initialize_numpunct()
192 const size_t __len = strlen(__src); in _M_initialize_numpunct() local
193 if (__len) in _M_initialize_numpunct()
197 char* __dst = new char[__len + 1]; in _M_initialize_numpunct()
198 memcpy(__dst, __src, __len + 1); in _M_initialize_numpunct()
213 _M_data->_M_grouping_size = __len; in _M_initialize_numpunct()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/locale/gnu/
H A Dmonetary_members.cc277 size_t __len; in _M_initialize_moneypunct()
290 __len = strlen(__cgroup); in _M_initialize_moneypunct()
291 if (__len) in _M_initialize_moneypunct()
293 __group = new char[__len + 1]; in _M_initialize_moneypunct()
294 memcpy(__group, __cgroup, __len + 1); in _M_initialize_moneypunct()
302 _M_data->_M_grouping_size = __len; in _M_initialize_moneypunct()
305 __len = strlen(__cpossign); in _M_initialize_moneypunct()
306 if (__len) in _M_initialize_moneypunct()
308 __ps = new char[__len + 1]; in _M_initialize_moneypunct()
309 memcpy(__ps, __cpossign, __len + 1); in _M_initialize_moneypunct()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/gnu/
H A Dmonetary_members.cc277 size_t __len; in _M_initialize_moneypunct()
290 __len = strlen(__cgroup); in _M_initialize_moneypunct()
291 if (__len) in _M_initialize_moneypunct()
293 __group = new char[__len + 1]; in _M_initialize_moneypunct()
294 memcpy(__group, __cgroup, __len + 1); in _M_initialize_moneypunct()
302 _M_data->_M_grouping_size = __len; in _M_initialize_moneypunct()
305 __len = strlen(__cpossign); in _M_initialize_moneypunct()
306 if (__len) in _M_initialize_moneypunct()
308 __ps = new char[__len + 1]; in _M_initialize_moneypunct()
309 memcpy(__ps, __cpossign, __len + 1); in _M_initialize_moneypunct()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/include/
H A Dobjalloc.h90 unsigned long __len = (l); \
91 if (__len == 0) \
92 __len = 1; \
93 __len = (__len + OBJALLOC_ALIGN - 1) &~ (OBJALLOC_ALIGN - 1); \
94 (__len != 0 && __len <= __o->current_space \
95 ? (__o->current_ptr += __len, \
96 __o->current_space -= __len, \
97 (void *) (__o->current_ptr - __len)) \
98 : _objalloc_alloc (__o, __len)); })
/netbsd-src/external/gpl3/binutils/dist/include/
H A Dobjalloc.h90 unsigned long __len = (l); \
91 if (__len == 0) \
92 __len = 1; \
93 __len = (__len + OBJALLOC_ALIGN - 1) &~ (OBJALLOC_ALIGN - 1); \
94 (__len != 0 && __len <= __o->current_space \
95 ? (__o->current_ptr += __len, \
96 __o->current_space -= __len, \
97 (void *) (__o->current_ptr - __len)) \
98 : _objalloc_alloc (__o, __len)); })
/netbsd-src/external/gpl3/gcc.old/dist/include/
H A Dobjalloc.h90 unsigned long __len = (l); \
91 if (__len == 0) \
92 __len = 1; \
93 __len = (__len + OBJALLOC_ALIGN - 1) &~ (OBJALLOC_ALIGN - 1); \
94 (__len != 0 && __len <= __o->current_space \
95 ? (__o->current_ptr += __len, \
96 __o->current_space -= __len, \
97 (void *) (__o->current_ptr - __len)) \
98 : _objalloc_alloc (__o, __len)); })
/netbsd-src/external/gpl3/gcc/dist/include/
H A Dobjalloc.h90 unsigned long __len = (l); \
91 if (__len == 0) \
92 __len = 1; \
93 __len = (__len + OBJALLOC_ALIGN - 1) &~ (OBJALLOC_ALIGN - 1); \
94 (__len != 0 && __len <= __o->current_space \
95 ? (__o->current_ptr += __len, \
96 __o->current_space -= __len, \
97 (void *) (__o->current_ptr - __len)) \
98 : _objalloc_alloc (__o, __len)); })
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dsnprintf_lite.cc43 const size_t __len = __bufend - __buf + 1; in __throw_insufficient_space() local
50 = static_cast<char*>(__builtin_alloca(__errlen + __len)); in __throw_insufficient_space()
53 __builtin_memcpy(__e + __errlen, __buf, __len - 1); in __throw_insufficient_space()
54 __e[__errlen + __len - 1] = '\0'; in __throw_insufficient_space()
75 size_t __len = __cs + __ilen - __out; in __concat_size_t() local
76 if (__bufsize < __len) in __concat_size_t()
79 __builtin_memcpy(__buf, __cs + __ilen - __len, __len); in __concat_size_t()
80 return __len; in __concat_size_t()
125 const int __len = __concat_size_t(__d, __limit - __d, in __snprintf_lite() local
127 if (__len > 0) in __snprintf_lite()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dsnprintf_lite.cc52 const size_t __len = __bufend - __buf + 1; in __throw_insufficient_space() local
59 = static_cast<char*>(__builtin_alloca(__errlen + __len)); in __throw_insufficient_space()
62 __builtin_memcpy(__e + __errlen, __buf, __len - 1); in __throw_insufficient_space()
63 __e[__errlen + __len - 1] = '\0'; in __throw_insufficient_space()
84 size_t __len = __cs + __ilen - __out; in __concat_size_t() local
85 if (__bufsize < __len) in __concat_size_t()
88 __builtin_memcpy(__buf, __cs + __ilen - __len, __len); in __concat_size_t()
89 return __len; in __concat_size_t()
134 const int __len = __concat_size_t(__d, __limit - __d, in __snprintf_lite() local
136 if (__len > 0) in __snprintf_lite()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dlocale_facets.tcc462 const size_t __len = (__base == 16 ? __num_base::_S_iend in _M_extract_int() local
485 __digit = _M_find(__lit_zero, __len, __c); in _M_extract_int()
529 __traits_type::find(__lit_zero, __len, __c); in _M_extract_int()
781 _CharT* __new, const _CharT* __cs, int& __len) const in _M_pad()
786 __cs, __w, __len); in _M_pad()
787 __len = static_cast<int>(__w); in _M_pad()
840 ios_base&, _CharT* __new, _CharT* __cs, int& __len) const in _M_group_int()
843 __grouping_size, __cs, __cs + __len); in _M_group_int()
844 __len = __p - __new; in _M_group_int()
876 int __len = __int_to_char(__cs + __ilen, __u, __lit, __flags, __dec); in _M_insert_int() local
[all …]
H A Dstreambuf.tcc55 const streamsize __len = std::min(__buf_len, __remaining); in xsgetn() local
56 traits_type::copy(__s, this->gptr(), __len); in xsgetn()
57 __ret += __len; in xsgetn()
58 __s += __len; in xsgetn()
59 this->__safe_gbump(__len); in xsgetn()
89 const streamsize __len = std::min(__buf_len, __remaining); in xsputn() local
90 traits_type::copy(this->pptr(), __s, __len); in xsputn()
91 __ret += __len; in xsputn()
92 __s += __len; in xsputn()
93 this->__safe_pbump(__len); in xsputn()
H A Dbasic_string.tcc167 size_type __len = 0; in _M_construct() local
170 while (__beg != __end && __len < __capacity) in _M_construct()
172 _M_data()[__len++] = *__beg; in _M_construct()
180 if (__len == __capacity) in _M_construct()
183 __capacity = __len + 1; in _M_construct()
184 pointer __another = _M_create(__capacity, __len); in _M_construct()
185 this->_S_copy(__another, _M_data(), __len); in _M_construct()
190 _M_data()[__len++] = *__beg; in _M_construct()
200 _M_set_length(__len); in _M_construct()
362 const size_type __len = __n + this->size(); in _M_append() local
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dlocale_facets.tcc462 const size_t __len = (__base == 16 ? __num_base::_S_iend in _M_extract_int() local
485 __digit = _M_find(__lit_zero, __len, __c); in _M_extract_int()
529 __traits_type::find(__lit_zero, __len, __c); in _M_extract_int()
799 _CharT* __new, const _CharT* __cs, int& __len) const in _M_pad()
804 __cs, __w, __len); in _M_pad()
805 __len = static_cast<int>(__w); in _M_pad()
858 ios_base&, _CharT* __new, _CharT* __cs, int& __len) const in _M_group_int()
861 __grouping_size, __cs, __cs + __len); in _M_group_int()
862 __len = __p - __new; in _M_group_int()
894 int __len = __int_to_char(__cs + __ilen, __u, __lit, __flags, __dec); in _M_insert_int() local
[all …]
H A Dstreambuf.tcc55 const streamsize __len = std::min(__buf_len, __remaining); in xsgetn() local
56 traits_type::copy(__s, this->gptr(), __len); in xsgetn()
57 __ret += __len; in xsgetn()
58 __s += __len; in xsgetn()
59 this->__safe_gbump(__len); in xsgetn()
89 const streamsize __len = std::min(__buf_len, __remaining); in xsputn() local
90 traits_type::copy(this->pptr(), __s, __len); in xsputn()
91 __ret += __len; in xsputn()
92 __s += __len; in xsputn()
93 this->__safe_pbump(__len); in xsputn()
H A Dstl_tempbuf.h71 size_t __len __attribute__((__unused__))) in _GLIBCXX_VISIBILITY()
74 ::operator delete(__p, __len * sizeof(_Tp)); in _GLIBCXX_VISIBILITY()
101 get_temporary_buffer(ptrdiff_t __len) _GLIBCXX_NOEXCEPT in _GLIBCXX_VISIBILITY()
105 if (__len > __max) in _GLIBCXX_VISIBILITY()
106 __len = __max; in _GLIBCXX_VISIBILITY()
108 while (__len > 0) in _GLIBCXX_VISIBILITY()
110 _Tp* __tmp = static_cast<_Tp*>(::operator new(__len * sizeof(_Tp), in _GLIBCXX_VISIBILITY()
113 return std::pair<_Tp*, ptrdiff_t>(__tmp, __len); in _GLIBCXX_VISIBILITY()
114 __len = __len == 1 ? 0 : ((__len + 1) / 2); in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/config/os/tpf/
H A Dctype_configure_char.cc46 const size_t __len = __builtin_strlen(__old) + 1; in classic_table() local
47 char* __sav = new char[__len]; in classic_table()
48 __builtin_memcpy(__sav, __old, __len); in classic_table()
61 const size_t __len = __builtin_strlen(__old) + 1; in ctype() local
62 char* __sav = new char[__len]; in ctype()
63 __builtin_memcpy(__sav, __old, __len); in ctype()
77 const size_t __len = __builtin_strlen(__old) + 1; in ctype() local
78 char* __sav = new char[__len]; in ctype()
79 __builtin_memcpy(__sav, __old, __len); in ctype()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/config/os/tpf/
H A Dctype_configure_char.cc46 const size_t __len = __builtin_strlen(__old) + 1; in classic_table() local
47 char* __sav = new char[__len]; in classic_table()
48 __builtin_memcpy(__sav, __old, __len); in classic_table()
61 const size_t __len = __builtin_strlen(__old) + 1; in ctype() local
62 char* __sav = new char[__len]; in ctype()
63 __builtin_memcpy(__sav, __old, __len); in ctype()
77 const size_t __len = __builtin_strlen(__old) + 1; in ctype() local
78 char* __sav = new char[__len]; in ctype()
79 __builtin_memcpy(__sav, __old, __len); in ctype()
/netbsd-src/external/gpl3/gcc/dist/libssp/ssp/
H A Dstring.h61 size_t __len) in __memcpy_ichk() argument
63 return __builtin___memcpy_chk (__dest, __src, __len, __ssp_bos0 (__dest)); in __memcpy_ichk()
72 __memmove_ichk (void *__dest, const void *__src, size_t __len) in __memmove_ichk() argument
74 return __builtin___memmove_chk (__dest, __src, __len, __ssp_bos0 (__dest)); in __memmove_ichk()
84 size_t __len) in __mempcpy_ichk() argument
86 return __builtin___mempcpy_chk (__dest, __src, __len, __ssp_bos0 (__dest)); in __mempcpy_ichk()
95 __memset_ichk (void *__dest, int __ch, size_t __len) in __memset_ichk() argument
97 return __builtin___memset_chk (__dest, __ch, __len, __ssp_bos0 (__dest)); in __memset_ichk()
138 size_t __len) in __strncpy_ichk() argument
140 return __builtin___strncpy_chk (__dest, __src, __len, __ssp_bos (__dest)); in __strncpy_ichk()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libssp/ssp/
H A Dstring.h61 size_t __len) in __memcpy_ichk() argument
63 return __builtin___memcpy_chk (__dest, __src, __len, __ssp_bos0 (__dest)); in __memcpy_ichk()
72 __memmove_ichk (void *__dest, const void *__src, size_t __len) in __memmove_ichk() argument
74 return __builtin___memmove_chk (__dest, __src, __len, __ssp_bos0 (__dest)); in __memmove_ichk()
84 size_t __len) in __mempcpy_ichk() argument
86 return __builtin___mempcpy_chk (__dest, __src, __len, __ssp_bos0 (__dest)); in __mempcpy_ichk()
95 __memset_ichk (void *__dest, int __ch, size_t __len) in __memset_ichk() argument
97 return __builtin___memset_chk (__dest, __ch, __len, __ssp_bos0 (__dest)); in __memset_ichk()
138 size_t __len) in __strncpy_ichk() argument
140 return __builtin___strncpy_chk (__dest, __src, __len, __ssp_bos (__dest)); in __strncpy_ichk()
[all …]
/netbsd-src/include/ssp/
H A Dunistd.h39 __ssp_redirect0(ssize_t, read, (int __fd, void *__buf, size_t __len), \
40 (__fd, __buf, __len));
43 char *__restrict __buf, size_t __len), (__path, __buf, __len));
45 __ssp_redirect_raw(char *, getcwd, getcwd, (char *__buf, size_t __len),
46 (__buf, __len), __buf != 0, __ssp_bos);
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Dvstring.tcc65 const size_type __len = __n + this->size(); in _M_append() local
67 if (__len <= this->capacity() && !this->_M_is_shared()) in _M_append()
75 this->_M_set_length(__len); in _M_append()
200 const __size_type __len = _Traits::length(__lhs); in operator +() local
202 __str.reserve(__len + __rhs.size()); in operator +()
203 __str.append(__lhs, __len); in operator +()
230 const __size_type __len = _Traits::length(__rhs); in operator +() local
232 __str.reserve(__lhs.size() + __len); in operator +()
234 __str.append(__rhs, __len); in operator +()
465 const size_type __len = std::min(__n, __osize); in compare() local
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
H A Dvstring.tcc65 const size_type __len = __n + this->size(); in _M_append() local
67 if (__len <= this->capacity() && !this->_M_is_shared()) in _M_append()
75 this->_M_set_length(__len); in _M_append()
200 const __size_type __len = _Traits::length(__lhs); in operator +() local
202 __str.reserve(__len + __rhs.size()); in operator +()
203 __str.append(__lhs, __len); in operator +()
230 const __size_type __len = _Traits::length(__rhs); in operator +() local
232 __str.reserve(__lhs.size() + __len); in operator +()
234 __str.append(__rhs, __len); in operator +()
465 const size_type __len = std::min(__n, __osize); in compare() local
[all …]

12345678