Searched refs:all (Results 1 - 25 of 27) sorted by relevance

12

/art/runtime/interpreter/mterp/x86/
H A Dop_const.S2 movl 2(rPC), %eax # grab all 32 bits at once
/art/runtime/interpreter/mterp/x86_64/
H A Dop_const.S2 movl 2(rPC), %eax # grab all 32 bits at once
/art/test/596-monitor-inflation/src-art/
H A DMain.java23 IdentityHashMap<Object, Integer> all = new IdentityHashMap();
28 all.put(obj, obj.hashCode());
57 for (Object obj: all.keySet()) {
59 if (obj.hashCode() != all.get(obj)) {
64 for (Object obj: all.keySet()) {
67 if (obj.hashCode() != all.get(obj)) {
/art/build/
H A DAndroid.cpplint.mk30 # 1) Get list of all .h & .cc files in the art directory.
32 ART_CPPLINT_SRC := $(addprefix $(LOCAL_PATH)/, $(call all-subdir-named-files,*.h) $(call all-subdir-named-files,*$(ART_CPP_EXTENSION)))
34 # 1) Get list of all CPPLINT.cfg files in the art directory.
36 ART_CPPLINT_CFG := $(addprefix $(LOCAL_PATH)/, $(call all-subdir-named-files,CPPLINT.cfg))
43 # "mm cpplint-art-all" to manually execute cpplint.py on all files (very slow).
44 .PHONY: cpplint-art-all
45 cpplint-art-all:
50 # Build up the list of all target
[all...]
H A DAndroid.common_test.mk48 # ART_TEST_PREREQ_FINISHED as one of their actions, which expects *all* prerequisites *not* to fail.
126 LOCAL_SRC_FILES := $(call all-java-files-under, $(2))
143 LOCAL_SRC_FILES := $(call all-java-files-under, $(2))
/art/tools/ahat/src/main/com/android/ahat/
H A DSubsetSelector.java82 // (showing X of Y - show none - show less - show more - show all)
84 int all = mElements.size();
85 if (all > kDefaultShown) {
87 menu.appendFormat("(%d of %d elements shown - ", mLimit, all);
97 if (mLimit < all) {
98 int more = Math.min(mLimit + kIncrAmount, all);
101 menu.appendLink(mQuery.with(mId, all), DocString.text("show all"));
104 menu.append("show more - show all)");
/art/tools/
H A Dsymbolize.sh51 # Search in all of /data on device.
52 function all() { function
62 # No further arguments, iterate over all oat files on device.
63 all
/art/test/062-character-encodings/src/
H A DMain.java17 SortedMap<String, Charset> all = Charset.availableCharsets();
19 for (Map.Entry<String, Charset> e : all.entrySet()) {
/art/tools/dexfuzz/
H A DAndroid.mk21 LOCAL_SRC_FILES := $(call all-java-files-under, src)
/art/compiler/optimizing/
H A Dside_effects_test.cc55 SideEffects all = SideEffects::All(); local
56 EXPECT_TRUE(all.MayDependOn(write));
57 EXPECT_FALSE(write.MayDependOn(all));
58 EXPECT_FALSE(all.MayDependOn(read));
59 EXPECT_TRUE(read.MayDependOn(all));
90 SideEffects all = SideEffects::All(); local
91 EXPECT_TRUE(all.DoesAnyWrite());
92 EXPECT_TRUE(all.DoesAnyRead());
93 EXPECT_FALSE(all.DoesNothing());
94 EXPECT_TRUE(all
[all...]
H A Dregister_allocator_graph_color.cc495 // Invalidate all coalesce opportunities this node has, so that it (and possibly its neighbors)
668 // (4) Prune all uncolored nodes from interference graph.
799 // By blocking all registers at the top of each catch block or irreducible loop, we force
1294 // corresponding to an interval. Note that not all intervals are in this map, notably the parents
1467 // and all others as high degree nodes. The distinction is important: low degree nodes are
1626 // If all adjacent nodes of `from` are "ok", then we can conservatively merge with `into`.
1669 // we should not have counted it at all. (This extends the textbook Briggs coalescing test,
1786 // Note that CTZ is undefined if all bits are 0, so we special-case it.
1787 return conflict_mask.all() ? conflict_mask.size() : CTZ(~conflict_mask.to_ulong());
1905 // If unsuccessful, reset all registe
[all...]
/art/tools/amm/
H A DAndroid.mk20 LOCAL_SRC_FILES := $(call all-c-files-under, AmmTest/jni)
28 LOCAL_SRC_FILES := $(call all-java-files-under, AmmTest/src)
/art/test/906-iterate-heap/src/art/
H A DTest906.java42 int all = iterateThroughHeapCount(0, null, Integer.MAX_VALUE);
50 if (all != tagged + untagged) {
51 throw new IllegalStateException("Instances: " + all + " != " + tagged + " + " + untagged);
53 if (all != taggedClass + untaggedClass) {
54 throw new IllegalStateException("By class: " + all + " != " + taggedClass + " + " +
63 if (all == tagged) {
66 if (all == taggedClass) {
/art/tools/ahat/
H A DAndroid.mk23 LOCAL_SRC_FILES := $(call all-java-files-under, src/main)
26 LOCAL_JAVACFLAGS := -Xdoclint:all/protected
45 LOCAL_SRC_FILES := $(call all-java-files-under, src/main)
98 LOCAL_SRC_FILES := $(call all-java-files-under, src/test-dump)
150 LOCAL_SRC_FILES := $(call all-java-files-under, src/test)
/art/runtime/verifier/
H A Dreg_type_test.cc672 // * all of category-1 primitive types, including constants.
815 std::vector<const RegType*> all; local
816 all.insert(all.end(), uninitialized_types.begin(), uninitialized_types.end());
817 all.insert(all.end(), uninit_unresolved_types.begin(), uninit_unresolved_types.end());
818 all.insert(all.end(), all_minus_uninit.begin(), all_minus_uninit.end());
819 all.push_back(&int_type);
831 for (auto r : all) {
[all...]
/art/test/
H A DAndroid.run-test.mk36 # We need dex2oat and dalvikvm on the target as well as the core images (all images as we sync
109 # Sync test files to the target, depends upon all things that must be pushed
/art/tools/runtime_memusage/
H A Dsymbol_trace_info.py97 """Prints details of all categories."""
123 all(cat_name not in trace
247 # Contains a list of starting address of all dex files to calculate dex
/art/test/961-default-iface-resolution-gen/util-src/
H A Dgenerate_java.py49 all the test functions we have.
192 Step through all interfaces implemented transitively by this class
204 if all(map(lambda j: i not in j.get_super_types(), all_ifaces)):
247 Returns a set of all the supertypes of this interface
307 Return all legal interface trees
311 Does depth first traversal of all the interfaces in the list.
351 Creates all the objects representing the files in this test. They just need to
/art/test/970-iface-super-resolution-gen/util-src/
H A Dgenerate_smali.py46 all the test functions we have.
497 if all(map(lambda j: i not in j.get_super_types(), all_ifaces)):
503 Returns a set of all the supertypes of this interface
539 Yields all the interfaces transitively implemented by the set in
557 Yield all the test classes with the different interface trees
569 Yield all the interface trees up to 'num' depth.
589 Creates all the objects representing the files in this test. They just need to
/art/compiler/utils/
H A Dintrusive_forward_list_test.cc517 // Move all but the first element to ref2/ifl2.
581 auto all = [](ValueType value ATTRIBUTE_UNUSED) { return true; }; local
582 ref.remove_if(all);
583 ifl.remove_if(all);
/art/
H A DAndroid.mk111 # Sync test files to the target, depends upon all things that must be pushed to the target.
132 # "mm test-art" to build and run all tests on host and device
160 # "mm test-art-host" to build and run all host tests.
235 ANDROID_HOST_OUT=$(realpath $(HOST_OUT)) art/test/dexdump/run-all-tests
253 # "mm test-art-target" to build and run all target tests.
493 # Rules for building all dependencies for tests.
/art/runtime/arch/arm/
H A Dquick_entrypoints_arm.S320 SETUP_SAVE_ALL_CALLEE_SAVES_FRAME r0 @ save all registers as basis for long jump context
329 SETUP_SAVE_EVERYTHING_FRAME r0 @ save all registers as basis for long jump context
338 SETUP_SAVE_ALL_CALLEE_SAVES_FRAME r1 @ save all registers as basis for long jump context
347 SETUP_SAVE_EVERYTHING_FRAME r2 @ save all registers as basis for long jump context
448 @ save all registers as basis for long jump context
662 vldm r1, {s0-s31} @ load all fprs from argument fprs_
830 SETUP_SAVE_ALL_CALLEE_SAVES_FRAME r2 @ save all registers as basis for long jump context
1330 // (because the initial state of TLAB buffers is all 0s/nulls).
1428 // The compiler generates 'dmb ishst' for all new-array insts.
1527 // the entrypoint once all backend
[all...]
/art/runtime/arch/arm64/
H A Dquick_entrypoints_arm64.S298 // For better performance, store d0 and d31 separately, so that all STPs are 16-byte aligned.
362 // For better performance, load d0 and d31 separately, so that all LDPs are 16-byte aligned.
477 SETUP_SAVE_ALL_CALLEE_SAVES_FRAME // save all registers as basis for long jump context
487 SETUP_SAVE_EVERYTHING_FRAME // save all registers as basis for long jump context
497 SETUP_SAVE_ALL_CALLEE_SAVES_FRAME // save all registers as basis for long jump context.
507 SETUP_SAVE_EVERYTHING_FRAME // save all registers as basis for long jump context
534 // Save all registers as basis for long jump context.
833 cmp x15, # 8*12 // Skip this load if all registers full.
843 cmp x15, # 8*12 // Skip this load if all registers full.
853 cmp x8, # 6*12 // Skip this load if all register
[all...]
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.S2292 # This will create a new save-all frame, required by the runtime.
2432 * distance) is 32-bit. Also, Dalvik requires us to ignore all but the low
2460 * distance) is 32-bit. Also, Dalvik requires us to ignore all but the low
2488 * distance) is 32-bit. Also, Dalvik requires us to ignore all but the low
2676 * `reg`, saving and restoring all caller-save registers.
2695 // and the "forwarding address" state having all bits set.
3068 // and the "forwarding address" state having all bits set.
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S2166 # This will create a new save-all frame, required by the runtime.
2459 * `reg`, saving and restoring all caller-save registers.
2477 // and the "forwarding address" state having all bits set.
2844 // and the "forwarding address" state having all bits set.

Completed in 2538 milliseconds

12