HomeSort by: relevance | last modified time | path
    Searched refs:random (Results 1 - 25 of 851) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/tests/usr.bin/xlint/lint1/
msg_092.c 9 random(void) function
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_216.c 9 random(int n) function
16 /* expect-1: warning: function 'random' has 'return expr' and 'return' [216] */
  /src/games/random/
Makefile 4 PROG= random
5 MAN= random.6
  /src/regress/lib/libc/ieeefp/testfloat/include/
random.h 1 /* $NetBSD: random.h,v 1.5 2008/04/28 20:23:04 martin Exp $ */
40 #define randomUint8() ((uint8_t)random())
41 #define randomUint16() ((uint16_t)random())
42 #define randomUint32() ((uint32_t)random())
43 #define randomUint64() ((uint64_t)random() << 32 | random())
  /src/games/trek/
ranf.c 50 return (random() % max);
57 return random() / (double)RANDOM_MAX;
  /src/games/larn/
fortune.c 48 * function to return a random fortune from the fortune file
93 return (flines[random() % NFORTUNES]);
  /src/sys/rump/dev/lib/librnd/
Makefile 7 COMMENT=/dev/{,u}random
10 SRCS= random.c
  /src/etc/rc.d/
entropy 24 if dd if=/dev/random iflag=nonblock of=/dev/null bs=1 count=1 \
33 dd if=/dev/random of=/dev/null bs=1 count=1 msgfmt=quiet
  /src/games/mille/
roll.c 58 tot += random() % nsides + 1;
  /src/games/monop/
roll.c 56 tot += (random() % nsides) + 1;
  /src/external/gpl3/gcc/dist/fixincludes/tests/base/sys/
types.h 13 typedef struct __physadr_s { random stuff } * physadr_t;
  /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/sys/
types.h 13 typedef struct __physadr_s { random stuff } * physadr_t;
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.reverse/
getrandom.c 18 #include <sys/random.h>
getrandom.exp 23 require {have_system_header sys/random.h}
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.reverse/
getrandom.c 18 #include <sys/random.h>
getrandom.exp 23 require {have_system_header sys/random.h}
  /src/external/mpl/bind/dist/lib/isc/include/isc/
nonce.h 21 #include <isc/random.h>
34 * Fill 'buf', up to 'buflen' bytes, with random data from the
35 * crypto provider's random function.
  /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/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/external/bsd/iscsi/dist/src/lib/
uuid.c 55 /* just fill the struct with random values for now */
63 ether = ((uint64_t)random() << 32) | random();
65 uuid->time_mid = (uint16_t)(random() & 0xffff);
66 uuid->time_hi_and_version = (uint16_t)(random() & 0xffff);
67 uuid->clock_seq_low = (uint8_t)(random() & 0xff);
68 uuid->clock_seq_hi_and_reserved = (uint8_t)(random() & 0xff);
  /src/sys/external/isc/libsodium/dist/test/quirks/
quirks.h 4 /* C++Builder defines a "random" macro */
5 #undef random macro
47 random(void) function
  /src/usr.sbin/sysinst/
msg.entropy.en 34 {This system seems to lack a cryptographically strong pseudo random
42 You may use random data generated on another computer and load it
43 here, or you could enter random characters manually.
45 If you have a USB random number device, connect it now and select
48 message entropy_add_manually {Manually input random characters}
49 message entropy_download_raw {Load raw binary random data}
54 {Enter one line of random characters.}
58 tosses, 100 throws of a 6-sided die, 64 random hexadecimal digits, or
69 {Please select how you want to transfer the random data file
91 {Load random data
    [all...]
msg.entropy.es 34 {This system seems to lack a cryptographically strong pseudo random
42 You may use random data generated on another computer and load it
43 here, or you could enter random characters manually.
45 If you have a USB random number device, connect it now and select
48 message entropy_add_manually {Manually input random characters}
49 message entropy_download_raw {Load raw binary random data}
54 {Enter one line of random characters.}
58 tosses, 100 throws of a 6-sided die, 64 random hexadecimal digits, or
69 {Please select how you want to transfer the random data file
91 {Load random data
    [all...]
msg.entropy.fr 34 {This system seems to lack a cryptographically strong pseudo random
42 You may use random data generated on another computer and load it
43 here, or you could enter random characters manually.
45 If you have a USB random number device, connect it now and select
48 message entropy_add_manually {Manually input random characters}
49 message entropy_download_raw {Load raw binary random data}
54 {Enter one line of random characters.}
58 tosses, 100 throws of a 6-sided die, 64 random hexadecimal digits, or
69 {Please select how you want to transfer the random data file
91 {Load random data
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/lib/
drm_random.h 11 #include <linux/random.h>

Completed in 21 milliseconds

1 2 3 4 5 6 7 8 91011>>