Home
last modified time | relevance | path

Searched refs:__ptr (Results 1 – 13 of 13) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/
D_tools.h209 static void_type * uncv_ptr(void_cv_type *__ptr)
210 { return __ptr; }
211 static void_type const* uncv_cptr(void_cv_type const*__ptr)
212 { return __ptr; }
213 static void_type ** uncv_pptr(void_cv_type **__ptr)
214 { return __ptr; }
219 static void_cv_type* cv_ptr(void_type *__ptr)
220 { return __ptr; }
221 static void_cv_type const* cv_cptr(void_type const*__ptr)
222 { return __ptr; }
[all …]
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_num_put.c276 __write_decimal_backward(char* __ptr, _Integer __x, ios_base::fmtflags __flags, const __true_type& … in __write_decimal_backward() argument
282 *--__ptr = (char)((int)(__utemp % 10) + '0'); in __write_decimal_backward()
285 *--__ptr = '-'; in __write_decimal_backward()
287 *--__ptr = '+'; in __write_decimal_backward()
288 return __ptr; in __write_decimal_backward()
293 __write_decimal_backward(char* __ptr, _Integer __x, ios_base::fmtflags __flags, const __false_type&… in __write_decimal_backward() argument
295 *--__ptr = (char)((int)(__x % 10) + '0'); in __write_decimal_backward()
298 *--__ptr = '+'; in __write_decimal_backward()
299 return __ptr; in __write_decimal_backward()
305 char* __ptr = __buf; in __write_integer_backward() local
[all …]
D_iostream_string.h63 _CharT* allocate(size_type __n, const void* __ptr = 0) {
65 return _Base::allocate(__n, __ptr);
D_construct.h213 __destroy_range(_ForwardIterator __first, _ForwardIterator __last, _Tp *__ptr) { in __destroy_range() argument
215 __destroy_range_aux(__first, __last, __ptr, _Trivial_destructor()); in __destroy_range()
232 __destroy_mv_srcs(_ForwardIterator __first, _ForwardIterator __last, _Tp *__ptr) { in __destroy_mv_srcs() argument
234 __destroy_range_aux(__first, __last, __ptr, _CompleteMove()); in __destroy_mv_srcs()
D_rope.c1273 _CharT* __ptr = _My_rope::_S_fetch_ptr(__old, _M_pos);
1274 if (0 != __ptr) {
1275 *__ptr = __c;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dtypeinfo119 const char *__ptr = name();
121 while (unsigned char __c = static_cast<unsigned char>(*__ptr++))
Dforward_list1289 for (__node_pointer __ptr = __p.__ptr_; __n > 0; --__n,
1290 __ptr = __ptr->__next_)
1295 __ptr->__next_ = __h.release();
1321 for (__node_pointer __ptr = __p.__ptr_; __n > 0; --__n,
1322 __ptr = __ptr->__next_)
1327 __ptr->__next_ = __h.release();
Dmemory2427 _LIBCPP_INLINE_VISIBILITY void operator() (_Tp* __ptr) const _NOEXCEPT
2431 delete __ptr;
2449 void operator() (_Up* __ptr,
2454 delete [] __ptr;
3413 result_type operator()(const argument_type& __ptr) const _NOEXCEPT
3416 return hash<pointer>()(__ptr.get());
5254 result_type operator()(const argument_type& __ptr) const _NOEXCEPT
5256 return hash<_Tp*>()(__ptr.get());
5425 _LIBCPP_FUNC_VIS void* align(size_t __align, size_t __sz, void*& __ptr, size_t& __space);
Dalgorithm4836 _RandomAccessIterator __ptr = __first + __len;
4837 if (__comp(*__ptr, *--__last))
4842 *__last = _VSTD::move(*__ptr);
4843 __last = __ptr;
4847 __ptr = __first + __len;
4848 } while (__comp(*__ptr, __t));
Dlocale3782 wide_string from_bytes(const char* __ptr)
3783 {return from_bytes(__ptr, __ptr + char_traits<char>::length(__ptr));}
/ndk/tests/device/test-gnustl-full/unit/
Dptrspec_test.cpp33 bool operator () (_Tp *__ptr) const { in operator ()()
34 return *__ptr == 0; in operator ()()
/ndk/tests/device/test-stlport/unit/
Dptrspec_test.cpp33 bool operator () (_Tp *__ptr) const { in operator ()()
34 return *__ptr == 0; in operator ()()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/experimental/
Ddynarray153 static inline _LIBCPP_INLINE_VISIBILITY void __deallocate ( value_type* __ptr ) noexcept
155 ::operator delete (static_cast<void *> (__ptr));