Searched refs:seed (Results 1 - 23 of 23) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dcrc32.h8 u32 crc32_le ( u32 seed, const void *data, size_t len );
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A DRand.c64 srand(unsigned int seed) argument
66 next = (UINT32)seed;
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Drandom.c17 * @v seed Seed value
19 void srandom ( unsigned int seed ) {
20 rnd_seed = seed;
/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_rand.h16 DECLEXPORT(void) crRandSeed( unsigned long seed );
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Dcrc32.c30 * @v seed Initial value
34 * Usually @a seed is initially zero or all one bits, depending on the
36 * return value from one call as the @a seed parameter to the next.
38 u32 crc32_le ( u32 seed, const void *data, size_t len ) argument
40 u32 crc = seed;
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dstdlib.h91 extern void srandom ( unsigned int seed );
97 static inline void srand ( unsigned int seed ) {
98 srandom ( seed );
/vbox/src/VBox/Devices/PC/ipxe/src/tests/
H A Dcrc32_test.c40 * printf "%#08x", crc ( $data, 32, $seed, 0, 1, 0x04c11db7, 1 );
61 uint32_t seed; member in struct:crc32_test
80 .seed = SEED, \
91 crc32 = crc32_le ( (test)->seed, (test)->data, (test)->len ); \
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Drand.c35 void crRandSeed(unsigned long seed) argument
41 if (seed == 0)
42 seed = 4357; /* pick default seed if seed=0 (Guy Zadickario) */
43 mt[0]= seed & 0xffffffff;
75 crRandSeed(4357); /* a default initial seed is used */
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/tests/
H A Dranfile.cpp99 PRFloat64 seed; member in class:HammerData
125 ** Updates random seed (a static)
141 PRFloat64 random = seed * (PRFloat64)((PRIntervalTime)now);
144 seed = (PRFloat64)rv;
162 seed = 0x58a9382;
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dranfile.c114 ** Updates random seed (a static)
129 static PRFloat64 seed = 0x58a9382; /* Just make sure it isn't 0! */ local
130 PRFloat64 random = seed * (PRFloat64)PR_IntervalNow();
133 seed = (PRFloat64)rv;
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dstdlib.h50 void srand (unsigned seed);
581 /** The srand function uses the argument as a seed for a new sequence of
584 If srand is then called with the same seed value, the sequence of
587 is first called with a seed value of 1.
589 @param[in] seed The value used to "seed" the random number generator with.
591 void srand(unsigned seed);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dxcmc.h253 CMC_message_reference *seed,
H A Dwincrypt.h157 BYTE seed[20]; member in struct:_DSSSEED
649 CRYPT_BIT_BLOB seed; member in struct:_CERT_X942_DH_VALIDATION_PARAMS
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dxcmc.h253 CMC_message_reference *seed,
H A Dwincrypt.h157 BYTE seed[20]; member in struct:_DSSSEED
649 CRYPT_BIT_BLOB seed; member in struct:_CERT_X942_DH_VALIDATION_PARAMS
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dxf86drm.h619 extern void *drmRandomCreate(unsigned long seed);
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/
H A Dxf86drm.h588 extern void *drmRandomCreate(unsigned long seed);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dxf86drm.h619 extern void *drmRandomCreate(unsigned long seed);
/vbox/src/VBox/Additions/x11/x11include/libdrm-2.4.13/
H A Dxf86drm.h644 extern void *drmRandomCreate(unsigned long seed);
/vbox/src/VBox/RDP/client-1.8.3/
H A Dscard.c551 outForceAlignment(STREAM out, unsigned int seed) argument
553 SERVER_DWORD add = (seed - (out->p - out->data) % seed) % seed;
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxb-impl.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/bind/ ...
H A Djaxb-xjc.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ...
/vbox/src/VBox/ValidationKit/testdriver/
H A Dvboxtestvms.py288 random.seed();

Completed in 219 milliseconds