Lines Matching defs:seed
21 linear equation. Unlike rand(), this class holds its own seed (initially
30 LCGRandom(uint32_t seed) : fSeed(seed) {}
82 /* Caller may supply their own seed assist, which by default is 0 */
83 uint32_t seed = fSeedAssist ^ SkScalarRoundToInt(meas.getLength());
85 LCGRandom rand(seed ^ ((seed << 16) | (seed >> 16)));
142 uint32_t seed = buffer.readUInt();
143 return SkDiscretePathEffect::Make(segLength, perterb, seed);
158 /* Caller-supplied 32 bit seed assist */