Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vpx_ports/
Dvpx_once.h50 static LONG once_state; variable
55 if (InterlockedCompareExchange(&once_state, 1, 0) == 0) { in once()
60 InterlockedIncrement(&once_state); in once()
71 while (InterlockedCompareExchange(&once_state, 2, 2) != 2) { in once()
/external/rust/crates/parking_lot/src/
Donce.rs299 let once_state = if state & POISON_BIT != 0 { in call_once_slow() localVariable
304 f(once_state); in call_once_slow()