Searched refs:ccount (Results 1 – 7 of 7) sorted by relevance
/device/soc/esp/esp32/components/esp32/ |
D | hw_random.c | 48 uint32_t ccount; in esp_random() local 51 ccount = cpu_hal_get_cycle_count(); in esp_random() 53 } while (ccount - last_ccount < cpu_to_apb_freq_ratio * 16); in esp_random() 54 last_ccount = ccount; in esp_random()
|
/device/soc/esp/esp32/components/heap/include/ |
D | heap_trace.inc | 19 /* Encode the CPU ID in the LSB of the ccount value */ 22 uint32_t ccount = cpu_hal_get_cycle_count() & ~3; 24 ccount |= xPortGetCoreID(); 26 return ccount; 89 uint32_t ccount = get_ccount(); 100 .ccount = ccount, 126 uint32_t ccount = get_ccount(); 142 .ccount = ccount,
|
D | esp_heap_trace.h | 41 …uint32_t ccount; ///< CCOUNT of the CPU when the allocation was made. LSB (bit value 1) is the CPU… member
|
/device/soc/esp/esp32/components/heap/ |
D | heap_trace_standalone.c | 139 rec->size, rec->address, rec->ccount & 1, rec->ccount & ~3); in heap_trace_dump()
|
/device/soc/esp/esp32/components/osal/port/xtensa/ |
D | portasm.S | 295 wsr a3, ccount 366 wsr a2, ccount
|
/device/soc/esp/esp32/components/xtensa/include/xtensa/ |
D | xtruntime-core-state.h | 98 STRUCT_FIELD (long,4,CS_SA_,ccount)
|
/device/soc/esp/esp32/components/esp_system/port/soc/esp32/ |
D | dport_panic_highint_hdl.S | 305 1: rsr.ccount a2 331 2: rsr.ccount a4 /* delay_us(N) */
|