Searched refs:bin (Results 1 - 9 of 9) sorted by relevance

/art/test/304-method-tracing/
H A Drun0 #!/bin/bash
18 exec ${RUN} "$@" --runtime-option -Xmethod-trace --runtime-option -Xmethod-trace-file:${DEX_LOCATION}/trace.bin
/art/tools/
H A Drun-jdwp-tests.sh0 #!/bin/bash
43 art="/data/local/tmp/system/bin/art"
44 art_debugee="sh /data/local/tmp/system/bin/art"
65 art="bash ${OUT_DIR-out}/host/linux-x86/bin/art"
66 art_debugee="bash ${OUT_DIR-out}/host/linux-x86/bin/art"
137 pkill -9 -f /bin/dalvikvm
139 adb shell pkill -9 -f /bin/dalvikvm
/art/test/dexdump/
H A Drun-all-tests0 #!/bin/bash
21 newProg=`/bin/ls -ld "${prog}"`
41 DEXD="${ANDROID_HOST_OUT}/bin/dexdump2"
46 DEXL="${ANDROID_HOST_OUT}/bin/dexlist"
/art/compiler/optimizing/
H A Dpc_relative_fixups_x86.cc92 void BinaryFP(HBinaryOperation* bin) { argument
93 HConstant* rhs = bin->InputAt(1)->AsConstant();
95 ReplaceInput(bin, rhs, 1, false);
/art/test/
H A Drun-all-tests0 #!/bin/bash
21 newProg=`/bin/ls -ld "${prog}"`
H A Drun-test0 #!/bin/bash
22 newProg=`/bin/ls -ld "${prog}"`
141 export JAVA="${JAVA_HOME}/bin/java"
142 export JAVAC="${JAVA_HOME}/bin/javac -g"
403 run_args="${run_args} --runtime-option -Xmethod-trace-file:${DEX_LOCATION}/trace.bin"
H A DAndroid.run-test.mk264 ifeq ($(wildcard /usr/bin/python3),)
/art/compiler/
H A Dimage_writer.cc156 // bin size sums being calculated.
341 // The object is already deflated from when we set the bin slot. Just overwrite the lock word.
368 // Will also return true if the bin slot was assigned since we are reusing the lock word.
497 // Likely-to-dirty objects get packed together into the same bin so that
503 Bin bin = kBinRegular; local
508 // Changing the bin of an object is purely a memory-use tuning.
514 // * Dex cache arrays are stored in a special bin. The arrays for each dex cache have
523 // so bin them separately
534 // We assume that "regular" bin objects are highly unlikely to become dirtied,
538 bin
2330 BinSlot(Bin bin, uint32_t index) argument
[all...]
H A Dimage_writer.h189 friend std::ostream& operator<<(std::ostream& stream, const Bin& bin);
227 // We use the lock word to store the bin # and bin index of the object in the image.
233 BinSlot(Bin bin, uint32_t index);
235 // The bin an object belongs to, i.e. regular, class/verified, class/initialized, etc.
237 // The offset in bytes from the beginning of the bin. Aligned to object size.
298 size_t bin_slot_sizes_[kBinSize] = {}; // Number of bytes in a bin.
300 size_t bin_slot_count_[kBinSize] = {}; // Number of objects in a bin.
432 // Calculate the sum total of the bin slot sizes in [0, up_to). Defaults to all bins.

Completed in 111 milliseconds