Lines Matching +full:zephyr +full:- +full:based
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
17 #include <zephyr/random/random.h>
18 #include <zephyr/drivers/timer/system_timer.h>
19 #include <zephyr/kernel.h>
20 #include <zephyr/spinlock.h>
28 * This pseudo-random number generator returns values that are based off the
32 * @return a 32-bit number
51 * The pseudo-random number generator returns values that are based off the
69 outlen -= blocksize; in z_impl_sys_rand_get()