Home
last modified time | relevance | path

Searched defs:PCG (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/math/rand/v2/
Dpcg.go18 type PCG struct { struct
19 hi uint64
20 lo uint64
29 func (p *PCG) Seed(seed1, seed2 uint64) {
35 func (p *PCG) MarshalBinary() ([]byte, error) {
46 func (p *PCG) UnmarshalBinary(data []byte) error {
55 func (p *PCG) next() (hi, lo uint64) {
82 func (p *PCG) Uint64() uint64 {