Lines Matching refs:__q
6890 { lldiv_t __q; __q.quot = __n / __d; __q.rem = __n % __d; return __q; }
25126 const _CharT* __q = __two.c_str();
25134 const int __res = _M_compare(__p, __q);
25139 __q += char_traits<_CharT>::length(__q);
25140 if (__p == __pend && __q == __qend)
25144 else if (__q == __qend)
25148 __q++;
28894 const char_type* __q = char_traits<_CharT2>::find(__zero, __len, __c);
28895 if (__q)
28897 __ret = __q - __zero;
29453 const char_type* __q =
29455 if (__q)
29457 __xtrc += '0' + (__q - __lit_zero);
29674 const char_type* __q =
29676 if (!__q)
29679 __digit = __q - __lit_zero;
41179 _RandomAccessIterator __q = __p + __k;
41182 std::iter_swap(__p, __q);
41184 ++__q;
41202 _RandomAccessIterator __q = __p + __n;
41203 __p = __q - __k;
41207 --__q;
41208 std::iter_swap(__p, __q);
134020 _Bit_type* __q = std::copy(__first._M_p, __last._M_p, __result._M_p);
134022 iterator(__q, 0));
134028 _Bit_pointer __q = this->_M_allocate(__n);
134029 this->_M_impl._M_end_of_storage = __q + _S_nword(__n);
134030 this->_M_impl._M_start = iterator(std::__addressof(*__q), 0);
134876 _Bit_pointer __q = this->_M_allocate(__n);
134877 iterator __start(std::__addressof(*__q), 0);
134881 this->_M_impl._M_end_of_storage = __q + _S_nword(__n);
134902 _Bit_pointer __q = this->_M_allocate(__len);
134903 iterator __start(std::__addressof(*__q), 0);
134909 this->_M_impl._M_end_of_storage = __q + _S_nword(__len);
134936 _Bit_pointer __q = this->_M_allocate(__len);
134937 iterator __start(std::__addressof(*__q), 0);
134942 this->_M_impl._M_end_of_storage = __q + _S_nword(__len);
134964 _Bit_pointer __q = this->_M_allocate(__len);
134965 iterator __start(std::__addressof(*__q), 0);
134970 this->_M_impl._M_end_of_storage = __q + _S_nword(__len);
135126 queue(const queue& __q, const _Alloc& __a)
135127 : c(__q.c, __a) { }
135130 queue(queue&& __q, const _Alloc& __a)
135131 : c(std::move(__q.c), __a) { }
135213 swap(queue& __q)
135217 swap(c, __q.c);
135324 priority_queue(const priority_queue& __q, const _Alloc& __a)
135325 : c(__q.c, __a), comp(__q.comp) { }
135328 priority_queue(priority_queue&& __q, const _Alloc& __a)
135329 : c(std::move(__q.c), __a), comp(std::move(__q.comp)) { }