HomeSort by: relevance | last modified time | path
    Searched defs:random (Results 1 - 20 of 20) sorted by relevancy

  /src/sys/lib/libkern/arch/m68k/
random.S 1 /* $NetBSD: random.S,v 1.6 2014/03/18 18:20:43 riastradh Exp $ */
23 * Here is a very good random number generator. This implementation is
24 * based on ``Two Fast Implementations of the "Minimal Standard" Random
49 ENTRY(random) function
61 END(random)
  /src/tests/usr.bin/xlint/lint1/
msg_216.c 9 random(int n) function
16 /* expect-1: warning: function 'random' has 'return expr' and 'return' [216] */
msg_092.c 9 random(void) function in typeref:typename:int
17 random();
19 /* expect+3: warning: dubious static function 'random' at block level [93] */
20 /* expect+2: warning: inconsistent redeclaration of static 'random' [92] */
21 /* expect+1: warning: 'random' unused in function 'use_random' [192] */
22 static double random(void);
msg_217.c 9 random(int n) function in typeref:typename:int
14 /* expect-1: warning: function 'random' falls off bottom without returning value [217] */
  /src/sys/lib/libkern/arch/sparc/
random.S 1 /* $NetBSD: random.S,v 1.5 2014/03/07 20:23:09 nakayama Exp $ */
23 * Here is a very good random number generator. This implementation is
24 * based on ``Two Fast Implementations of the "Minimal Standard" Random
51 ENTRY(random) function
  /src/sys/lib/libkern/arch/sparc64/
random.S 1 /* $NetBSD: random.S,v 1.5 2014/03/07 20:23:09 nakayama Exp $ */
23 * Here is a very good random number generator. This implementation is
24 * based on ``Two Fast Implementations of the "Minimal Standard" Random
51 ENTRY(random) function
  /src/sys/lib/libkern/arch/x86_64/
random.S 1 /* $NetBSD: random.S,v 1.3 2017/10/30 17:13:39 maxv Exp $ */
52 * Here is a very good random number generator. This implementation is
53 * based on ``Two Fast Implementations of the "Minimal Standard" Random
78 ENTRY(random) function
91 END(random)
  /src/sys/lib/libkern/arch/i386/
random.S 1 /* $NetBSD: random.S,v 1.6 2010/09/07 20:35:50 pooka Exp $ */
52 * Here is a very good random number generator. This implementation is
53 * based on ``Two Fast Implementations of the "Minimal Standard" Random
78 ENTRY(random) function
  /src/sys/lib/libkern/arch/vax/
random.S 1 /* $NetBSD: random.S,v 1.4 2007/01/14 13:26:18 ragge Exp $ */
49 * Here is a very good random number generator. This implementation is
50 * based on ``Two Fast Implementations of the "Minimal Standard" Random
76 ENTRY(random, 0) function
  /src/sys/external/isc/libsodium/dist/src/libsodium/include/sodium/
randombytes.h 21 uint32_t (*random)(void); /* required */ member in struct:randombytes_implementation
  /src/sys/external/isc/libsodium/dist/test/quirks/
quirks.h 4 /* C++Builder defines a "random" macro */
5 #undef random
47 random(void) function in typeref:typename:long
  /src/sys/external/gpl2/dts/dist/arch/mips/boot/dts/brcm/
bcm6368.dtsi 226 random: rng@10004180 { label
  /src/sys/external/bsd/drm2/dist/drm/i915/selftests/
scatterlist.c 30 #include <linux/random.h>
191 static unsigned int random(unsigned long n, function in typeref:typename:unsigned int
274 random,
  /src/common/lib/libc/stdlib/
random.c 1 /* $NetBSD: random.c,v 1.7 2021/12/12 22:20:52 andvar Exp $ */
36 static char sccsid[] = "@(#)random.c 8.2 (Berkeley) 5/19/95";
38 __RCSID("$NetBSD: random.c,v 1.7 2021/12/12 22:20:52 andvar Exp $");
51 __weak_alias(random,_random)
73 * random.c:
75 * An improved random number generation package. In addition to the standard
79 * then initialized to contain information for random number generation with
84 * information and generates far better random numbers than a linear
96 * The random number generation technique is a linear feedback shift register
103 * influenced by pseudo-random carries out of the lower bits. The tota
499 random(void) function in typeref:typename:long
510 random(void) function in typeref:typename:long
    [all...]
  /src/sys/external/isc/libsodium/dist/
configure.ac 97 AC_ARG_ENABLE(blocking-random,
98 [AS_HELP_STRING(--enable-blocking-random,Enable this switch only if /dev/urandom is totally broken on the target platform)],
  /src/games/hunt/hunt/
otto.c 73 #define random rand macro
576 && num_turns > 4 + (random() %
589 duck(random() % NUMDIRECTIONS);
601 if (random() % 5 == 0)
  /src/games/mille/
mille.h 165 #define random() rand() macro
  /src/lib/libradius/
radlib.c 80 #define random arc4random macro
635 /* Create a random authenticator */
638 r = (uint32_t)random();
796 h->ident = random();
  /src/bin/sh/
var.c 190 { &random_num, VSTRFIXED|VTEXTFIXED|VFUNCREF|VSPECIAL, "RANDOM=",
1633 #define random lrand48 macro
1649 * or explicitly requesting a truly random seed.
1654 out2str("RANDOM initialisation failed\n");
1673 random_val = (random_val + 1) & 0x7FFF; /* 15 bit "random" numbers */
1675 random_val = (random() >> 5) & 0x7FFF;
1692 #undef random
  /src/lib/libc/include/
namespace.h 590 #define random _random macro

Completed in 29 milliseconds