Home
last modified time | relevance | path

Searched refs:arc4random_uniform (Results 1 – 14 of 14) sorted by relevance

/external/openssh/regress/unittests/sshbuf/
Dtest_sshbuf_fuzz.c50 r = arc4random_uniform(10); in sshbuf_fuzz_tests()
53 r = arc4random_uniform(10); in sshbuf_fuzz_tests()
68 memset(dp, arc4random_uniform(255) + 1, r); in sshbuf_fuzz_tests()
72 r = arc4random_uniform(8 * 1024); in sshbuf_fuzz_tests()
76 r = arc4random_uniform(10); in sshbuf_fuzz_tests()
94 r = arc4random_uniform(2 * 1024); in sshbuf_fuzz_tests()
98 r = arc4random_uniform(16 * 1024); in sshbuf_fuzz_tests()
105 if (arc4random_uniform(8192) == 0) { in sshbuf_fuzz_tests()
/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Posix/
Darc4random.cpp32 auto i = arc4random_uniform(1024); in test_arc4random_uniform()
/external/openssh/openbsd-compat/
Dbindresvport.c93 port = arc4random_uniform(NPORTS) + STARTPORT; in bindresvport_sa()
Dmktemp.c72 r = arc4random_uniform(NUM_CHARS); in mktemp_internal()
Dopenbsd-compat.h218 u_int32_t arc4random_uniform(u_int32_t);
Darc4random.c292 arc4random_uniform(u_int32_t upper_bound) in arc4random_uniform() function
/external/webrtc/examples/objc/AppRTCMobile/ios/broadcast_extension/
DARDBroadcastSampleHandler.m51 u_int32_t randomRoomSuffix = arc4random_uniform(1000);
/external/openssh/
Ddh.c191 which = arc4random_uniform(bestcount); in choose_dh()
Dsshd.c847 r = arc4random_uniform(100);
Dmux.c1308 r = arc4random_uniform(26+26+10); in muxserver_listen()
Dconfigure.ac3188 arc4random_uniform \
/external/libevent/
Darc4random.c513 arc4random_uniform(unsigned int upper_bound) in arc4random_uniform() function
/external/webrtc/sdk/objc/unittests/
DRTCMTLVideoView_xctest.m79 OCMStub([frameMock timeStampNs]).andReturn(arc4random_uniform(INT_MAX));
/external/rust/crates/libc/src/
Dwasi.rs705 pub fn arc4random_uniform(a: u32) -> u32; in arc4random_uniform() function