Home
last modified time | relevance | path

Searched refs:count (Results 1 – 25 of 159) sorted by relevance

1234567

/ThreadX-v6.4.1/common/src/
Dtx_mutex_info_get.c80 UINT _tx_mutex_info_get(TX_MUTEX *mutex_ptr, CHAR **name, ULONG *count, TX_THREAD **owner, in _tx_mutex_info_get() argument
108 if (count != TX_NULL) in _tx_mutex_info_get()
111 *count = ((ULONG) mutex_ptr -> tx_mutex_ownership_count); in _tx_mutex_info_get()
Dtxe_mutex_info_get.c81 UINT _txe_mutex_info_get(TX_MUTEX *mutex_ptr, CHAR **name, ULONG *count, TX_THREAD **owner, in _txe_mutex_info_get() argument
108 status = _tx_mutex_info_get(mutex_ptr, name, count, owner, first_suspended, in _txe_mutex_info_get()
/ThreadX-v6.4.1/common_smp/src/
Dtx_mutex_info_get.c80 UINT _tx_mutex_info_get(TX_MUTEX *mutex_ptr, CHAR **name, ULONG *count, TX_THREAD **owner, in _tx_mutex_info_get() argument
108 if (count != TX_NULL) in _tx_mutex_info_get()
111 *count = ((ULONG) mutex_ptr -> tx_mutex_ownership_count); in _tx_mutex_info_get()
Dtxe_mutex_info_get.c81 UINT _txe_mutex_info_get(TX_MUTEX *mutex_ptr, CHAR **name, ULONG *count, TX_THREAD **owner, in _txe_mutex_info_get() argument
108 status = _tx_mutex_info_get(mutex_ptr, name, count, owner, first_suspended, in _txe_mutex_info_get()
/ThreadX-v6.4.1/ports_smp/mips32_interaptiv_smp/gnu/src/
Dtx_timer_interrupt.S100 la $9, _tx_timer_interrupt_active # Build address of timer interrupt active count
101 lw $8, ($9) # Pickup timer interrupt active count
102 addu $8, $8, 1 # Increment timer interrupt active count
103 sw $8, ($9) # Store new timer interrupt active count
199 la $9, _tx_timer_interrupt_active # Build address of timer interrupt active count
200 lw $8, ($9) # Pickup timer interrupt active count
201 subu $8, $8, 1 # Decrement timer interrupt active count
202 sw $8, ($9) # Store new timer interrupt active count
Dtx_thread_schedule.S183 lw $10, 4($8) # Pickup run count
185 addu $10, $10, 1 # Increment run count
186 sw $10, 4($8) # Store new run count
Dtx_thread_smp_unprotect.S78 lw $12, 12($10) # Pickup protection count
81 sw $12, 12($10) # Store back the protection count
/ThreadX-v6.4.1/utility/rtos_compatibility_layers/posix/
Dpx_sem_close.c103 sem->count -= 1; in sem_close()
105 if(! (sem->count) ) in sem_close()
/ThreadX-v6.4.1/ports/risc-v32/iar/src/
Dtx_thread_schedule.s118 lw t2, 4(t1) ; Pickup run count
120 addi t2, t2, 1 ; Increment run count
121 sw t2, 4(t1) ; Store new run count
/ThreadX-v6.4.1/ports_smp/cortex_a9_smp/gnu/src/
Dtx_thread_smp_unprotect.S101 LDR r3, [r2, #12] @ Pickup the protection count
103 …BEQ _still_protected @ If the protection count is zero, protection has alre…
105 SUB r3, r3, #1 @ Decrement the protection count
106 STR r3, [r2, #12] @ Store the new count back
108 …BNE _still_protected @ If the protection count is non-zero, protection is s…
Dtx_timer_interrupt.S118 LDR r1, =_tx_timer_interrupt_active @ Pickup address of timer interrupt active count
119 LDR r0, [r1, #0] @ Pickup interrupt active count
120 ADD r0, r0, #1 @ Increment interrupt active count
121 STR r0, [r1, #0] @ Store new interrupt active count
210 LDR r1, =_tx_timer_interrupt_active @ Pickup address of timer interrupt active count
211 LDR r0, [r1, #0] @ Pickup interrupt active count
212 SUB r0, r0, #1 @ Decrement interrupt active count
213 STR r0, [r1, #0] @ Store new interrupt active count
/ThreadX-v6.4.1/ports_smp/cortex_a7_smp/gnu/src/
Dtx_thread_smp_unprotect.s101 LDR r3, [r2, #12] @ Pickup the protection count
103 …BEQ _still_protected @ If the protection count is zero, protection has alre…
105 SUB r3, r3, #1 @ Decrement the protection count
106 STR r3, [r2, #12] @ Store the new count back
108 …BNE _still_protected @ If the protection count is non-zero, protection is s…
Dtx_timer_interrupt.S118 LDR r1, =_tx_timer_interrupt_active @ Pickup address of timer interrupt active count
119 LDR r0, [r1, #0] @ Pickup interrupt active count
120 ADD r0, r0, #1 @ Increment interrupt active count
121 STR r0, [r1, #0] @ Store new interrupt active count
210 LDR r1, =_tx_timer_interrupt_active @ Pickup address of timer interrupt active count
211 LDR r0, [r1, #0] @ Pickup interrupt active count
212 SUB r0, r0, #1 @ Decrement interrupt active count
213 STR r0, [r1, #0] @ Store new interrupt active count
/ThreadX-v6.4.1/ports_smp/cortex_a5_smp/gnu/src/
Dtx_thread_smp_unprotect.S101 LDR r3, [r2, #12] @ Pickup the protection count
103 …BEQ _still_protected @ If the protection count is zero, protection has alre…
105 SUB r3, r3, #1 @ Decrement the protection count
106 STR r3, [r2, #12] @ Store the new count back
108 …BNE _still_protected @ If the protection count is non-zero, protection is s…
Dtx_timer_interrupt.S118 LDR r1, =_tx_timer_interrupt_active @ Pickup address of timer interrupt active count
119 LDR r0, [r1, #0] @ Pickup interrupt active count
120 ADD r0, r0, #1 @ Increment interrupt active count
121 STR r0, [r1, #0] @ Store new interrupt active count
210 LDR r1, =_tx_timer_interrupt_active @ Pickup address of timer interrupt active count
211 LDR r0, [r1, #0] @ Pickup interrupt active count
212 SUB r0, r0, #1 @ Decrement interrupt active count
213 STR r0, [r1, #0] @ Store new interrupt active count
/ThreadX-v6.4.1/ports_smp/arc_hs_smp/metaware/src/
Dtx_thread_smp_unprotect.s85 ld r6, [r4, 12] ; Pickup ownership count
87 sub r6, r6, 1 ; Decrement the ownership count
88 st r6, [r4, 12] ; Store the ownership count
/ThreadX-v6.4.1/common_modules/module_lib/src/
Dtxm_mutex_info_get.c76 UINT _txe_mutex_info_get(TX_MUTEX *mutex_ptr, CHAR **name, ULONG *count, TX_THREAD **owner, TX_THRE… in _txe_mutex_info_get() argument
82 extra_parameters[0] = (ALIGN_TYPE) count; in _txe_mutex_info_get()
/ThreadX-v6.4.1/ports_smp/cortex_a9_smp/ac5/src/
Dtx_thread_smp_unprotect.s99 LDR r3, [r2, #12] ; Pickup the protection count
101 …BEQ _still_protected ; If the protection count is zero, protection has alre…
103 SUB r3, r3, #1 ; Decrement the protection count
104 STR r3, [r2, #12] ; Store the new count back
106 …BNE _still_protected ; If the protection count is non-zero, protection is s…
Dtx_timer_interrupt.s116 LDR r1, =_tx_timer_interrupt_active ; Pickup address of timer interrupt active count
117 LDR r0, [r1, #0] ; Pickup interrupt active count
118 ADD r0, r0, #1 ; Increment interrupt active count
119 STR r0, [r1, #0] ; Store new interrupt active count
208 LDR r1, =_tx_timer_interrupt_active ; Pickup address of timer interrupt active count
209 LDR r0, [r1, #0] ; Pickup interrupt active count
210 SUB r0, r0, #1 ; Decrement interrupt active count
211 STR r0, [r1, #0] ; Store new interrupt active count
/ThreadX-v6.4.1/ports_smp/cortex_a7_smp/ac5/src/
Dtx_thread_smp_unprotect.s99 LDR r3, [r2, #12] ; Pickup the protection count
101 …BEQ _still_protected ; If the protection count is zero, protection has alre…
103 SUB r3, r3, #1 ; Decrement the protection count
104 STR r3, [r2, #12] ; Store the new count back
106 …BNE _still_protected ; If the protection count is non-zero, protection is s…
Dtx_timer_interrupt.s116 LDR r1, =_tx_timer_interrupt_active ; Pickup address of timer interrupt active count
117 LDR r0, [r1, #0] ; Pickup interrupt active count
118 ADD r0, r0, #1 ; Increment interrupt active count
119 STR r0, [r1, #0] ; Store new interrupt active count
208 LDR r1, =_tx_timer_interrupt_active ; Pickup address of timer interrupt active count
209 LDR r0, [r1, #0] ; Pickup interrupt active count
210 SUB r0, r0, #1 ; Decrement interrupt active count
211 STR r0, [r1, #0] ; Store new interrupt active count
/ThreadX-v6.4.1/ports_smp/cortex_a5_smp/ac5/src/
Dtx_thread_smp_unprotect.s99 LDR r3, [r2, #12] ; Pickup the protection count
101 …BEQ _still_protected ; If the protection count is zero, protection has alre…
103 SUB r3, r3, #1 ; Decrement the protection count
104 STR r3, [r2, #12] ; Store the new count back
106 …BNE _still_protected ; If the protection count is non-zero, protection is s…
Dtx_timer_interrupt.s116 LDR r1, =_tx_timer_interrupt_active ; Pickup address of timer interrupt active count
117 LDR r0, [r1, #0] ; Pickup interrupt active count
118 ADD r0, r0, #1 ; Increment interrupt active count
119 STR r0, [r1, #0] ; Store new interrupt active count
208 LDR r1, =_tx_timer_interrupt_active ; Pickup address of timer interrupt active count
209 LDR r0, [r1, #0] ; Pickup interrupt active count
210 SUB r0, r0, #1 ; Decrement interrupt active count
211 STR r0, [r1, #0] ; Store new interrupt active count
/ThreadX-v6.4.1/ports_smp/mips32_interaptiv_smp/green/src/
Dtx_timer_interrupt.mip100 la $9, _tx_timer_interrupt_active # Build address of timer interrupt active count
101 lw $8, ($9) # Pickup timer interrupt active count
102 addu $8, $8, 1 # Increment timer interrupt active count
103 sw $8, ($9) # Store new timer interrupt active count
199 la $9, _tx_timer_interrupt_active # Build address of timer interrupt active count
200 lw $8, ($9) # Pickup timer interrupt active count
201 subu $8, $8, 1 # Decrement timer interrupt active count
202 sw $8, ($9) # Store new timer interrupt active count
/ThreadX-v6.4.1/ports_smp/cortex_a5x_smp/green/src/
Dtx_thread_smp_unprotect.a6489 LDR w2, [x1, #8] // Pickup the protection count
91 …B.EQ _still_protected // If the protection count is zero, protection has alr…
93 SUB w2, w2, #1 // Decrement the protection count
94 STR w2, [x1, #8] // Store the new count back
96 …B.NE _still_protected // If the protection count is non-zero, protection is …

1234567