Searched refs:active_count (Results 1 – 11 of 11) sorted by relevance
/third_party/boost/boost/thread/win32/ |
D | basic_timed_mutex.hpp | 39 long active_count; member 44 active_count=0; in initialize() 67 return !win32::interlocked_bit_test_and_set(&active_count,lock_flag_bit); in try_lock() 76 long old_count=active_count; in lock() 102 … long const current=BOOST_INTERLOCKED_COMPARE_EXCHANGE(&active_count,new_count,old_count); in mark_waiting_and_try_lock() 127 … long const current=BOOST_INTERLOCKED_COMPARE_EXCHANGE(&active_count,new_count,old_count); in clear_waiting_and_try_lock() 162 long old_count=active_count; in do_lock_until() 178 BOOST_INTERLOCKED_DECREMENT(&active_count); in do_lock_until() 244 long const old_count=BOOST_INTERLOCKED_EXCHANGE_ADD(&active_count,lock_flag_value); in unlock() 249 if(!win32::interlocked_bit_test_and_set(&active_count,event_set_flag_bit)) in unlock()
|
/third_party/glib/glib/pcre/ |
D | pcre_dfa_exec.c | 345 if (active_count++ < wscount) \ 355 if (active_count++ < wscount) \ 410 int active_count, new_count, match_count; in internal_dfa_exec() local 584 active_count = new_count; in internal_dfa_exec() 588 workspace[1] = active_count; in internal_dfa_exec() 596 for (i = 0; i < active_count; i++) in internal_dfa_exec() 603 next_active_state = active_states + active_count; in internal_dfa_exec() 629 for (i = 0; i < active_count; i++) in internal_dfa_exec() 1151 active_count--; /* Remove non-match possibility */ in internal_dfa_exec() 1182 active_count--; /* Remove non-match possibility */ in internal_dfa_exec() [all …]
|
/third_party/pcre2/pcre2/src/ |
D | pcre2_dfa_match.c | 482 if (active_count++ < wscount) \ 491 if (active_count++ < wscount) \ 540 int active_count, new_count, match_count; in internal_dfa_match() local 709 active_count = new_count; in internal_dfa_match() 713 workspace[1] = active_count; in internal_dfa_match() 717 next_active_state = active_states + active_count; in internal_dfa_match() 744 for (i = 0; i < active_count; i++) in internal_dfa_match() 1285 active_count--; /* Remove non-match possibility */ in internal_dfa_match() 1316 active_count--; /* Remove non-match possibility */ in internal_dfa_match() 1346 active_count--; /* Remove non-match possibility */ in internal_dfa_match() [all …]
|
/third_party/mesa3d/src/panfrost/lib/ |
D | pan_blitter.c | 465 unsigned active_count = 0; in pan_blitter_get_blit_shader() local 482 out_names[active_count]); in pan_blitter_get_blit_shader() 484 out->data.driver_location = active_count; in pan_blitter_get_blit_shader() 526 tex->texture_index = active_count; in pan_blitter_get_blit_shader() 556 tex->texture_index = active_count; in pan_blitter_get_blit_shader() 593 active_count++; in pan_blitter_get_blit_shader()
|
/third_party/python/Lib/ |
D | threading.py | 1446 def active_count(): function 1465 return active_count()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0b1.rst | 1028 - ``activeCount`` => :func:`threading.active_count`
|
/third_party/python/Doc/library/ |
D | idle.rst | 741 and ``threading.active_count()`` returns 2 instead of 1.
|
D | threading.rst | 40 .. function:: active_count()
|
D | multiprocessing.rst | 1070 :func:`threading.active_count`, :func:`threading.enumerate`,
|
/third_party/python/Doc/whatsnew/ |
D | 3.10.rst | 1714 * ``threading.activeCount`` => :func:`threading.active_count`
|
D | 2.6.rst | 2540 :meth:`activeCount` method is renamed to :meth:`active_count`. Both
|