Home
last modified time | relevance | path

Searched refs:random (Results 1 – 17 of 17) sorted by relevance

/test/vts/utils/python/io/
Dfile_util_test.py19 import random
39 random.choice(string.ascii_lowercase + string.digits)
62 random.choice(string.ascii_lowercase + string.digits)
73 random.choice(string.ascii_lowercase + string.digits)
84 random.choice(string.ascii_lowercase + string.digits)
89 random.choice(string.ascii_lowercase + string.digits)
/test/vts/utils/python/fuzzer/
DFuzzerUtils.py17 import random
20 shifter = random.randint(0, 31)
DGenePool.py17 import random
102 elif random.randint(0, self._beta) == 1:
Dcorpus_manager.py19 import random
182 target_seed = seed_list[random.randint(0, len(seed_list) - 1)]
/test/vts-testcase/fuzz/iface_fuzzer/
DProtoFuzzerMain.cpp59 static unique_ptr<Random> random; variable
113 random = make_unique<Random>(params.seed_); in LLVMFuzzerInitialize()
115 *random.get(), ExtractPredefinedTypes(params.comp_specs_), in LLVMFuzzerInitialize()
/test/vts/utils/python/controllers/
Dadb.py19 import random
57 port = random.randint(1024, 9900)
/test/mlts/benchmark/dogfood/src/com/android/nn/dogfood/
DBenchmarkJobService.java146 Random random = new Random(seed); in randomModelList() local
151 randomModelIndices[i] = random.nextInt(testList.size()); in randomModelList()
/test/mlts/benchmark/
Dbuild_and_run_benchmark.sh104 model-load-random-stress)
108 inference-random-stress)
DREADME.txt72 * model-load-random-stress: test compiling a large set of randomly generated models
74 * inference-random-stress: test running a large set of randomly generated models
/test/mlts/benchmark/src/com/android/nn/benchmark/app/
DNNControls.java210 Random random = new Random(seed); in btnRunDogfood() local
216 int i = random.nextInt(mTestList.size()); in btnRunDogfood()
/test/vts-testcase/kernel/ltp/
DKernelLtpTest.py18 import random
347 random.seed(RANDOM_SEED)
348 random.shuffle(settings_multithread)
/test/vti/test_serving/gae/webapp/src/testing/
Dunittest_base.py18 import random
71 random.choice(string.ascii_letters + string.digits)
/test/vts/runners/host/
Dutils.py24 import random
286 letters = [random.choice(ascii_letters_and_digits) for i in range(length)]
/test/vts/utils/python/mirror/
Dnative_entity_mirror.py19 import random
320 index = random.randint(0, len(arg_msg.struct_value))
Dhal_mirror.py19 import random
/test/mlts/benchmark/tools/
Drequirements.txt96 mkl-random==1.0.2
/test/mlts/benchmark/src/com/android/nn/crashtest/app/
DAcceleratorSpecificTestSupport.java66 return min + (long) (Math.random() * (max - min)); in ramdomInRange()