Home
last modified time | relevance | path

Searched full:d_out (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/dev/random/
H A Dhash.c128 * 'ctr.' The output stream goes to 'd_out.'
135 void *d_out, size_t bytecount) in randomdev_keystream() argument
158 chacha_encrypt_bytes(&context->chacha, NULL, d_out, in randomdev_keystream()
161 d_out = (char *)d_out + read_chunk; in randomdev_keystream()
185 (void *)ctr, RANDOM_BLOCKSIZE * 8, d_out); in randomdev_keystream()
186 d_out = (char *)d_out + RANDOM_BLOCKSIZE; in randomdev_keystream()
/freebsd/sys/dev/clk/rockchip/
H A Drk_clk_fract.c84 * - n_out, d_out Computed approximation
91 uint64_t *n_out, uint64_t *d_out) in clk_compute_fract_div() argument
130 *d_out = d_prev; in clk_compute_fract_div()
133 *d_out = d_cur; in clk_compute_fract_div()
/freebsd/contrib/atf/atf-c/
H A Dutils_test.c247 RE(atf_dynstr_init_fmt(&out_name, "atf_utils_fork_%d_out.txt", (int)pid)); in ATF_TC_BODY()