Searched defs:randGen (Results 1 – 4 of 4) sorted by relevance
/external/syzkaller/prog/ |
D | rand.go | 18 type randGen struct { struct 19 *rand.Rand 20 target *Target 21 inCreateResource bool 22 recDepth map[string]int 33 func (r *randGen) rand(n int) uint64 { 37 func (r *randGen) randRange(begin, end uint64) uint64 { 41 func (r *randGen) bin() bool { 45 func (r *randGen) oneOf(n int) bool { 49 func (r *randGen) rand64() uint64 { [all …]
|
D | mutation.go | 167 func (target *Target) mutateArg(r *randGen, s *state, arg Arg, ctx ArgCtx, updateSizes *bool) ([]*C… 190 func regenerate(r *randGen, s *state, arg Arg) (calls []*Call, retry, preserve bool) { 197 func mutateInt(r *randGen, s *state, arg Arg) (calls []*Call, retry, preserve bool) { 213 func (t *IntType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve… 217 func (t *FlagsType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preser… 221 func (t *LenType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve… 230 func (t *ResourceType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, pre… 234 func (t *VmaType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve… 238 func (t *ProcType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserv… 242 func (t *BufferType) mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, prese… [all …]
|
D | types.go | 65 generate(r *randGen, s *state) (arg Arg, calls []*Call) 66 mutate(r *randGen, s *state, arg Arg, ctx ArgCtx) (calls []*Call, retry, preserve bool)
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/ |
D | GeneticAlgorithm.java | 145 RandomGenerator randGen = getRandomGenerator(); in nextGeneration() local
|