Home
last modified time | relevance | path

Searched refs:last_end (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/subsys/net/lib/trickle/
Dtrickle.c56 uint32_t last_end = get_end(trickle); in double_interval_timeout() local
60 NET_DBG("now %u (was at %u)", k_uptime_get_32(), last_end); in double_interval_timeout()
85 last_end, get_end(trickle), trickle->Istart, trickle->I); in double_interval_timeout()
/Zephyr-latest/doc/_extensions/zephyr/domain/
D__init__.py78 last_end = 0
82 if match.start() > last_end:
83 result += nodes.Text(text[last_end : match.start()])
88 last_end = match.end()
91 if last_end < len(text):
92 result += nodes.Text(text[last_end:])