HomeSort by relevance Sort by last modified time
    Searched refs:random_stream (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
rotatingtree.c 12 static unsigned int random_stream = 0; variable
18 if (random_stream < (1U << bits)) {
20 random_stream = random_value;
22 result = random_stream & ((1<<bits)-1);
23 random_stream >>= bits;
  /external/python/cpython2/Modules/
rotatingtree.c 12 static unsigned int random_stream = 0; variable
18 if (random_stream < (1U << bits)) {
20 random_stream = random_value;
22 result = random_stream & ((1<<bits)-1);
23 random_stream >>= bits;
  /external/python/cpython3/Modules/
rotatingtree.c 12 static unsigned int random_stream = 0; variable
18 if (random_stream < (1U << bits)) {
20 random_stream = random_value;
22 result = random_stream & ((1<<bits)-1);
23 random_stream >>= bits;

Completed in 104 milliseconds