Lines Matching refs:j

212 UINT    j;  in _tx_thread_smp_execute_list_clear()  local
230 j = ((UINT) 6); in _tx_thread_smp_execute_list_clear()
234 while (j < ((UINT) TX_THREAD_SMP_MAX_CORES)) in _tx_thread_smp_execute_list_clear()
237 while (j < _tx_thread_smp_max_cores) in _tx_thread_smp_execute_list_clear()
242 _tx_thread_execute_ptr[j] = TX_NULL; in _tx_thread_smp_execute_list_clear()
245 j++; in _tx_thread_smp_execute_list_clear()
259 UINT j; in _tx_thread_smp_schedule_list_setup() local
276 j = ((UINT) 6); in _tx_thread_smp_schedule_list_setup()
279 while (j < ((UINT) TX_THREAD_SMP_MAX_CORES)) in _tx_thread_smp_schedule_list_setup()
282 while (j < _tx_thread_smp_max_cores) in _tx_thread_smp_schedule_list_setup()
287 _tx_thread_smp_schedule_list[j] = _tx_thread_execute_ptr[j]; in _tx_thread_smp_schedule_list_setup()
290 j++; in _tx_thread_smp_schedule_list_setup()
398 UINT j; in _tx_thread_smp_available_cores_get() local
435 j = ((UINT) 6); in _tx_thread_smp_available_cores_get()
438 while (j < ((UINT) TX_THREAD_SMP_MAX_CORES)) in _tx_thread_smp_available_cores_get()
441 while (j < _tx_thread_smp_max_cores) in _tx_thread_smp_available_cores_get()
446 if (_tx_thread_execute_ptr[j] == TX_NULL) in _tx_thread_smp_available_cores_get()
448 available_cores = available_cores | (((ULONG) 1) << j); in _tx_thread_smp_available_cores_get()
452 j++; in _tx_thread_smp_available_cores_get()
468 UINT j; in _tx_thread_smp_possible_cores_get() local
512 j = ((UINT) 6); in _tx_thread_smp_possible_cores_get()
515 while (j < ((UINT) TX_THREAD_SMP_MAX_CORES)) in _tx_thread_smp_possible_cores_get()
518 while (j < _tx_thread_smp_max_cores) in _tx_thread_smp_possible_cores_get()
523 thread_ptr = _tx_thread_execute_ptr[j]; in _tx_thread_smp_possible_cores_get()
530 j++; in _tx_thread_smp_possible_cores_get()
546 UINT j; in _tx_thread_smp_lowest_priority_get() local
608 j = ((UINT) 6); in _tx_thread_smp_lowest_priority_get()
611 while (j < ((UINT) TX_THREAD_SMP_MAX_CORES)) in _tx_thread_smp_lowest_priority_get()
614 while (j < _tx_thread_smp_max_cores) in _tx_thread_smp_lowest_priority_get()
619 thread_ptr = _tx_thread_execute_ptr[j]; in _tx_thread_smp_lowest_priority_get()
631 j++; in _tx_thread_smp_lowest_priority_get()
832 UINT i, j, k; in _tx_thread_smp_preemptable_threads_get() local
855 j = ((UINT) 6); in _tx_thread_smp_preemptable_threads_get()
859 while (j < ((UINT) TX_THREAD_SMP_MAX_CORES)) in _tx_thread_smp_preemptable_threads_get()
862 while (j < _tx_thread_smp_max_cores) in _tx_thread_smp_preemptable_threads_get()
867 possible_preemption_list[j] = TX_NULL; in _tx_thread_smp_preemptable_threads_get()
870 j++; in _tx_thread_smp_preemptable_threads_get()
881 j = ((UINT) 0); in _tx_thread_smp_preemptable_threads_get()
907 possible_preemption_list[j] = thread_ptr; in _tx_thread_smp_preemptable_threads_get()
910 j++; in _tx_thread_smp_preemptable_threads_get()
919 if (j > ((UINT) 1)) in _tx_thread_smp_preemptable_threads_get()
934 while (k < j) in _tx_thread_smp_preemptable_threads_get()
990 while (i < (j-((UINT) 1))); in _tx_thread_smp_preemptable_threads_get()