/art/tools/jfuzz/ |
D | README.md | 4 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
|
D | jfuzz.cc | 510 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/ |
D | b_22411633_1.smali | 17 # Just some random work. 23 # Some more random work, technically dead, but reachable.
|
D | b_22411633_3.smali | 21 # Just some random work.
|
D | b_134061982.smali | 46 # Just some random call.
|
D | b_134061983_2.smali | 46 # Just some random call.
|
/art/test/170-interface-init/src/ |
D | Main.java | 23 static int x = (int)(10*Math.random()); // Suppress compile-time initialization.
|
/art/test/096-array-copy-concurrent-gc/src/ |
D | Main.java | 49 String str = new String("Creating some garbage" + Math.random()); in allocateFourStrings()
|
/art/test/600-verifier-fails/ |
D | info.txt | 2 dexfuzz on the DEX files of fuzzingly random generated Java test.
|
/art/test/912-classes/src-art/art/ |
D | Test912.java | 428 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/ |
D | bisect_profile.py | 29 import random
|
/art/test/449-checker-bce/src/ |
D | Main.java | 717 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/ |
D | expected-stdout.jvm.txt | 61 Test stopped during random Suspend.
|
D | expected-stdout.txt | 95 Test stopped during random Suspend.
|
/art/test/1956-pop-frame-jit-calling/ |
D | expected-stdout.jvm.txt | 61 Test stopped during random Suspend.
|
D | expected-stdout.txt | 95 Test stopped during random Suspend.
|
/art/test/1953-pop-frame/ |
D | expected-stdout.txt | 61 Test stopped during random Suspend.
|
D | expected-stdout.no-jvm.txt | 95 Test stopped during random Suspend.
|
/art/test/1955-pop-frame-jit-called/ |
D | expected-stdout.jvm.txt | 61 Test stopped during random Suspend.
|
D | expected-stdout.txt | 95 Test stopped during random Suspend.
|
/art/tools/dexfuzz/ |
D | README | 92 MutateFail - because mutation is a random process, and has attempt thresholds to
|
/art/test/004-ThreadStress/src-art/ |
D | Main.java | 279 Thread.sleep((int)(Math.random() * 50 + 50)); in perform()
|
/art/test/712-varhandle-invocations/util-src/ |
D | generate_java.py | 23 from random import Random
|
/art/libprofile/profile/ |
D | profile_compilation_info_test.cc | 176 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/ |
D | expected-stdout.txt | 141 Test stopped during random Suspend.
|