Searched refs:rand32 (Results 1 – 6 of 6) sorted by relevance
50 U32 rand32 = *src; in RDG_rand() local51 rand32 *= prime1; in RDG_rand()52 rand32 ^= prime2; in RDG_rand()53 rand32 = RDG_rotl32(rand32, 13); in RDG_rand()54 *src = rand32; in RDG_rand()55 return rand32 >> 5; in RDG_rand()
181 U32 rand32 = *src; in DiB_rand() local182 rand32 *= prime1; in DiB_rand()183 rand32 ^= prime2; in DiB_rand()184 rand32 = DiB_rotl32(rand32, 13); in DiB_rand()185 *src = rand32; in DiB_rand()186 return rand32 >> 5; in DiB_rand()
112 test_arr[i].offset = (rand32 (0) & (max_size - 1)); in init_memset()113 test_arr[i].offset &= ~align_arr[rand32 (0) & ALIGN_MASK]; in init_memset()114 test_arr[i].len = len_arr[rand32 (0) & SIZE_MASK]; in init_memset()127 rand32 (0x12345678); in memset_random()
135 test_arr[i].dst = (rand32 (0) & (max_size - 1)); in init_copies()136 test_arr[i].dst &= ~dst_align_arr[rand32 (0) & ALIGN_MASK]; in init_copies()137 test_arr[i].src = (rand32 (0) & (max_size - 1)); in init_copies()138 test_arr[i].src &= ~src_align_arr[rand32 (0) & ALIGN_MASK]; in init_copies()139 test_arr[i].len = size_arr[rand32 (0) & SIZE_MASK]; in init_copies()
105 int align = strlen_align_arr[rand32 (0) & ALIGN_MASK]; in init_strlen_tests()106 int exp_len = strlen_len_arr[rand32 (0) & SIZE_MASK]; in init_strlen_tests()215 rand32 (0x12345678); in main()
23 rand32 (uint32_t seed) in rand32() function