Home
last modified time | relevance | path

Searched refs:num_fuzz_objects (Results 1 – 5 of 5) sorted by relevance

/external/flatbuffers/tests/
Dfuzz_test.cpp51 const int num_fuzz_objects = 10000; // The higher, the more thorough :) in FuzzTest1() local
57 flatbuffers::uoffset_t objects[num_fuzz_objects]; in FuzzTest1()
61 for (int i = 0; i < num_fuzz_objects; i++) { in FuzzTest1()
91 for (int i = 0; i < num_fuzz_objects; i++) { in FuzzTest1()
DphpTest.php221 $num_fuzz_objects = 1000;
230 for ($i = 0; $i < $num_fuzz_objects; $i++) {
278 for ($i = 0; $i < $num_fuzz_objects; $i++) {
/external/flatbuffers/tests/ts/
DJavaScriptTestv1.cjs301 var num_fuzz_objects = 10000; // The higher, the more thorough :)
309 // Generate num_fuzz_objects random objects each consisting of
311 for (var i = 0; i < num_fuzz_objects; i++) {
342 for (var i = 0; i < num_fuzz_objects; i++) {
DJavaScriptTest.js382 var num_fuzz_objects = 10000; // The higher, the more thorough :)
392 for (var i = 0; i < num_fuzz_objects; i++) {
423 for (var i = 0; i < num_fuzz_objects; i++) {
/external/flatbuffers/tests/rust_usage_test/tests/
Dintegration_test.rs1390 let num_fuzz_objects: isize = 1000; // The higher, the more thorough :) in table_of_mixed_scalars_fuzz() localVariable
1395 let mut objects: Vec<flatbuffers::UOffsetT> = vec![0; num_fuzz_objects as usize]; in table_of_mixed_scalars_fuzz()
1399 for i in 0..(num_fuzz_objects as usize) { in table_of_mixed_scalars_fuzz()
1436 for i in 0..(num_fuzz_objects as usize) { in table_of_mixed_scalars_fuzz()