Lines Matching full:seed
1183 /* The default seed is 1 */ in ZTEST()
1202 zassert_equal(a, 12345, "srand with seed 0 failed"); in ZTEST()
1206 zassert_equal(a, 1103527590, "srand with seed 1 failed"); in ZTEST()
1210 zassert_equal(a, 297746555, "srand with seed 10 failed"); in ZTEST()
1214 zassert_equal(a, 2087949151, "srand with seed UINT_MAX - 1 failed"); in ZTEST()
1218 zassert_equal(a, 1043980748, "srand with seed UINT_MAX failed"); in ZTEST()
1238 zassert_equal(a, 12345, "srand with seed 0 failed"); in ZTEST()
1241 zassert_equal(b, 12345, "srand with seed 0 failed (2nd)"); in ZTEST()
1244 zassert_equal(c, 12345, "srand with seed 0 failed (3rd)"); in ZTEST()
1248 zassert_equal(a, 1103527590, "srand with seed 1 failed"); in ZTEST()
1251 zassert_equal(b, 1103527590, "srand with seed 1 failed (2nd)"); in ZTEST()
1254 zassert_equal(c, 1103527590, "srand with seed 1 failed (3rd)"); in ZTEST()
1258 zassert_equal(a, 297746555, "srand with seed 10 failed"); in ZTEST()
1261 zassert_equal(b, 297746555, "srand with seed 10 failed (2nd)"); in ZTEST()
1264 zassert_equal(c, 297746555, "srand with seed 10 failed (3rd)"); in ZTEST()
1268 zassert_equal(a, 2087949151, "srand with seed UINT_MAX - 1 failed"); in ZTEST()
1271 zassert_equal(b, 2087949151, "srand with seed UINT_MAX - 1 failed (2nd)"); in ZTEST()
1274 zassert_equal(c, 2087949151, "srand with seed UINT_MAX - 1 failed (3rd)"); in ZTEST()
1278 zassert_equal(a, 1043980748, "srand with seed UINT_MAX failed"); in ZTEST()
1281 zassert_equal(b, 1043980748, "srand with seed UINT_MAX failed (2nd)"); in ZTEST()
1284 zassert_equal(c, 1043980748, "srand with seed UINT_MAX failed (3rd)"); in ZTEST()