Searched defs:Random (Results 1 - 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Drandom.py0 """Random variable generators.
51 __all__ = ["Random","seed","random","uniform","randint","choice","sample",
72 class Random(_random.Random): class in inherits:_random.Random
73 """Random number generator base class used by bound module functions.
75 Used to instantiate instances of Random to get generators that don't
77 a different instance of Random for each thread, and using the jumpahead()
81 Class Random can also be subclassed if you want to use a different basic
94 Optional argument x controls seeding, as for Random.seed().
118 super(Random, sel
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Drandom.py0 """Random variable generators.
51 __all__ = ["Random","seed","random","uniform","randint","choice","sample",
72 class Random(_random.Random): class in inherits:_random.Random
73 """Random number generator base class used by bound module functions.
75 Used to instantiate instances of Random to get generators that don't
77 a different instance of Random for each thread, and using the jumpahead()
81 Class Random can also be subclassed if you want to use a different basic
94 Optional argument x controls seeding, as for Random.seed().
116 super(Random, sel
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
H A DIScsiMisc.c503 UINT32 Random; local
506 Random = NET_RANDOM (NetRandomInitSeed ());
507 *Rand++ = (UINT8) (Random);
/device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
H A DIScsiMisc.c458 UINT32 Random; local
461 Random = NET_RANDOM (NetRandomInitSeed ());
462 *Rand++ = (UINT8) (Random);
/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
H A DIp6Nd.c31 UINT32 Random; local
33 Random = (NetRandomInitSeed () / 4294967295UL) * IP6_RANDOM_FACTOR_SCALE;
34 Random = Random + IP6_MIN_RANDOM_FACTOR_SCALED;
35 IpSb->ReachableTime = (IpSb->BaseReachableTime * Random) / IP6_RANDOM_FACTOR_SCALE;

Completed in 44 milliseconds