Lines Matching refs:TestRandom
29 static inline int TestRandom(void) in TestRandom() function
53 nameLens[i] = (TestRandom() % (PARAM_NAME_LEN_MAX - 10)) + 10; // 10 name len in LocalParameterTestState()
67 names[i][j] = paramNameChars[TestRandom() % paramNameLen]; in LocalParameterTestState()
72 valueLens[i] = (TestRandom() % (PARAM_VALUE_LEN_MAX - 1)) + 1; in LocalParameterTestState()
75 values[i][j] = paramNameChars[TestRandom() % (sizeof(paramNameChars) - 1)]; in LocalParameterTestState()
136 …CachedHandle handle = CachedParameterCreate(g_localParamTester->names[TestRandom() % g_maxCount], … in BMCachedParameterGet()
157 g_localParamTester->names[TestRandom() % g_maxCount], "xxxxxx"); in BMCachedParameterGetChangedStatic()
176 …CachedHandle handle = CachedParameterCreate(g_localParamTester->names[TestRandom() % g_maxCount], … in BMCachedParameterGetChangedGlobal()
199 … handle = CachedParameterCreate(g_localParamTester->names[TestRandom() % g_maxCount], "xxxxxxxxx"); in BMCachedParameterGetChangedGlobal2()
222 SystemReadParam(g_localParamTester->names[TestRandom() % g_maxCount], value, &len); in BMSystemReadParam()
227 SystemReadParam(g_localParamTester->names[TestRandom() % g_maxCount], value, &len); in BMSystemReadParam()
271 SystemFindParameter(g_localParamTester->names[TestRandom() % g_maxCount], &handle); in BMSystemFindParameter()
290 SystemFindParameter(g_localParamTester->names[TestRandom() % g_maxCount], &handle[i]); in BMSystemGetParameterValue()
318 SystemFindParameter(g_localParamTester->names[TestRandom() % g_maxCount], &handle[i]); in BMSystemGetParameterCommitId()
339 benchmark::DoNotOptimize(TestRandom()); in BMTestRandom()