Home
last modified time | relevance | path

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

12

/art/tools/jfuzz/
DREADME.md4 JFuzz is a tool for generating random programs with the objective
21 -s : defines a deterministic random seed
119 in an unexpected way. Fuzzing refers to feeding a large amount of random data
121 based fuzz testing constructs random, but properly formatted input data.
122 Mutation-based fuzz testing applies small random changes to existing inputs
124 fuzzing adds a direction to the way these random changes are applied. Multi-
125 layered approaches generate random inputs that are subsequently mutated at
Djfuzz.cc510 case kInt: fprintf(out_, "%d", random()); break; in emitLiteral()
511 case kLong: fprintf(out_, "%dL", random()); break; in emitLiteral()
512 case kFloat: fprintf(out_, "%d.0f", random()); break; in emitLiteral()
513 case kDouble: fprintf(out_, "%d.0", random()); break; in emitLiteral()
1252 int32_t random() { in random() function in __anon58250dea0111::JFuzz
/art/test/800-smali/smali/
Db_22411633_1.smali17 # Just some random work.
23 # Some more random work, technically dead, but reachable.
Db_22411633_3.smali21 # Just some random work.
Db_134061982.smali46 # Just some random call.
Db_134061983_2.smali46 # Just some random call.
/art/test/170-interface-init/src/
DMain.java23 static int x = (int)(10*Math.random()); // Suppress compile-time initialization.
/art/test/096-array-copy-concurrent-gc/src/
DMain.java49 String str = new String("Creating some garbage" + Math.random()); in allocateFourStrings()
/art/test/600-verifier-fails/
Dinfo.txt2 dexfuzz on the DEX files of fuzzingly random generated Java test.
/art/test/912-classes/src-art/art/
DTest912.java428 public static double doubleValue = Math.random(); // So it can't be compile-time initialized.
433 public static int intValue = ((int)Math.random())/0; // So it throws when initializing.
/art/tools/
Dbisect_profile.py29 import random
/art/test/449-checker-bce/src/
DMain.java717 java.util.Random random = new java.util.Random(); in loopPattern3() local
719 if (random.nextInt() % 1000 == 0 && i < array.length) { in loopPattern3()
/art/test/1954-pop-frame-jit/
Dexpected-stdout.jvm.txt61 Test stopped during random Suspend.
Dexpected-stdout.txt95 Test stopped during random Suspend.
/art/test/1956-pop-frame-jit-calling/
Dexpected-stdout.jvm.txt61 Test stopped during random Suspend.
Dexpected-stdout.txt95 Test stopped during random Suspend.
/art/test/1953-pop-frame/
Dexpected-stdout.txt61 Test stopped during random Suspend.
Dexpected-stdout.no-jvm.txt95 Test stopped during random Suspend.
/art/test/1955-pop-frame-jit-called/
Dexpected-stdout.jvm.txt61 Test stopped during random Suspend.
Dexpected-stdout.txt95 Test stopped during random Suspend.
/art/tools/dexfuzz/
DREADME92 MutateFail - because mutation is a random process, and has attempt thresholds to
/art/test/004-ThreadStress/src-art/
DMain.java279 Thread.sleep((int)(Math.random() * 50 + 50)); in perform()
/art/test/712-varhandle-invocations/util-src/
Dgenerate_java.py23 from random import Random
/art/libprofile/profile/
Dprofile_compilation_info_test.cc176 void SizeStressTest(bool random) { in SizeStressTest() argument
192 if (!random || rand() % 2 == 0) { in SizeStressTest()
201 if (!random || rand() % 2 == 0) { in SizeStressTest()
/art/test/1970-force-early-return-long/
Dexpected-stdout.txt141 Test stopped during random Suspend.

12