Home
last modified time | relevance | path

Searched refs:__seed (Results 1 – 6 of 6) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
Dstl_tempbuf.h178 _Temporary_buffer(_ForwardIterator __seed, size_type __original_len); in _GLIBCXX_VISIBILITY()
201 _ForwardIterator __seed) in _GLIBCXX_VISIBILITY()
210 _GLIBCXX_MOVE(*__seed)); in _GLIBCXX_VISIBILITY()
216 *__seed = _GLIBCXX_MOVE(*__prev); in _GLIBCXX_VISIBILITY()
247 _ForwardIterator __seed) in _GLIBCXX_VISIBILITY()
254 __ucr(__first, __last, __seed); in _GLIBCXX_VISIBILITY()
261 _Temporary_buffer(_ForwardIterator __seed, size_type __original_len) in _GLIBCXX_VISIBILITY()
272 __seed); in _GLIBCXX_VISIBILITY()
Dfunctional_hash.h205 size_t __seed = static_cast<size_t>(0xc70f6907UL)) in _GLIBCXX_VISIBILITY()
206 { return _Hash_bytes(__ptr, __clength, __seed); } in _GLIBCXX_VISIBILITY()
224 size_t __seed = static_cast<size_t>(2166136261UL)) in _GLIBCXX_VISIBILITY()
225 { return _Fnv_hash_bytes(__ptr, __clength, __seed); } in _GLIBCXX_VISIBILITY()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/libsupc++/
Dhash_bytes.h47 _Hash_bytes(const void* __ptr, size_t __len, size_t __seed);
54 _Fnv_hash_bytes(const void* __ptr, size_t __len, size_t __seed);
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
Drandom_number.h85 _RandomNumber(uint32_t __seed, uint64_t _M_supremum = 0x100000000ULL)
86 : _M_mt(__seed), _M_supremum(_M_supremum), in _M_mt() argument
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
Dfunctional367 _M_initialize(unsigned int __seed)
370 _M_table[54] = __seed;
376 __k = __seed - __k;
377 __seed = _M_table[__ii];
389 subtractive_rng(unsigned int __seed)
390 { _M_initialize(__seed); }
Drandom.tcc53 seed(_UIntType __seed) in seed() argument
55 _M_state32[0] = static_cast<uint32_t>(__seed); in seed()