Home
last modified time | relevance | path

Searched refs:update (Results 1 – 25 of 32) sorted by relevance

12

/art/test/438-volatile/src/
DMain.java31 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/
DMain.java36 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/
DAsciiProgress.java48 update(progress + n); in advance()
52 public void update(long current) { in update() method in AsciiProgress
65 update(duration); in done()
/art/libartbase/base/
Dbit_vector.cc163 uint32_t update = existing | src->GetRawStorageWord(idx); in Union() local
164 if (existing != update) { in Union()
166 storage_[idx] = update; in Union()
198 uint32_t update = existing | in UnionIfNotIn() local
200 if (existing != update) { in UnionIfNotIn()
202 storage_[idx] = update; in UnionIfNotIn()
208 uint32_t update = existing | union_with->GetRawStorageWord(idx); in UnionIfNotIn() local
209 if (existing != update) { in UnionIfNotIn()
211 storage_[idx] = update; in UnionIfNotIn()
/art/tools/ahat/etc/
Dahat_api_msg.txt5 is intentional, run 'm ahat-update-api' to update the recorded API.
/art/test/531-regression-debugphi/smali/
DTestCase.smali23 # - 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/dexdump/
Drun-all-tests54 --update)
70 --update Update reference outputs
/art/test/960-default-smali/
Dinfo.txt16 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/test/956-methodhandles/src/
DMain.java1161 public String update(Float f0, Float... floats) { in update() method in Main.BaseVariableArityTester
1171 public VariableArityTester(boolean... booleans) { update(booleans); } in VariableArityTester()
1172 public VariableArityTester(byte... bytes) { update(bytes); } in VariableArityTester()
1173 public VariableArityTester(char... chars) { update(chars); } in VariableArityTester()
1174 public VariableArityTester(short... shorts) { update(shorts); } in VariableArityTester()
1175 public VariableArityTester(int... ints) { update(ints); } in VariableArityTester()
1176 public VariableArityTester(long... longs) { update(longs); } in VariableArityTester()
1177 public VariableArityTester(float... floats) { update(floats); } in VariableArityTester()
1178 public VariableArityTester(double... doubles) { update(doubles); } in VariableArityTester()
1179 public VariableArityTester(Float f0, Float... floats) { update(f0, floats); } in VariableArityTester()
[all …]
/art/tools/ahat/src/main/com/android/ahat/progress/
DProgress.java58 void update(long current); in update() method
DNullProgress.java26 @Override public void update(long current) { } in update() method in NullProgress
/art/test/613-inlining-dex-cache/
Dinfo.txt2 wrongly update the dex cache of a class loader.
/art/test/612-jit-dex-cache/
Dinfo.txt2 wrongly update the dex cache of a class loader.
/art/test/523-checker-can-throw-regression/
Dinfo.txt2 but would not update information about which blocks throw.
/art/test/694-clinit-jit/
Dinfo.txt2 update the entrypoint of a method of class still being
/art/test/485-checker-dce-loop-update/
Dinfo.txt1 Tests loop information update after DCE because block removal can disconnect loops, leaving other
/art/test/1962-multi-thread-events/
Dinfo.txt3 Due to a mistake in the single-thread deopt CL we would incorrectly only update a threads
/art/test/939-hello-transformation-bcp/
Dinfo.txt4 changing. If this classes definition changes we will need to update this class
/art/compiler/optimizing/
Dinduction_var_analysis.cc425 InductionInfo* update = TransferPhi(loop, phi, /*input_index*/ 1, /*adjust_input_size*/ 0); in ClassifyNonTrivial() local
426 if (update != nullptr) { in ClassifyNonTrivial()
430 update, in ClassifyNonTrivial()
441 InductionInfo* update = nullptr; in ClassifyNonTrivial() local
443 update = SolvePhiAllInputs(loop, phi, instruction); in ClassifyNonTrivial()
445 update = SolveAddSub( in ClassifyNonTrivial()
448 update = SolveAddSub( in ClassifyNonTrivial()
451 update = SolveOp( in ClassifyNonTrivial()
454 update = SolveOp( in ClassifyNonTrivial()
457 update = SolveOp( in ClassifyNonTrivial()
[all …]
/art/test/1959-redefine-object-instrument/
Dinfo.txt4 Redefining a class does not update the instrumentation stack of a thread.
/art/tools/dexfuzz/src/dexfuzz/listeners/
DUniqueProgramTrackerListener.java93 digest.update(buf); in getMD5SumOfProgram()
106 digest.update(output.getBytes()); in getMD5SumOfOutput()
/art/test/980-redefine-object/
Dinfo.txt23 update the expected.txt file.
/art/test/testrunner/
Drun_build_test_target.py64 os.environ.update(custom_env)
Dtestrunner.py892 os.environ.update(build_target['env'])
995 env.EXTRA_DISABLED_TESTS.update(set(options['skips']))
/art/test/1940-ddms-ext/src-art/art/
DTest1940.java68 a.update(req.data, req.offset, req.length); in handleChunk()

12