Searched refs:seedp (Results 1 – 5 of 5) sorted by relevance
/external/icu/icu4c/source/test/intltest/ |
D | intltest.cpp | 1670 float IntlTest::random(int32_t* seedp) { in random() argument 1674 if (*seedp < 0 || first) { in random() 1676 if ((*seedp=(RAND_IC-(*seedp)) % RAND_M) < 0) *seedp = -(*seedp); in random() 1678 *seedp=(RAND_IA*(*seedp)+RAND_IC) % RAND_M; in random() 1679 ir[j]=(*seedp); in random() 1681 *seedp=(RAND_IA*(*seedp)+RAND_IC) % RAND_M; in random() 1682 iy=(*seedp); in random() 1687 *seedp=(RAND_IA*(*seedp)+RAND_IC) % RAND_M; in random() 1688 ir[j]=(*seedp); in random()
|
D | intltest.h | 248 static float random(int32_t* seedp);
|
/external/llvm-project/clang/test/Analysis/ |
D | std-c-library-functions-POSIX.c | 195 int rand_r(unsigned int *seedp);
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 4338 INTERCEPTOR(int, rand_r, unsigned *seedp) { 4340 COMMON_INTERCEPTOR_ENTER(ctx, rand_r, seedp); 4341 COMMON_INTERCEPTOR_READ_RANGE(ctx, seedp, sizeof(*seedp)); 4342 return REAL(rand_r)(seedp);
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 5181 INTERCEPTOR(int, rand_r, unsigned *seedp) { 5183 COMMON_INTERCEPTOR_ENTER(ctx, rand_r, seedp); 5184 COMMON_INTERCEPTOR_READ_RANGE(ctx, seedp, sizeof(*seedp)); 5185 return REAL(rand_r)(seedp);
|