Home | History | Annotate | Download | only in vpx_ports

Lines Matching refs:func

44  * of calling func() only once. This must be at global scope because
51 static void once(void (*func)(void)) {
58 func();
65 * the state variable so we don't return before func()
85 /* We've seen once_state advance to 2, so we know func()
97 static void once(void (*func)(void)) {
109 func();
119 static void once(void (*func)(void)) {
121 pthread_once(&lock, func);
130 static void once(void (*func)(void)) {
134 func();