Lines Matching refs:once
211 Define a once() function depending on the availability of atomics. If this is
218 /* Definition of once functionality. */
227 /* Structure for once(), which must be initialized with ONCE_INIT. */
235 Run the provided init() function exactly once, even if multiple threads
236 invoke once() at the same time. The state must be a once_t initialized with
239 local void once(once_t *state, void (*init)(void))
254 /* Structure for once(), which must be initialized with ONCE_INIT. */
272 /* Run the provided init() function once. This is not thread-safe. */
273 local void once(once_t *state, void (*init)(void))
288 /* State for once(). */
560 once(&made, make_crc_table);
597 once(&made, make_crc_table);
711 once(&made, make_crc_table);
1034 once(&made, make_crc_table);
1047 once(&made, make_crc_table);