Searched refs:__buffer (Results 1 – 5 of 5) sorted by relevance
| /freebsd-9-stable/contrib/libstdc++/config/io/ |
| D | basic_file_stdio.cc | 362 struct stat64 __buffer; in showmanyc() local 363 const int __err = fstat64(this->fd(), &__buffer); in showmanyc() 364 if (!__err && _GLIBCXX_ISREG(__buffer.st_mode)) in showmanyc() 366 const streamoff __off = __buffer.st_size - lseek64(this->fd(), 0, in showmanyc() 371 struct stat __buffer; in showmanyc() local 372 const int __err = fstat(this->fd(), &__buffer); in showmanyc() 373 if (!__err && _GLIBCXX_ISREG(__buffer.st_mode)) in showmanyc() 374 return __buffer.st_size - lseek(this->fd(), 0, ios_base::cur); in showmanyc()
|
| /freebsd-9-stable/contrib/libstdc++/include/ext/ |
| D | ropeimpl.h | 850 _Rope_flatten_char_consumer(_CharT* __buffer) in _Rope_flatten_char_consumer() argument 851 { _M_buf_ptr = __buffer; }; in _Rope_flatten_char_consumer() 966 _CharT* __buffer = in _S_apply_to_pieces() local 970 (*(__f->_M_fn))(__begin, __len, __buffer); in _S_apply_to_pieces() 971 __result = __c(__buffer, __len); in _S_apply_to_pieces() 972 _Alloc().deallocate(__buffer, __len * sizeof(_CharT)); in _S_apply_to_pieces() 976 _Alloc().deallocate(__buffer, __len * sizeof(_CharT)); in _S_apply_to_pieces() 1053 _CharT* __buffer) in _S_flatten() argument 1055 _Rope_flatten_char_consumer<_CharT> __c(__buffer); in _S_flatten() 1057 return(__buffer + __len); in _S_flatten() [all …]
|
| D | rope | 145 _CharT* __buffer) = 0; 308 operator()(const _CharT* __buffer, size_t __len) = 0; 831 _CharT* __buffer) 840 (*__fn)(__start_pos + _M_start, __req_len, __buffer); 848 __buffer); 1702 // Returns __buffer + __r->_M_size. 1704 static _CharT* _S_flatten(_RopeRep* __r, _CharT* __buffer); 1710 _CharT* __buffer); 1918 copy(_CharT* __buffer) const 1920 _Destroy(__buffer, __buffer + size(), get_allocator()); [all …]
|
| /freebsd-9-stable/contrib/libstdc++/include/bits/ |
| D | stl_algo.h | 2151 _Pointer __buffer, in __stable_partition_adaptive() argument 2157 _Pointer __result2 = __buffer; in __stable_partition_adaptive() 2169 std::copy(__buffer, __result2, __result1); in __stable_partition_adaptive() 2178 __len / 2, __buffer, in __stable_partition_adaptive() 2183 __buffer, __buffer_size); in __stable_partition_adaptive() 3413 _Pointer __buffer) in __merge_sort_with_buffer() argument 3419 const _Pointer __buffer_last = __buffer + __len; in __merge_sort_with_buffer() 3426 std::__merge_sort_loop(__first, __last, __buffer, __step_size); in __merge_sort_with_buffer() 3428 std::__merge_sort_loop(__buffer, __buffer_last, __first, __step_size); in __merge_sort_with_buffer() 3437 _Pointer __buffer, _Compare __comp) in __merge_sort_with_buffer() argument [all …]
|
| /freebsd-9-stable/contrib/libstdc++/include/backward/ |
| D | defalloc.h | 80 inline void deallocate(_Tp* __buffer) { in deallocate() argument 81 ::operator delete(__buffer); in deallocate()
|