Home
last modified time | relevance | path

Searched refs:once_state (Results 1 – 1 of 1) 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()