Lines Matching refs:rnd
75 void getSimpleRndString (vector<char>& dst, de::Random& rnd, int maxLen) in getSimpleRndString() argument
79 dst.resize(rnd.getInt(0, (int)maxLen)); in getSimpleRndString()
82 dst[ndx] = rnd.choose<char>(DE_ARRAY_BEGIN(s_chars), DE_ARRAY_END(s_chars)); in getSimpleRndString()
85 void getComplexRndString (vector<char>& dst, de::Random& rnd, int maxLen) in getComplexRndString() argument
87 dst.resize(rnd.getInt(0, (int)maxLen)); in getComplexRndString()
90 dst[ndx] = (char)rnd.getUint8(); in getComplexRndString()
120 de::Random rnd (0xaf829c0); in iterate() local
124 const CallType callType = CallType(rnd.getInt(0, CALL_TYPE_LAST-1)); in iterate()
128 const bool nullTerminate = rnd.getBool(); in iterate()
129 const bool passLength = rnd.getBool(); in iterate()
130 const bool complexMsg = rnd.getBool(); in iterate()
134 getComplexRndString(message, rnd, maxMsgLen); in iterate()
136 getSimpleRndString(message, rnd, maxMsgLen); in iterate()