/art/test/438-volatile/src/ |
D | Main.java | 31 public static long $opt$update(long a) { in $opt$update() 36 public static double $opt$update(double a) { in $opt$update() 42 if (value != $opt$update(value)) { in checkVolatileUpdate() 48 if (value != $opt$update(value)) { in checkVolatileUpdate()
|
/art/test/580-crc32/src/ |
D | Main.java | 36 crc32.update(value); in CRC32Byte() 43 crc32.update(value); in CRC32BytesUsingUpdateInt() 159 crc32.update(bytes, off, len); in CRC32ByteArray() 167 crc32.update(bytes); in CRC32ByteArray() 173 crc32.update(value); in CRC32ByteAndByteArray() 174 crc32.update(bytes); in CRC32ByteAndByteArray() 180 crc32.update(bytes); in CRC32ByteArrayAndByte() 181 crc32.update(value); in CRC32ByteArrayAndByte() 188 crc32.update(bytes, off, len); in CRC32ByteArrayThrowsAIOOBE() 198 crc32.update(null, 0, 0); in CRC32ByteArrayThrowsNPE() [all …]
|
/art/tools/ahat/src/main/com/android/ahat/ |
D | AsciiProgress.java | 48 update(progress + n); in advance() 52 public void update(long current) { in update() method in AsciiProgress 65 update(duration); in done()
|
/art/libartbase/base/ |
D | bit_vector.cc | 162 uint32_t update = existing | src->GetRawStorageWord(idx); in Union() local 163 if (existing != update) { in Union() 165 storage_[idx] = update; in Union() 197 uint32_t update = existing | in UnionIfNotIn() local 199 if (existing != update) { in UnionIfNotIn() 201 storage_[idx] = update; in UnionIfNotIn() 207 uint32_t update = existing | union_with->GetRawStorageWord(idx); in UnionIfNotIn() local 208 if (existing != update) { in UnionIfNotIn() 210 storage_[idx] = update; in UnionIfNotIn()
|
/art/tools/ahat/etc/ |
D | ahat_api_msg.txt | 5 is intentional, run 'm ahat-update-api' to update the recorded API.
|
/art/test/531-regression-debugphi/smali/ |
D | TestCase.smali | 23 # - update PrimVoid PhiA to PrimNot 24 # - update inputs of PrimNot PhiA 72 # - update inputs of PrimNot PhiB ; add PrimNot PhiA to worklist 73 # - update PhiC to PrimNot 75 # - PrimNot PhiA: update inputs, no equivalent created 76 # - PrimInt PhiA: update inputs, set to PrimNot, use instead of PrimNot PhiA
|
/art/test/960-default-smali/ |
D | info.txt | 16 To update the test files do the following steps: 19 …JAVA_HOME="/path/to/java-8-jdk" ../run-test --use-java-home --update --jvm --host 956-default-smali
|
/art/tools/ahat/src/main/com/android/ahat/progress/ |
D | Progress.java | 58 void update(long current); in update() method
|
D | NullProgress.java | 26 @Override public void update(long current) { } in update() method in NullProgress
|
/art/test/dexdump/ |
D | run-all-tests | 56 --update) 72 --update Update reference outputs
|
/art/test/612-jit-dex-cache/ |
D | info.txt | 2 wrongly update the dex cache of a class loader.
|
/art/test/613-inlining-dex-cache/ |
D | info.txt | 2 wrongly update the dex cache of a class loader.
|
/art/test/523-checker-can-throw-regression/ |
D | info.txt | 2 but would not update information about which blocks throw.
|
/art/test/694-clinit-jit/ |
D | info.txt | 2 update the entrypoint of a method of class still being
|
/art/test/956-methodhandles/src/ |
D | Main.java | 1234 public String update(Float f0, Float... floats) { in update() method in Main.BaseVariableArityTester 1244 public VariableArityTester(boolean... booleans) { update(booleans); } in VariableArityTester() 1245 public VariableArityTester(byte... bytes) { update(bytes); } in VariableArityTester() 1246 public VariableArityTester(char... chars) { update(chars); } in VariableArityTester() 1247 public VariableArityTester(short... shorts) { update(shorts); } in VariableArityTester() 1248 public VariableArityTester(int... ints) { update(ints); } in VariableArityTester() 1249 public VariableArityTester(long... longs) { update(longs); } in VariableArityTester() 1250 public VariableArityTester(float... floats) { update(floats); } in VariableArityTester() 1251 public VariableArityTester(double... doubles) { update(doubles); } in VariableArityTester() 1252 public VariableArityTester(Float f0, Float... floats) { update(f0, floats); } in VariableArityTester() [all …]
|
/art/test/485-checker-dce-loop-update/ |
D | info.txt | 1 Tests loop information update after DCE because block removal can disconnect loops, leaving other
|
/art/test/1962-multi-thread-events/ |
D | info.txt | 3 Due to a mistake in the single-thread deopt CL we would incorrectly only update a threads
|
/art/test/2005-pause-all-redefine-multithreaded/ |
D | info.txt | 4 doesn't cause problems. This also tests that we can update the newly created fields while the
|
/art/odrefresh/ |
D | README.md | 4 ART APEX update. It provides two key features:
|
/art/test/939-hello-transformation-bcp/ |
D | info.txt | 4 changing. If this classes definition changes we will need to update this class
|
/art/libartservice/service/ |
D | README.md | 101 - the device is on the first boot after an OTA update (Compilation reason: 103 - the device is on the first boot after a mainline update (Compilation reason: 104 `boot-after-mainline-update`) 115 ### On the very first boot / the first boot after an OTA update 117 On the very first boot / the first boot after an OTA update, ART Service only 121 an OTA update, ART Service only dexopts apps used within the last given number of 146 ### On the first boot after a mainline update 148 On the first boot after a mainline update, ART Service dexopts the primary dex
|
/art/test/1959-redefine-object-instrument/ |
D | info.txt | 4 Redefining a class does not update the instrumentation stack of a thread.
|
/art/dexopt_chroot_setup/ |
D | README.md | 5 the reboot after a Mainline update or an OTA update is downloaded, to support
|
/art/compiler/optimizing/ |
D | induction_var_analysis.cc | 482 InductionInfo* update = TransferPhi(loop, phi, /*input_index*/ 1, /*adjust_input_size*/ 0); in ClassifyNonTrivial() local 483 if (update != nullptr) { in ClassifyNonTrivial() 487 update, in ClassifyNonTrivial() 500 InductionInfo* update = nullptr; in ClassifyNonTrivial() local 502 update = SolvePhiAllInputs(loop, phi, instruction, cycle, type); in ClassifyNonTrivial() 504 update = SolveAddSub(loop, in ClassifyNonTrivial() 513 update = SolveAddSub(loop, in ClassifyNonTrivial() 522 update = SolveOp( in ClassifyNonTrivial() 525 update = SolveOp( in ClassifyNonTrivial() 528 update = SolveOp( in ClassifyNonTrivial() [all …]
|
/art/imgdiag/ |
D | dirty_image_objects.md | 1 # How to update dirty-image-objects 72 6. Reinstall ART APEX to update the boot image.
|