Home
last modified time | relevance | path

Searched refs:__q (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_threads.h71 # define _STLP_ATOMIC_EXCHANGE(__p, __q) test_and_set(__p, __q) argument
73 # define _STLP_ATOMIC_EXCHANGE(__p, __q) __test_and_set((unsigned long*)__p, (unsigned long)__… argument
507 static __stl_atomic_t _S_swap(_STLP_VOLATILE __stl_atomic_t* __p, __stl_atomic_t __q) { in _S_swap() argument
510 return _STLP_ATOMIC_EXCHANGE(__p, __q); in _S_swap()
514 *__p = __q; in _S_swap()
523 *__p = __q; in _S_swap()
528 static void* _S_swap_ptr(void* _STLP_VOLATILE* __p, void* __q) { in _S_swap_ptr() argument
531 return _STLP_ATOMIC_EXCHANGE_PTR(__p, __q); in _S_swap_ptr()
535 __REINTERPRET_CAST(__stl_atomic_t, __q)) in _S_swap_ptr()
540 *__p = __q; in _S_swap_ptr()
[all …]
D_bvector.h391 __chunk_type* __q = this->_M_bit_alloc(__n);
392 this->_M_end_of_storage._M_data = __q + _Base::_M_bits_to_chunks(__n);
393 this->_M_start = iterator(__q, 0);
405 __chunk_type* __q = this->_M_bit_alloc(__len);
406 iterator __i = _STLP_STD::copy(begin(), __position, iterator(__q, 0));
410 this->_M_end_of_storage._M_data = __q + _Base::_M_bits_to_chunks(__len);
411 this->_M_start = iterator(__q, 0);
458 __chunk_type* __q = this->_M_bit_alloc(__len);
459 iterator __i = _STLP_STD::copy(begin(), __position, iterator(__q, 0));
463 this->_M_end_of_storage._M_data = __q + _Base::_M_bits_to_chunks(__len);
[all …]
D_rope.h1893 void replace(const iterator& __p, const iterator& __q,
1895 { replace(__p.index(), __q.index() - __p.index(), __r); }
1896 void replace(const iterator& __p, const iterator& __q, _CharT __c)
1897 { replace(__p.index(), __q.index() - __p.index(), __c); }
1898 void replace(const iterator& __p, const iterator& __q,
1900 { replace(__p.index(), __q.index() - __p.index(), __c_string); }
1901 void replace(const iterator& __p, const iterator& __q,
1903 { replace(__p.index(), __q.index() - __p.index(), __i, __n); }
1904 void replace(const iterator& __p, const iterator& __q,
1906 { replace(__p.index(), __q.index() - __p.index(), __i, __j); }
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dqueue212 queue(const queue& __q) : c(__q.c) {}
216 queue(queue&& __q)
218 : c(_VSTD::move(__q.c)) {}
222 queue& operator=(const queue& __q) {c = __q.c; return *this;}
226 queue& operator=(queue&& __q)
228 {c = _VSTD::move(__q.c); return *this;}
245 queue(const queue& __q, const _Alloc& __a,
248 : c(__q.c, __a) {}
264 queue(queue&& __q, const _Alloc& __a,
267 : c(_VSTD::move(__q.c), __a) {}
[all …]
Dstack126 stack(const stack& __q) : c(__q.c) {}
130 stack(stack&& __q)
132 : c(_VSTD::move(__q.c)) {}
136 stack& operator=(const stack& __q) {c = __q.c; return *this;}
140 stack& operator=(stack&& __q)
142 {c = _VSTD::move(__q.c); return *this;}
Drandom1684 const result_type __q = __m / __a;
1686 const result_type __t0 = __a * (__x % __q);
1687 const result_type __t1 = __r * (__x / __q);
1702 const result_type __q = __m / __a;
1704 const result_type __t0 = __a * (__x % __q);
1705 const result_type __t1 = __r * (__x / __q);
1746 const result_type __q = __m / __a;
1748 const result_type __t0 = __a * (__x % __q);
1749 const result_type __t1 = __r * (__x / __q);
1766 const result_type __q = __m / __a;
[all …]
Dmemory5298 shared_ptr<_Tp> __q = *__p;
5300 return __q;
/ndk/sources/cxx-stl/stlport/src/
Dallocators.cpp1016 __obj *__q = (__obj *)__p; in deallocate() local
1028 __q -> __free_list_link = *__my_free_list; in deallocate()
1029 *__my_free_list = __q; in deallocate()
1061 __obj *__q = (__obj *)__p; in deallocate() local
1074 __q -> __free_list_link = *__my_free_list; in deallocate()
1075 *__my_free_list = __q; in deallocate()