HomeSort by relevance Sort by last modified time
    Searched refs:__len (Results 151 - 175 of 253) sorted by null

1 2 3 4 5 67 8 91011

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
locale_facets.h 112 __write(ostreambuf_iterator<_CharT> __s, const _CharT* __ws, int __len)
114 __s._M_put(__ws, __len);
122 __write(_OutIter __s, const _CharT* __ws, int __len)
124 for (int __j = 0; __j < __len; __j++, ++__s)
    [all...]
stl_deque.h 1163 const size_type __len = size(); local
1185 const size_type __len = size(); local
1207 const size_type __len = size(); local
1723 const size_type __len = std::distance(__first, __last); local
    [all...]
streambuf_iterator.h 279 _M_put(const _CharT* __ws, streamsize __len)
282 && __builtin_expect(this->_M_sbuf->sputn(__ws, __len) != __len,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
locale_facets.h 112 __write(ostreambuf_iterator<_CharT> __s, const _CharT* __ws, int __len)
114 __s._M_put(__ws, __len);
122 __write(_OutIter __s, const _CharT* __ws, int __len)
124 for (int __j = 0; __j < __len; __j++, ++__s)
    [all...]
stl_deque.h 1163 const size_type __len = size(); local
1185 const size_type __len = size(); local
1207 const size_type __len = size(); local
1723 const size_type __len = std::distance(__first, __last); local
    [all...]
streambuf_iterator.h 279 _M_put(const _CharT* __ws, streamsize __len)
282 && __builtin_expect(this->_M_sbuf->sputn(__ws, __len) != __len,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
locale_facets.h 112 __write(ostreambuf_iterator<_CharT> __s, const _CharT* __ws, int __len)
114 __s._M_put(__ws, __len);
122 __write(_OutIter __s, const _CharT* __ws, int __len)
124 for (int __j = 0; __j < __len; __j++, ++__s)
    [all...]
stl_deque.h 1163 const size_type __len = size(); local
1185 const size_type __len = size(); local
1207 const size_type __len = size(); local
1723 const size_type __len = std::distance(__first, __last); local
    [all...]
streambuf_iterator.h 279 _M_put(const _CharT* __ws, streamsize __len)
282 && __builtin_expect(this->_M_sbuf->sputn(__ws, __len) != __len,
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
locale_facets.h 112 __write(ostreambuf_iterator<_CharT> __s, const _CharT* __ws, int __len)
114 __s._M_put(__ws, __len);
122 __write(_OutIter __s, const _CharT* __ws, int __len)
124 for (int __j = 0; __j < __len; __j++, ++__s)
    [all...]
stl_deque.h 1168 const size_type __len = size(); local
1190 const size_type __len = size(); local
1212 const size_type __len = size(); local
1835 const size_type __len = std::distance(__first, __last); local
    [all...]
stl_algo.h 181 __find_if_not_n(_InputIterator __first, _Distance& __len, _Predicate __pred)
183 for (; __len; --__len, ++__first)
648 _DistanceType __len = std::distance(__first, __last); local
652 while (__len > 0)
654 __half = __len >> 1;
661 __len = __len - __half - 1;
664 __len = __half;
2081 _DistanceType __len = std::distance(__first, __last); local
2172 _DistanceType __len = std::distance(__first, __last); local
2756 const _Distance __len = __last - __first; local
2781 const _Distance __len = (__last - __first + 1) \/ 2; local
    [all...]
streambuf_iterator.h 279 _M_put(const _CharT* __ws, streamsize __len)
282 && __builtin_expect(this->_M_sbuf->sputn(__ws, __len) != __len,
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_rope.h 161 virtual void operator()(size_t __start_pos, size_t __len,
256 void append(const value_type *__s, size_t __len) {
257 if (__len + _M_buf_count <= _Buf_sz) {
260 for (; __j < __len; __i++, __j++) {
263 _M_buf_count += __len;
265 _M_prefix->append(__s, __s + __len);
268 append(__s, __len);
271 _Self& write(const value_type *__s, size_t __len) {
272 append(__s, __len);
296 virtual bool operator()(const _CharT* __buffer, size_t __len) = 0
1561 size_t __len = (__pos + __n > _p_size? _p_size - __pos : __n); local
1667 size_t __len = _S_char_ptr_len(__c_string); local
    [all...]
_string_workaround.h 221 size_type __len = this->_M_compute_next_size(__n); local
222 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
227 this->_M_reset(__new_start, __new_finish, __new_start + __len);
377 size_type __len = this->_M_compute_next_size(__n); local
378 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
384 this->_M_reset(__new_start, __new_finish, __new_start + __len);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
string.h 191 size_t __len = strlen (__old) + 1; \
192 char *__new = (char *) __builtin_alloca (__len); \
193 (char *) memcpy (__new, __old, __len); \
201 size_t __len = strnlen (__old, (n)); \
202 char *__new = (char *) __builtin_alloca (__len + 1); \
203 __new[__len] = '\0'; \
204 (char *) memcpy (__new, __old, __len); \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
string.h 193 size_t __len = strlen (__old) + 1; \
194 char *__new = (char *) __builtin_alloca (__len); \
195 (char *) memcpy (__new, __old, __len); \
203 size_t __len = strnlen (__old, (n)); \
204 char *__new = (char *) __builtin_alloca (__len + 1); \
205 __new[__len] = '\0'; \
206 (char *) memcpy (__new, __old, __len); \
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_rope.h 161 virtual void operator()(size_t __start_pos, size_t __len,
256 void append(const value_type *__s, size_t __len) {
257 if (__len + _M_buf_count <= _Buf_sz) {
260 for (; __j < __len; __i++, __j++) {
263 _M_buf_count += __len;
265 _M_prefix->append(__s, __s + __len);
268 append(__s, __len);
271 _Self& write(const value_type *__s, size_t __len) {
272 append(__s, __len);
296 virtual bool operator()(const _CharT* __buffer, size_t __len) = 0
1561 size_t __len = (__pos + __n > _p_size? _p_size - __pos : __n); local
1667 size_t __len = _S_char_ptr_len(__c_string); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
bitmap_allocator.h 242 _DistanceType __len = __last - __first; local
246 while (__len > 0)
248 __half = __len >> 1;
255 __len = __len - __half - 1;
258 __len = __half;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
bitmap_allocator.h 242 _DistanceType __len = __last - __first; local
246 while (__len > 0)
248 __half = __len >> 1;
255 __len = __len - __half - 1;
258 __len = __half;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
bitmap_allocator.h 242 _DistanceType __len = __last - __first; local
246 while (__len > 0)
248 __half = __len >> 1;
255 __len = __len - __half - 1;
258 __len = __half;
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
bitmap_allocator.h 242 _DistanceType __len = __last - __first; local
246 while (__len > 0)
248 __half = __len >> 1;
255 __len = __len - __half - 1;
258 __len = __half;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpc/
auth.h 159 int __len, __gid_t *__aup_gids);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpc/
auth.h 159 int __len, __gid_t *__aup_gids);
  /external/fio/engines/
e4defrag.c 101 long long __len = td->o.file_size_high - td->o.start_offset; local
102 r = fallocate(ed->donor_fd, 0, td->o.start_offset, __len);

Completed in 1326 milliseconds

1 2 3 4 5 67 8 91011