Searched refs:__buffer (Results 1 – 4 of 4) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _debug.c | 343 TCHAR __buffer[512]; in _Message() local 348 wvsprintf(__buffer, _lpw, __args); in _Message() 349 _STLP_WINCE_TRACE(__buffer); in _Message() 351 char __buffer [4096]; in _Message() local 354 vsnprintf(__buffer, _STLP_ARRAY_SIZE(__buffer), __format_str, __args); in _Message() 356 vsnprintf_s(__buffer, _STLP_ARRAY_SIZE(__buffer), _TRUNCATE, __format_str, __args); in _Message() 359 OutputDebugStringA(__buffer); in _Message() 367 char __buffer[4096]; in _Message() local 370 vsnprintf_s(__buffer, _STLP_ARRAY_SIZE(__buffer), _TRUNCATE, __format_str, __args); in _Message() 372 vsnprintf(__buffer, _STLP_ARRAY_SIZE(__buffer), __format_str, __args); in _Message() [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _rope.c | 723 _Rope_flatten_char_consumer(_CharT* __buffer) { in _Rope_flatten_char_consumer() argument 724 _M_buf_ptr = __buffer; in _Rope_flatten_char_consumer() 827 _CharT* __buffer = __r->get_allocator().allocate(__len); in _S_apply_to_pieces() local 829 (*(__f->_M_fn))(__begin, __len, __buffer); in _S_apply_to_pieces() 830 __result = __c(__buffer, __len); in _S_apply_to_pieces() 831 __r->get_allocator().deallocate(__buffer, __len); in _S_apply_to_pieces() 833 _STLP_UNWIND((__r->get_allocator().deallocate(__buffer, __len))) in _S_apply_to_pieces() 899 _CharT* __buffer) { in _S_flatten() argument 900 _Rope_flatten_char_consumer<_CharT> __c(__buffer); in _S_flatten() 902 return(__buffer + __len); in _S_flatten() [all …]
|
D | _algo.c | 771 _Pointer __buffer, _Distance __buffer_size, in __stable_partition_adaptive() argument 775 _Pointer __result2 = __buffer; in __stable_partition_adaptive() 791 _STLP_STD::copy(__buffer, __result2, __result1); in __stable_partition_adaptive() 799 … __half_len, __buffer, __buffer_size, in __stable_partition_adaptive() 803 … __len - __half_len, __buffer, __buffer_size, in __stable_partition_adaptive() 1075 _RandomAccessIter __last, _Pointer __buffer, in __merge_sort_with_buffer() argument 1078 _Pointer __buffer_last = __buffer + __len; in __merge_sort_with_buffer() 1084 __merge_sort_loop(__first, __last, __buffer, __step_size, __comp); in __merge_sort_with_buffer() 1086 __merge_sort_loop(__buffer, __buffer_last, __first, __step_size, __comp); in __merge_sort_with_buffer() 1097 _BidirectionalIter2 __buffer, in __rotate_adaptive() argument [all …]
|
D | _rope.h | 162 _CharT* __buffer) = 0; 296 virtual bool operator()(const _CharT* __buffer, size_t __len) = 0; 571 _CharT* __buffer) { 582 (*__fn)(__start_pos + _M_start, __req_len, __buffer); 589 _STLP_PRIV __ucopy_n(__s + __start_pos + _M_start, __req_len, __buffer); 1291 static _CharT* _S_flatten(_RopeRep* __r, _CharT* __buffer); 1297 _CharT* __buffer); 1547 void copy(_CharT* __buffer) const { 1548 _STLP_STD::_Destroy_Range(__buffer, __buffer + size()); 1549 _S_flatten(_M_tree_ptr._M_data, __buffer); [all …]
|