HomeSort by relevance Sort by last modified time
    Searched full:__seed (Results 1 - 25 of 39) sorted by null

1 2

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/parallel/
random_number.h 82 * @param __seed Random __seed.
85 _RandomNumber(uint32_t __seed, uint64_t _M_supremum = 0x100000000ULL)
86 : _M_mt(__seed), _M_supremum(_M_supremum),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
random_number.h 82 * @param __seed Random __seed.
85 _RandomNumber(uint32_t __seed, uint64_t _M_supremum = 0x100000000ULL)
86 : _M_mt(__seed), _M_supremum(_M_supremum),
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
random_number.h 82 * @param __seed Random __seed.
85 _RandomNumber(uint32_t __seed, uint64_t _M_supremum = 0x100000000ULL)
86 : _M_mt(__seed), _M_supremum(_M_supremum),
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/parallel/
random_number.h 82 * @param __seed Random __seed.
85 _RandomNumber(uint32_t __seed, uint64_t _M_supremum = 0x100000000ULL)
86 : _M_mt(__seed), _M_supremum(_M_supremum),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_tempbuf.h 186 _ForwardIterator __seed)
195 _GLIBCXX_MOVE(*__seed));
201 *__seed = _GLIBCXX_MOVE(*__prev);
224 // While *__seed may be altered during this algorithm, it will have
232 _ForwardIterator __seed)
239 __ucr(__first, __last, __seed);
hash_bytes.h 47 _Hash_bytes(const void* __ptr, size_t __len, size_t __seed);
54 _Fnv_hash_bytes(const void* __ptr, size_t __len, size_t __seed);
functional_hash.h 130 size_t __seed = static_cast<size_t>(0xc70f6907UL))
131 { return _Hash_bytes(__ptr, __clength, __seed); }
148 size_t __seed = static_cast<size_t>(2166136261UL))
149 { return _Fnv_hash_bytes(__ptr, __clength, __seed); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_tempbuf.h 186 _ForwardIterator __seed)
195 _GLIBCXX_MOVE(*__seed));
201 *__seed = _GLIBCXX_MOVE(*__prev);
224 // While *__seed may be altered during this algorithm, it will have
232 _ForwardIterator __seed)
239 __ucr(__first, __last, __seed);
hash_bytes.h 47 _Hash_bytes(const void* __ptr, size_t __len, size_t __seed);
54 _Fnv_hash_bytes(const void* __ptr, size_t __len, size_t __seed);
functional_hash.h 130 size_t __seed = static_cast<size_t>(0xc70f6907UL))
131 { return _Hash_bytes(__ptr, __clength, __seed); }
148 size_t __seed = static_cast<size_t>(2166136261UL))
149 { return _Fnv_hash_bytes(__ptr, __clength, __seed); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_tempbuf.h 186 _ForwardIterator __seed)
195 _GLIBCXX_MOVE(*__seed));
201 *__seed = _GLIBCXX_MOVE(*__prev);
224 // While *__seed may be altered during this algorithm, it will have
232 _ForwardIterator __seed)
239 __ucr(__first, __last, __seed);
hash_bytes.h 47 _Hash_bytes(const void* __ptr, size_t __len, size_t __seed);
54 _Fnv_hash_bytes(const void* __ptr, size_t __len, size_t __seed);
functional_hash.h 130 size_t __seed = static_cast<size_t>(0xc70f6907UL))
131 { return _Hash_bytes(__ptr, __clength, __seed); }
148 size_t __seed = static_cast<size_t>(2166136261UL))
149 { return _Fnv_hash_bytes(__ptr, __clength, __seed); }
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_tempbuf.h 186 _ForwardIterator __seed)
195 _GLIBCXX_MOVE(*__seed));
201 *__seed = _GLIBCXX_MOVE(*__prev);
224 // While *__seed may be altered during this algorithm, it will have
232 _ForwardIterator __seed)
239 __ucr(__first, __last, __seed);
hash_bytes.h 47 _Hash_bytes(const void* __ptr, size_t __len, size_t __seed);
54 _Fnv_hash_bytes(const void* __ptr, size_t __len, size_t __seed);
functional_hash.h 130 size_t __seed = static_cast<size_t>(0xc70f6907UL))
131 { return _Hash_bytes(__ptr, __clength, __seed); }
148 size_t __seed = static_cast<size_t>(2166136261UL))
149 { return _Fnv_hash_bytes(__ptr, __clength, __seed); }
  /external/fio/lib/
rand.c 41 static inline int __seed(unsigned int x, unsigned int m) function
52 state->s1 = __seed(LCG((2^31) + (2^17) + (2^7), seed), 1);
53 state->s2 = __seed(LCG(state->s1, seed), 7);
54 state->s3 = __seed(LCG(state->s2, seed), 15);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_function.h 401 void _M_initialize(_STLP_UINT32_T __seed) {
403 _M_table[54] = __seed;
408 __k = __seed - __k;
409 __seed = _M_table[__ii];
419 subtractive_rng(unsigned int __seed) { _M_initialize(__seed); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
functional 372 _M_initialize(unsigned int __seed)
375 _M_table[54] = __seed;
381 __k = __seed - __k;
382 __seed = _M_table[__ii];
394 subtractive_rng(unsigned int __seed)
395 { _M_initialize(__seed); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
functional 372 _M_initialize(unsigned int __seed)
375 _M_table[54] = __seed;
381 __k = __seed - __k;
382 __seed = _M_table[__ii];
394 subtractive_rng(unsigned int __seed)
395 { _M_initialize(__seed); }
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
functional 372 _M_initialize(unsigned int __seed)
375 _M_table[54] = __seed;
381 __k = __seed - __k;
382 __seed = _M_table[__ii];
394 subtractive_rng(unsigned int __seed)
395 { _M_initialize(__seed); }
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
functional 372 _M_initialize(unsigned int __seed)
375 _M_table[54] = __seed;
381 __k = __seed - __k;
382 __seed = _M_table[__ii];
394 subtractive_rng(unsigned int __seed)
395 { _M_initialize(__seed); }
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_function.h 401 void _M_initialize(_STLP_UINT32_T __seed) {
403 _M_table[54] = __seed;
408 __k = __seed - __k;
409 __seed = _M_table[__ii];
419 subtractive_rng(unsigned int __seed) { _M_initialize(__seed); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
stdlib.h 330 extern void srandom (unsigned int __seed) __THROW;
336 extern char *initstate (unsigned int __seed, char *__statebuf,
363 extern int srandom_r (unsigned int __seed, struct random_data *__buf)
366 extern int initstate_r (unsigned int __seed, char *__restrict __statebuf,
382 extern void srand (unsigned int __seed) __THROW;
387 extern int rand_r (unsigned int *__seed) __THROW;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdlib.h 330 extern void srandom (unsigned int __seed) __THROW;
336 extern char *initstate (unsigned int __seed, char *__statebuf,
363 extern int srandom_r (unsigned int __seed, struct random_data *__buf)
366 extern int initstate_r (unsigned int __seed, char *__restrict __statebuf,
382 extern void srand (unsigned int __seed) __THROW;
387 extern int rand_r (unsigned int *__seed) __THROW;
    [all...]

Completed in 1291 milliseconds

1 2