Lines Matching defs:__ptr
161 /// - __buffer_moved(_CharT* __ptr, size_t __capacity)
164 /// - __ptr_ will be set to __ptr. (This value may be the old value of
169 /// - The range [__ptr, __ptr + __size_) contains the original data of the
189 _LIBCPP_HIDE_FROM_ABI explicit __output_buffer(_CharT* __ptr, size_t __capacity, __prepare_write_type __function)
190 : __output_buffer{__ptr, __capacity, __function, nullptr} {}
193 _CharT* __ptr, size_t __capacity, __prepare_write_type __function, __max_output_size* __max_output_size)
194 : __ptr_(__ptr), __capacity_(__capacity), __prepare_write_(__function), __max_output_size_(__max_output_size) {}
198 _LIBCPP_HIDE_FROM_ABI void __buffer_moved(_CharT* __ptr, size_t __capacity) {
199 __ptr_ = __ptr;