Searched refs:cnt0 (Results 1 – 3 of 3) sorted by relevance
/Zephyr-Core-3.5.0/drivers/watchdog/ |
D | wdt_ite_it8xxx2.c | 77 uint16_t cnt0 = WARNING_TIMER_PERIOD_MS_TO_1024HZ_COUNT(data->timeout); in wdt_it8xxx2_setup() local 100 inst->ET1CNTLHR = (cnt0 >> 8) & 0xff; in wdt_it8xxx2_setup() 101 inst->ET1CNTLLR = cnt0 & 0xff; in wdt_it8xxx2_setup() 147 uint16_t cnt0 = WARNING_TIMER_PERIOD_MS_TO_1024HZ_COUNT(data->timeout); in wdt_it8xxx2_feed() local 162 inst->ET1CNTLHR = (cnt0 >> 8) & 0xff; in wdt_it8xxx2_feed() 163 inst->ET1CNTLLR = cnt0 & 0xff; in wdt_it8xxx2_feed() 224 uint16_t cnt0 = WARNING_TIMER_PERIOD_MS_TO_1024HZ_COUNT(30); in wdt_it8xxx2_isr() local 227 inst->ET1CNTLHR = (cnt0 >> 8) & 0xff; in wdt_it8xxx2_isr() 228 inst->ET1CNTLLR = cnt0 & 0xff; in wdt_it8xxx2_isr()
|
/Zephyr-Core-3.5.0/tests/subsys/logging/log_core_additional/src/ |
D | log_test_user.c | 28 uint32_t cnt0, cnt1; in ZTEST_USER() local 33 cnt0 = log_buffered_cnt(); in ZTEST_USER() 37 zassert_true(cnt1 <= cnt0, "no message is handled"); in ZTEST_USER()
|
/Zephyr-Core-3.5.0/tests/subsys/logging/log_api/src/ |
D | main.c | 729 uint32_t cnt0 = 0; in ZTEST() local 764 LOG_INF("%u %u", cnt0++, cnt1++); in ZTEST() 765 LOG_DBG("%u %u", cnt0++, cnt1++); in ZTEST() 767 zassert_equal(cnt0, exp0, "Got:%u, Expected:%u", cnt0, exp0); in ZTEST()
|