Home
last modified time | relevance | path

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

/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/sync/mpsc/unbounded/
H A Dqueue.rs187 let head_index = head.index; in try_recv() localVariable
190 let index = head_index % (CAPACITY + 1); in try_recv()
204 head.index = head_index.wrapping_add(2); in try_recv()
206 head.index = head_index.wrapping_add(1); in try_recv()
261 let mut head_index = head.index; in drop() localVariable
264 while head_index < tail_index { in drop()
265 let index = head_index % (CAPACITY + 1); in drop()
277 head_index = head_index.wrapping_add(1); in drop()