Home
last modified time | relevance | path

Searched refs:rand_time (Results 1 – 17 of 17) sorted by relevance

/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/sim/src/make/
H A Dactivity_model.rs117 let mut depart_am = rand_time( in robot_person()
122 let mut depart_pm = rand_time( in robot_person()
130 depart_am = rand_time( in robot_person()
135 depart_pm = rand_time( in robot_person()
203 let depart_am = rand_time( in border_person()
208 let depart_pm = rand_time( in border_person()
256 fn rand_time(rng: &mut XorShiftRng, low: Time, high: Time) -> Time { in rand_time() function
H A Dgenerator.rs171 let depart = rand_time(rng, self.start_time, self.stop_time); in spawn_agent()
276 let depart = rand_time(rng, self.start_time, self.stop_time); in spawn_peds()
325 let depart = rand_time(rng, self.start_time, self.stop_time); in spawn_vehicles()
402 fn rand_time(rng: &mut XorShiftRng, low: Time, high: Time) -> Time { in rand_time() function
/dports/devel/p5-Data-Random/Data-Random-0.13/t/
H A Drand_time.t6 use Data::Random qw( rand_time );
24 my $time = rand_time( min => 'now', max => 'now' );
57 my $time = rand_time(@args);
/dports/x11-wm/compiz-plugins-extra/compiz-plugins-extra-0.8.8/src/animationaddon/
H A Dskewer.c182 int rand_time = floor (RAND_FLOAT () * last_time); in fxSkewerInit() local
184 p->moveStartTime = 0.8 / (float)pset->nPolygons * times[rand_time]; in fxSkewerInit()
190 times[rand_time] = times[last_time]; // copy last one over times[rand_time] in fxSkewerInit()
/dports/security/suricata/suricata-6.0.4/rust/vendor/tls-parser/src/
H A Dtls.rs216 pub rand_time: u32, field
239 rand_time: rt, in new()
261 pub rand_time: u32, field
301 rand_time: rt, in new()
568 rand_time: be_u32 >>
580 TlsClientHelloContents::new(v,rand_time,rand_data,sid,ciphers,comp.to_vec(),ext)
589 rand_time: be_u32 >>
599 TlsServerHelloContents::new(v,rand_time,rand_data,sid,cipher,comp,ext)
H A Dtls_serialize.rs192 gen_be_u32!(m.rand_time) >> in gen_tls_clienthello()
213 gen_be_u32!(m.rand_time) >> in gen_tls_serverhello()
394 rand_time: 0xb29dd787, in serialize_plaintext()
474 rand_time: 0xb29dd787, in serialize_clienthello()
514 rand_time: 0xb29dd787, in serialize_serverhello()
H A Dtls_debug.rs18 .field("rand_time", &self.rand_time) in fmt()
32 .field("rand_time", &self.rand_time) in fmt()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/wiredtiger/test/csuite/random_abort/
H A Dmain.c245 bool fatal, rand_th, rand_time, verify_only; in main() local
251 rand_th = rand_time = true; in main()
272 rand_time = false; in main()
299 if (rand_time) { in main()
/dports/net/redir/redir-2.2.1/
H A Dredir.c152 int rand_time; in redir_write() local
156 rand_time=rand()%(random_wait*2); in redir_write()
157 debug1("random wait: %u\n", rand_time); in redir_write()
158 waitbw.tv_sec=rand_time/1000; in redir_write()
159 waitbw.tv_usec=rand_time%1000; in redir_write()
/dports/devel/p5-Data-Random/Data-Random-0.13/
H A DMANIFEST23 t/rand_time.t
H A DChanges14 - better error handling in `rand_time`
/dports/security/suricata/suricata-6.0.4/rust/vendor/tls-parser/tests/
H A Dtls_handshake.rs68 rand_time: 0xb29dd787, in test_tls_record_clienthello()
395 rand_time: 0x57c457da, in test_tls_record_serverhello()
H A Dtls_tls13.rs73 rand_time: 0xce05cfa3, in test_tls13_ch()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/wiredtiger/test/csuite/timestamp_abort/
H A Dmain.c598 bool fatal, rand_th, rand_time, verify_only; in main() local
609 rand_th = rand_time = true; in main()
633 rand_time = false; in main()
663 if (rand_time) { in main()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/wiredtiger/test/csuite/random_directio/
H A Dmain.c1076 bool populate_only, rand_th, rand_time, verify_only; in main() local
1083 rand_th = rand_time = true; in main()
1173 rand_time = false; in main()
1213 if (rand_time) { in main()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/wiredtiger/test/csuite/schema_abort/
H A Dmain.c1001 bool rand_th, rand_time, verify_only; in main() local
1017 rand_th = rand_time = true; in main()
1038 rand_time = false; in main()
1071 if (rand_time) { in main()
/dports/devel/p5-Data-Random/Data-Random-0.13/lib/Data/
H A DRandom.pm303 sub rand_time { subroutine