Home
last modified time | relevance | path

Searched refs:rand (Results 1 – 25 of 190) sorted by relevance

12345678

/mirbsd/src/gnu/usr.bin/perl/ext/Storable/t/
Dcanonical.t63 my($k) = int(rand(1_000_000));
64 $k = MD5->hexhash($k) if $gotmd5 and int(rand(2));
69 if (int(rand(1.5))) {
71 my($hash2size) = int(rand($maxhash2size));
73 my($k2) = $k . $i . int(rand(100));
74 $hash2->{$k2} = $fixed_strings[rand(int(@fixed_strings))];
81 elsif (int(rand(2))) {
83 my($arraysize) = int(rand($maxarraysize));
85 push(@$arr_ref, $fixed_strings[rand(int(@fixed_strings))]);
/mirbsd/src/gnu/usr.bin/perl/ext/Thread/
Dunsync3.tx23 my $i = int(rand(1000));
26 $i = int(rand(1000));
35 my $i = int(rand(1000));
38 $i = int(rand(1000));
47 my $i = int(rand(1000));
50 $i = int(rand(1000));
Dsync2.tx20 for ($i = 0; $i < int(10 * rand); $i++) {
32 for ($i = 0; $i < int(10 * rand); $i++) {
43 for ($i = 0; $i < int(10 * rand); $i++) {
54 for ($i = 0; $i < int(10 * rand); $i++) {
Dqueue.tx22 select(undef, undef, undef, rand(2));
38 my $el = int(rand(100));
39 select(undef, undef, undef, rand(2));
Dsync.tx29 sleep 1 if rand > 0.5;
41 sleep 1 if rand > 0.5;
53 sleep 1 if rand > 0.5;
Dlock.tx20 select(undef, undef, undef, rand(10)/100);
26 select(undef, undef, undef, rand(10)/100);
Dunsync2.tx20 my $delay = int(rand(500));
31 my(@args) = ($thread) x int(rand(10));
/mirbsd/src/gnu/usr.bin/perl/t/op/
Drand.t50 $max = $min = rand(1);
52 my $n = rand(1);
211 $max = $min = rand(100);
213 my $n = rand(100);
234 my $r = rand;
238 is(rand(1), $r, 'rand() without args is rand(1)') unless $^O eq 'mirbsd';
/mirbsd/src/lib/libssl/src/doc/apps/
Drand.pod5 rand - generate pseudo-random bytes
9 B<openssl rand>
11 [B<-rand> I<file(s)>]
17 The B<rand> command outputs I<num> pseudo-random bytes after seeding
20 in addition to the files given in the B<-rand> option. A new
32 =item B<-rand> I<file(s)>
/mirbsd/src/gnu/usr.bin/perl/ext/threads/t/
Dthread.t145 # since it tests rand
146 my %rand : shared;
147 rand(10);
148 threads->new( sub { $rand{int(rand(10000000000))}++ } ) foreach 1..25;
151 # print Dumper(\%rand);
152 #$val = rand();
153 ok((keys %rand == 25), "Check that rand works after a new thread");
/mirbsd/src/lib/libssl/src/doc/crypto/
DRAND_cleanup.pod9 #include <openssl/rand.h>
23 L<rand(3)|rand(3)>
DRAND_bytes.pod9 #include <openssl/rand.h>
38 L<rand(3)|rand(3)>, L<ERR_get_error(3)|ERR_get_error(3)>,
DRAND_load_file.pod9 #include <openssl/rand.h>
46 L<rand(3)|rand(3)>, L<RAND_add(3)|RAND_add(3)>, L<RAND_cleanup(3)|RAND_cleanup(3)>
DDSA_generate_key.pod27 L<dsa(3)|dsa(3)>, L<ERR_get_error(3)|ERR_get_error(3)>, L<rand(3)|rand(3)>,
/mirbsd/src/lib/libssl/src/crypto/rand/
DMakefile.ssl5 DIR= rand
33 EXHEADER= rand.h
97 md_rand.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
106 rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
112 rand_err.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
123 rand_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
141 rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
162 rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
183 rand_win.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
194 randfile.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
DMakefile5 DIR= rand
32 EXHEADER= rand.h
95 md_rand.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
104 rand_egd.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
110 rand_err.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
123 rand_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
141 rand_os2.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
162 rand_unix.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
183 rand_win.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
194 randfile.o: ../../include/openssl/rand.h ../../include/openssl/safestack.h
/mirbsd/src/gnu/usr.bin/perl/lib/Thread/
DQueue.t39 select(undef, undef, undef, rand(1));
56 my $el = int(rand(100));
57 select(undef, undef, undef, rand(1));
/mirbsd/src/lib/libc/stdlib/
Drand.c46 rand(void) in rand() function
50 __warn_references(rand, "rand is insecure; use the arc4random family API instead");
DMakefile.inc9 merge.c putenv.c qsort.c radixsort.c rand.c random.c \
65 radixsort.3 rand48.3 rand.3 random.3 realpath.3 rpmatch.3 \
80 MLINKS+=rand.3 srand.3 rand.3 rand_r.3
/mirbsd/src/lib/libssl/src/apps/
DMakefile47 pkcs8 spkac smime rand engine ocsp prime
63 ciphers.o nseq.o pkcs12.o pkcs8.o spkac.o smime.o rand.o engine.o ocsp.o prime.o
70 ciphers.c nseq.c pkcs12.c pkcs8.c spkac.c smime.c rand.c engine.c ocsp.c prime.c
184 app_rand.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
209 apps.o: ../include/openssl/rand.h ../include/openssl/rc2.h
232 asn1pars.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
257 ca.o: ../include/openssl/rand.h ../include/openssl/rc2.h
281 ciphers.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
307 crl.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
331 crl2p7.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
[all …]
DMakefile.ssl48 pkcs8 spkac smime rand engine ocsp
64 ciphers.o nseq.o pkcs12.o pkcs8.o spkac.o smime.o rand.o engine.o ocsp.o
71 ciphers.c nseq.c pkcs12.c pkcs8.c spkac.c smime.c rand.c engine.c ocsp.c
183 app_rand.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
208 apps.o: ../include/openssl/rand.h ../include/openssl/rc2.h
231 asn1pars.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
256 ca.o: ../include/openssl/rand.h ../include/openssl/rc2.h
280 ciphers.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
306 crl.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
330 crl2p7.o: ../include/openssl/pkcs7.h ../include/openssl/rand.h
[all …]
/mirbsd/src/lib/libssl/src/crypto/engine/
DMakefile.ssl102 eng_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
114 eng_cnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
126 eng_ctrl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
138 eng_dyn.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
148 eng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
160 eng_fat.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
172 eng_init.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
183 eng_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
195 eng_list.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
216 eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
[all …]
DMakefile100 eng_all.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
112 eng_cnf.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
124 eng_ctrl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
136 eng_dyn.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
146 eng_err.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
158 eng_fat.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
170 eng_init.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
181 eng_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h
193 eng_list.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h
214 eng_openssl.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h
[all …]
/mirbsd/src/gnu/usr.bin/perl/ext/List/Util/t/
Dminstr.t33 my @a = map { pack("u", pack("C*",map { int(rand(256))} (0..int(rand(10) + 2)))) } 0 .. 20;
Dmaxstr.t33 my @a = map { pack("u", pack("C*",map { int(rand(256))} (0..int(rand(10) + 2)))) } 0 .. 20;

12345678