Lines Matching +full:initial +full:- +full:key
2 * Copyright (c) 2013-2015 Wind River Systems, Inc.
4 * SPDX-License-Identifier: Apache-2.0
9 * @brief Non-random number generator based on system timer
11 * This module provides a non-random implementation of sys_rand32_get(), which
28 * This pseudo-random number generator returns values that are based off the
32 * @return a 32-bit number
36 /* initial seed value */ in rand32_get()
38 k_spinlock_key_t key = k_spin_lock(&rand32_lock); in rand32_get() local
44 k_spin_unlock(&rand32_lock, key); in rand32_get()
51 * The pseudo-random number generator returns values that are based off the
69 outlen -= blocksize; in z_impl_sys_rand_get()