Searched refs:count (Results 1 – 16 of 16) sorted by relevance
/Kernel-v11.1.0/portable/ThirdParty/GCC/Xtensa_ESP32/ |
D | portmux_impl.inc.h | 106 ets_printf( "Owner 0x%x count %d\n", mux->owner, mux->count ); 114 …assert( ( res == portMUX_FREE_VAL ) == ( mux->count == 0 ) ); /* we're first to lock iff count is … 115 …assert( mux->count < 0xFF ); /* Bad count value implies memory co… 118 mux->count++; 129 …( "Recursive lock: count=%d last non-recursive lock %s line %d, curr %s line %d\n", mux->count - 1, 181 mux->count--; 183 if( mux->count == 0 ) 189 assert( mux->count < 0x100 ); /* Indicates memory corruption */ 191 …cursive unlock: count=%d last locked %s line %d, curr %s line %d\n", mux->count, lastLockedFn, las…
|
D | port.c | 407 mux->count = 0; in vPortCPUInitializeMutex()
|
/Kernel-v11.1.0/portable/IAR/ARM_CA5_No_GIC/ |
D | portASM.s | 95 ; Increment nesting count. r3 holds the address of ulPortInterruptNesting 123 ; Restore the old nesting count 126 ; A context switch is never performed if the nesting count is not 0.
|
D | portASM.h | 43 ; Push the critical nesting count
|
/Kernel-v11.1.0/portable/IAR/ARM_CA9/ |
D | portASM.s | 91 ; Increment nesting count. r3 holds the address of ulPortInterruptNesting 123 ; Restore the old nesting count 126 ; A context switch is never performed if the nesting count is not 0
|
D | portASM.h | 43 ; Push the critical nesting count
|
/Kernel-v11.1.0/portable/RVDS/ARM_CA9/ |
D | portASM.s | 87 ; Increment nesting count. r3 holds the address of ulPortInterruptNesting 120 ; Restore the old nesting count 123 ; A context switch is never performed if the nesting count is not 0
|
D | portmacro.inc | 49 ; Push the critical nesting count
|
/Kernel-v11.1.0/portable/ThirdParty/GCC/Xtensa_ESP32/include/ |
D | portmacro.h | 380 #define portGET_ARGUMENT_COUNT_INNER( zero, one, count, ... ) count argument
|
/Kernel-v11.1.0/portable/RVDS/ARM7_LPC21xx/ |
D | portASM.s | 105 LDR R0, =xTaskIncrementTick ; Increment the tick count.
|
/Kernel-v11.1.0/portable/CCS/MSP430X/ |
D | portext.asm | 76 ;* count.
|
/Kernel-v11.1.0/portable/IAR/STR71x/ |
D | portasm.s79 | 69 LDR R0, =vPortPreemptiveTick ; Increment the tick count - this may wake a task.
|
/Kernel-v11.1.0/portable/IAR/MSP430/ |
D | portext.s43 | 45 * count.
|
/Kernel-v11.1.0/portable/IAR/AtmelSAM7S64/ |
D | portasm.s79 | 69 LDR R0, =xTaskIncrementTick ; Increment the tick count - this may wake a task.
|
/Kernel-v11.1.0/portable/IAR/MSP430X/ |
D | portext.s43 | 72 * count.
|
/Kernel-v11.1.0/ |
D | History.txt | 408 These locks count the number items received and sent to the queue while 438 + Add tick type is atomic flag when tick count is 16-bit to PIC24 port. This 439 allows the PIC24 family of 16 bit processors to read the tick count without 440 a critical section when the tick count is also 16 bits. 657 + Added xTaskCatchUpTicks(), which corrects the tick count value after the 895 + Introduced configINITIAL_TICK_COUNT to allow the tick count to take a 899 + Ensure the Cortex-M SysTick count is cleared to zero before starting the 1214 + Introduced a new critical section macro for reading the tick count that 1216 tick count to be read atomically (performance benefits - especially when 2563 tick count value. [all …]
|