Lines Matching defs:out
18 * 192 bits of entropy, we don't have to throw out the leftover 1-63 bits of
41 * Returns true after filling the pool, and false if the entropy source is out
61 * Pack entropy into the out buffer, filling and taking locks as needed.
64 * Note: out must have enough space for nbits of entropy
66 bool trng_pack_entropy(uint32_t nbits, uint64_t *out)
74 goto out;
84 * Repack the entropy from the pool into the passed in out
98 * | |--out[word_i]--| |
114 out[word_i] |= entropy[ENTROPY_WORD_INDEX(word_i)] >> rshift;
132 * | |--out[word_i]--| |
148 * and pack them as 64bit to output buffer out[i].
181 out[word_i] |= entropy[ENTROPY_WORD_INDEX(word_i + 1)]
216 out[to_fill - 1] &= mask;
221 out: