Searched refs:emptyfifo (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.1-release/sys/dev/random/
H A Drandom_harvestq.c74 static struct entropyfifo emptyfifo; variable in typeref:struct:entropyfifo
184 STAILQ_CONCAT(&emptyfifo.head, &local_queue);
185 emptyfifo.count += local_count;
228 STAILQ_INIT(&emptyfifo.head);
231 STAILQ_INSERT_TAIL(&emptyfifo.head, np, next);
233 emptyfifo.count = RANDOM_FIFO_MAX;
255 while (!STAILQ_EMPTY(&emptyfifo.head)) {
256 np = STAILQ_FIRST(&emptyfifo.head);
257 STAILQ_REMOVE_HEAD(&emptyfifo.head, next);
260 emptyfifo
[all...]

Completed in 74 milliseconds