Searched refs:__count (Results 1 - 24 of 24) sorted by relevance

/haiku-buildtools/gcc/libstdc++-v3/include/profile/impl/
H A Dprofiler_map_to_unordered_map.h104 __record_insert(std::size_t __size, std::size_t __count) argument
107 if (__count)
109 _M_map_cost += __count * __map_insert_cost(__size);
111 += (__count
117 __record_erase(std::size_t __size, std::size_t __count) argument
120 if (__count)
122 _M_map_cost += __count * __map_erase_cost(__size);
124 += (__count
138 __record_iterate(int __count) argument
139 { __gnu_cxx::__atomic_add(&_M_iterate, __count); }
217 __trace_map_to_unordered_map_insert(__map2umap_info* __info, std::size_t __size, std::size_t __count) argument
227 __trace_map_to_unordered_map_erase(__map2umap_info* __info, std::size_t __size, std::size_t __count) argument
[all...]
H A Dprofiler_algos.h46 typename _Container::size_type __count = 0; local
52 if (__count >= __n)
63 ++__count;
/haiku-buildtools/gcc/gcc/config/i386/
H A Dmmintrin.h538 _mm_sll_pi16 (__m64 __m, __m64 __count) argument
540 return (__m64) __builtin_ia32_psllw ((__v4hi)__m, (__v4hi)__count);
544 _m_psllw (__m64 __m, __m64 __count) argument
546 return _mm_sll_pi16 (__m, __count);
550 _mm_slli_pi16 (__m64 __m, int __count) argument
552 return (__m64) __builtin_ia32_psllwi ((__v4hi)__m, __count);
556 _m_psllwi (__m64 __m, int __count) argument
558 return _mm_slli_pi16 (__m, __count);
563 _mm_sll_pi32 (__m64 __m, __m64 __count) argument
565 return (__m64) __builtin_ia32_pslld ((__v2si)__m, (__v2si)__count);
569 _m_pslld(__m64 __m, __m64 __count) argument
575 _mm_slli_pi32(__m64 __m, int __count) argument
581 _m_pslldi(__m64 __m, int __count) argument
588 _mm_sll_si64(__m64 __m, __m64 __count) argument
594 _m_psllq(__m64 __m, __m64 __count) argument
600 _mm_slli_si64(__m64 __m, int __count) argument
606 _m_psllqi(__m64 __m, int __count) argument
613 _mm_sra_pi16(__m64 __m, __m64 __count) argument
619 _m_psraw(__m64 __m, __m64 __count) argument
625 _mm_srai_pi16(__m64 __m, int __count) argument
631 _m_psrawi(__m64 __m, int __count) argument
638 _mm_sra_pi32(__m64 __m, __m64 __count) argument
644 _m_psrad(__m64 __m, __m64 __count) argument
650 _mm_srai_pi32(__m64 __m, int __count) argument
656 _m_psradi(__m64 __m, int __count) argument
663 _mm_srl_pi16(__m64 __m, __m64 __count) argument
669 _m_psrlw(__m64 __m, __m64 __count) argument
675 _mm_srli_pi16(__m64 __m, int __count) argument
681 _m_psrlwi(__m64 __m, int __count) argument
688 _mm_srl_pi32(__m64 __m, __m64 __count) argument
694 _m_psrld(__m64 __m, __m64 __count) argument
700 _mm_srli_pi32(__m64 __m, int __count) argument
706 _m_psrldi(__m64 __m, int __count) argument
713 _mm_srl_si64(__m64 __m, __m64 __count) argument
719 _m_psrlq(__m64 __m, __m64 __count) argument
725 _mm_srli_si64(__m64 __m, int __count) argument
731 _m_psrlqi(__m64 __m, int __count) argument
[all...]
/haiku-buildtools/gcc/gmp/tune/
H A Dmodlinv.c99 int __count; \
103 __count = GMP_LIMB_BITS-1; \
114 while (-- __count); \
130 int __count; \
134 __count = GMP_LIMB_BITS-1; \
141 while (-- __count); \
/haiku-buildtools/legacy/gcc/libstdc++/stl/
H A Dstl_uninitialized.h101 __uninitialized_copy_n(_InputIter __first, _Size __count, argument
107 for ( ; __count > 0 ; --__count, ++__first, ++__cur)
116 __uninitialized_copy_n(_RandomAccessIter __first, _Size __count, argument
119 _RandomAccessIter __last = __first + __count;
127 __uninitialized_copy_n(_InputIter __first, _Size __count, argument
129 return __uninitialized_copy_n(__first, __count, __result,
135 uninitialized_copy_n(_InputIter __first, _Size __count, argument
137 return __uninitialized_copy_n(__first, __count, __result,
H A Dstl_algobase.h309 pair<_InputIter, _OutputIter> __copy_n(_InputIter __first, _Size __count, argument
312 for ( ; __count > 0; --__count) {
322 __copy_n(_RAIter __first, _Size __count, argument
325 _RAIter __last = __first + __count;
331 __copy_n(_InputIter __first, _Size __count, _OutputIter __result) { argument
332 return __copy_n(__first, __count, __result,
338 copy_n(_InputIter __first, _Size __count, _OutputIter __result) { argument
339 return __copy_n(__first, __count, __result);
H A Dropeimpl.h540 size_t __count = __r->_M_refcount;
542 __stl_assert(__count >= 1);
543 if (__count > 1) return _S_concat_char_iter(__r, __s, __slen);
H A Dstl_algo.h374 // search_n. Search for __count consecutive copies of __val.
378 _Integer __count, const _Tp& __val) {
379 if (__count <= 0)
384 _Integer __n = __count - 1;
402 _Integer __count, const _Tp& __val,
404 if (__count <= 0)
413 _Integer __n = __count - 1;
377 search_n(_ForwardIter __first, _ForwardIter __last, _Integer __count, const _Tp& __val) argument
401 search_n(_ForwardIter __first, _ForwardIter __last, _Integer __count, const _Tp& __val, _BinaryPred __binary_pred) argument
/haiku-buildtools/gcc/gcc/config/arm/
H A Dmmintrin.h456 _mm_sll_pi16 (__m64 __m, __m64 __count) argument
458 return (__m64) __builtin_arm_wsllh ((__v4hi)__m, __count);
462 _mm_slli_pi16 (__m64 __m, int __count) argument
464 return (__m64) __builtin_arm_wsllhi ((__v4hi)__m, __count);
469 _mm_sll_pi32 (__m64 __m, __m64 __count) argument
471 return (__m64) __builtin_arm_wsllw ((__v2si)__m, __count);
475 _mm_slli_pi32 (__m64 __m, int __count) argument
477 return (__m64) __builtin_arm_wsllwi ((__v2si)__m, __count);
482 _mm_sll_si64 (__m64 __m, __m64 __count) argument
484 return (__m64) __builtin_arm_wslld (__m, __count);
488 _mm_slli_si64(__m64 __m, int __count) argument
495 _mm_sra_pi16(__m64 __m, __m64 __count) argument
501 _mm_srai_pi16(__m64 __m, int __count) argument
508 _mm_sra_pi32(__m64 __m, __m64 __count) argument
514 _mm_srai_pi32(__m64 __m, int __count) argument
521 _mm_sra_si64(__m64 __m, __m64 __count) argument
527 _mm_srai_si64(__m64 __m, int __count) argument
534 _mm_srl_pi16(__m64 __m, __m64 __count) argument
540 _mm_srli_pi16(__m64 __m, int __count) argument
547 _mm_srl_pi32(__m64 __m, __m64 __count) argument
553 _mm_srli_pi32(__m64 __m, int __count) argument
560 _mm_srl_si64(__m64 __m, __m64 __count) argument
566 _mm_srli_si64(__m64 __m, int __count) argument
573 _mm_ror_pi16(__m64 __m, __m64 __count) argument
579 _mm_rori_pi16(__m64 __m, int __count) argument
586 _mm_ror_pi32(__m64 __m, __m64 __count) argument
592 _mm_rori_pi32(__m64 __m, int __count) argument
599 _mm_ror_si64(__m64 __m, __m64 __count) argument
605 _mm_rori_si64(__m64 __m, int __count) argument
[all...]
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dlocale_conv.h57 size_t& __count, _Fn __fn)
62 __count = 0;
89 __count = __last - __first;
94 __count = __next - __first;
106 _State& __state, size_t& __count)
115 __count, __fn);
135 _State& __state, size_t& __count)
144 __count, __fn);
55 __do_str_codecvt(const _InChar* __first, const _InChar* __last, _OutStr& __outstr, const _Codecvt& __cvt, _State& __state, size_t& __count, _Fn __fn) argument
103 __str_codecvt_in(const char* __first, const char* __last, basic_string<_CharT, _Traits, _Alloc>& __outstr, const codecvt<_CharT, char, _State>& __cvt, _State& __state, size_t& __count) argument
132 __str_codecvt_out(const _CharT* __first, const _CharT* __last, basic_string<char, _Traits, _Alloc>& __outstr, const codecvt<_CharT, char, _State>& __cvt, _State& __state, size_t& __count) argument
H A Dshared_ptr_base.h240 _Atomic_word __count = _M_get_use_count(); local
243 if (__count == 0)
248 while (!__atomic_compare_exchange_n(&_M_use_count, &__count, __count + 1,
284 _Atomic_word __count = _M_get_use_count(); local
287 if (__count == 0)
292 while (!__atomic_compare_exchange_n(&_M_use_count, &__count, __count + 1,
1132 __shared_count<_Lp> __count(__ptr, __del, __del._M_alloc);
1133 _M_refcount._M_swap(__count);
[all...]
H A Dstl_algo.h258 _Integer __count, _UnaryPredicate __unary_pred,
265 __n = __count;
290 _Integer __count, _UnaryPredicate __unary_pred,
297 _DistanceType __remainder = __count;
309 return (__first - __count); // Success
311 __remainder = __count + 1 - (__first - __backTrack);
320 _Integer __count,
323 if (__count <= 0)
326 if (__count == 1)
329 return std::__search_n_aux(__first, __last, __count, __unary_pre
257 __search_n_aux(_ForwardIterator __first, _ForwardIterator __last, _Integer __count, _UnaryPredicate __unary_pred, std::forward_iterator_tag) argument
289 __search_n_aux(_RandomAccessIter __first, _RandomAccessIter __last, _Integer __count, _UnaryPredicate __unary_pred, std::random_access_iterator_tag) argument
319 __search_n(_ForwardIterator __first, _ForwardIterator __last, _Integer __count, _UnaryPredicate __unary_pred) argument
4096 search_n(_ForwardIterator __first, _ForwardIterator __last, _Integer __count, const _Tp& __val) argument
4130 search_n(_ForwardIterator __first, _ForwardIterator __last, _Integer __count, const _Tp& __val, _BinaryPredicate __binary_pred) argument
[all...]
/haiku-buildtools/legacy/gcc/gcc/ginclude/
H A Dva-pyr.h57 __voidptr __stackp,__regp,__count;
56 __voidptr __stackp,__regp,__count; member in struct:__va_regs
/haiku-buildtools/gcc/libstdc++-v3/include/parallel/
H A Dset_operations.h106 __count(_IIter __a, _IIter __b, _IIter __c, _IIter __d) const function in struct:__gnu_parallel::__symmetric_difference_func
179 __count(_IIter __a, _IIter __b, function in struct:__gnu_parallel::__difference_func
246 __count(_IIter __a, _IIter __b, _IIter __c, _IIter __d) const function in struct:__gnu_parallel::__intersection_func
314 __count(_IIter __a, _IIter __b, _IIter __c, _IIter __d) const function in struct:__gnu_parallel::__union_func
435 __op.__count(__block_begin.first, __block_end.first,
H A Dbase.h369 * @param __count Number of (virtual) copies.
371 _PseudoSequence(const _Tp& __val, _DifferenceType __count) argument
372 : _M_val(__val), _M_count(__count) { }
H A Dalgo.h1141 search_n(_FIterator __begin, _FIterator __end, _Integer __count, argument
1143 { return _GLIBCXX_STD_A::search_n(__begin, __end, __count, __val); }
1149 search_n(_FIterator __begin, _FIterator __end, _Integer __count, argument
1153 __begin, __end, __count, __val, __binary_pred); }
1158 search_n(_FIterator __begin, _FIterator __end, _Integer __count, argument
1162 return __gnu_parallel::search_n(__begin, __end, __count, __val,
1170 __search_n_switch(_RAIter __begin, _RAIter __end, _Integer __count, argument
1178 __gnu_parallel::_PseudoSequence<_Tp, _Integer> __ps(__val, __count);
1183 return _GLIBCXX_STD_A::search_n(__begin, __end, __count, __val,
1191 __search_n_switch(_FIterator __begin, _FIterator __end, _Integer __count, argument
1201 search_n(_FIterator __begin, _FIterator __end, _Integer __count, const _Tp& __val, _BinaryPredicate __binary_pred) argument
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/
H A Dpr39204.c37 int __count; member in struct:__anon2380
/haiku-buildtools/gcc/libstdc++-v3/include/debug/
H A Dmultimap.h321 size_type __count = 0; local
327 ++__count;
329 return __count;
H A Dmultiset.h308 size_type __count = 0; local
314 ++__count;
316 return __count;
/haiku-buildtools/gcc/libstdc++-v3/include/tr1/
H A Dshared_ptr.h233 _Atomic_word __count = _M_use_count; local
236 if (__count == 0)
241 while (!__atomic_compare_exchange_n(&_M_use_count, &__count, __count + 1,
/haiku-buildtools/gcc/libquadmath/strtod/
H A Dstrtod_l.c444 unsigned int __count = (count); \
445 (void) mpn_lshift (__ptr, __ptr, size, __count); \
446 __ptr[0] |= (limb) >> (BITS_PER_MP_LIMB - __count); \
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/lto/
H A Dpr47333.C128 int __count; member in struct:__anon910
347 unsigned int __count; member in struct:__anon913::__pthread_mutex_s
/haiku-buildtools/gcc/libstdc++-v3/include/ext/
H A Dropeimpl.h594 size_t __count = __r->_M_ref_count;
596 if (__count > 1)
/haiku-buildtools/gcc/gcc/testsuite/gcc.target/arm/
H A Dpr59896.c32 int __count; member in struct:__anon1683

Completed in 173 milliseconds