Searched refs:in (Results 1 - 25 of 75) sorted by relevance

123

/art/runtime/interpreter/mterp/
H A Drebuild.sh6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
18 # Rebuild for all known targets. Necessary until the stuff in "out" gets
23 for arch in arm x86 mips arm64 x86_64 mips64; do TARGET_ARCH_EXT=$arch make -f Makefile_mterp; done
/art/test/702-LargeBranchOffset/
H A Dbuild6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
21 cpp -P src/Main.java.in src/Main.java
/art/tools/golem/
H A Denv6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
30 # should run in the same context (e.g. it does not change arch or the OS it's built for).
67 for target in "${ALL_TARGETS[@]}"; do
73 # Check if $1 element is in array $2
76 for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done
102 case "$selected_target" in
H A Dbuild-target.sh6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
35 Creates the \$MACHINE_TYPE binaries in your \$OUT_DIR, and if --tarball was specified,
52 for config in "${ALL_CONFIGS[@]}"; do
63 # Check if $1 element is in array $2
66 for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done
144 # which won't be set in our env if neither we nor the user first executed
172 case "$1" in
241 case "$config" in
299 case "$config" in
[all...]
/art/tools/dmtracedump/
H A Ddumpdir.sh7 for F in $FILES
/art/tools/
H A Dextract-embedded-java6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
28 for f in `find "$1" -type f -name "*.smali" | xargs -n 1 -P 0 -i basename -s .smali \{\}`; do
H A Dsymbolize.sh5 # you may not use this file except in compliance with the License.
10 # Unless required by applicable law or agreed to in writing, software
46 # adb shell find seems to output in DOS format (CRLF), which messes up scripting
51 # Search in all of /data on device.
54 for FILE in $FILES ; do
H A Drun-libcore-tests.sh6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
37 for lib in $DEPS
86 # changes in case of failures.
/art/runtime/arch/mips64/
H A Dinstruction_set_features_mips64.cc5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
55 // Look in /proc/cpuinfo for features we need. Only use this when we can guarantee that
56 // the kernel puts the appropriate feature flags in here. Sometimes it doesn't.
59 std::ifstream in("/proc/cpuinfo");
60 if (!in.fail()) {
61 while (!in.eof()) {
63 std::getline(in, line);
64 if (!in.eof()) {
74 in
[all...]
H A Djni_entrypoints_mips64.S5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
49 .cpreturn # Restore gp from t8 in branch delay slot. gp is not used
50 # anymore, and t8 may be clobbered in artFindNativeMethod.
73 move $t9, $v0 # put method code result in $t9
/art/compiler/linker/
H A Doutput_stream_test.cc5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
71 std::unique_ptr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));
72 EXPECT_TRUE(in.get() != nullptr);
73 std::vector<uint8_t> actual(in->GetLength());
74 bool readSuccess = in->ReadFully(&actual[0], actual.size());
86 std::unique_ptr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));
87 EXPECT_TRUE(in.get() != nullptr);
88 std::vector<uint8_t> actual(in->GetLength());
89 bool readSuccess = in
[all...]
/art/oatdump/
H A DAndroid.mk5 # you may not use this file except in compliance with the License.
10 # Unless required by applicable law or agreed to in writing, software
39 @echo Output in $(ART_DUMP_OAT_PATH)/core.host.oatdump.txt
47 @echo Output in $(ART_DUMP_OAT_PATH)/core.target.$(TARGET_ARCH).oatdump.txt
56 @echo Output in $(ART_DUMP_OAT_PATH)/core.target.$(TARGET_2ND_ARCH).oatdump.txt
71 @echo Output in $(ART_DUMP_OAT_PATH)/boot.$(TARGET_ARCH).oatdump.txt
78 @echo Output in $(ART_DUMP_OAT_PATH)/boot.$(TARGET_2ND_ARCH).oatdump.txt
91 @echo Output in $(ART_DUMP_OAT_PATH)/Calculator.oatdump.txt
/art/tools/jfuzz/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/art/runtime/arch/x86_64/
H A Dinstruction_set_features_x86_64.h5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
57 // InstructionSetFeatures. This works around kernel bugs in AT_HWCAP and /proc/cpuinfo.
87 static X86_64FeaturesUniquePtr Convert(X86FeaturesUniquePtr&& in) { argument
88 return X86_64FeaturesUniquePtr(in.release()->AsX86_64InstructionSetFeatures());
/art/runtime/interpreter/mterp/arm/
H A Dbincmp.S12 FETCH_S rINST, 1 @ rINST<- branch offset, in code units
H A Dzcmp.S10 FETCH_S rINST, 1 @ rINST<- branch offset, in code units
/art/runtime/interpreter/mterp/mips/
H A Dbincmp.S12 FETCH_S(rINST, 1) # rINST<- branch offset, in code units
H A Dzcmp.S10 FETCH_S(rINST, 1) # rINST <- branch offset, in code units
/art/runtime/interpreter/mterp/mips64/
H A Dop_const_4.S3 seh a0, rINST # sign extend B in rINST
/art/test/
H A Drun-all-tests6 # you may not use this file except in compliance with the License.
11 # Unless required by applicable law or agreed to in writing, software
194 for test_name in *; do
212 for test_name in *; do
225 for pid in ${test_pids[@]}; do
239 for i in $failed_test_names; do
/art/runtime/verifier/
H A Dverifier_deps.cc5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
51 // which should be the one passed as `this` in this method.
171 // The main VerifierDeps is the one set in the compiler callbacks, which at the
205 // String is in the DEX file. Return its ID.
209 // String is not in the DEX file. Assign a new ID to it which is higher than
210 // the number of strings in the DEX file.
258 // is in the classpath.
273 // file was not registered as being compiled and we assume `klass` is in the
357 // If the destination is a direct interface of a class defined in th
561 DecodeUint32WithOverflowCheck(const uint8_t** in, const uint8_t* end) argument
568 Encode(uint16_t in) argument
571 Encode(uint32_t in) argument
574 Encode(dex::TypeIndex in) argument
577 Encode(dex::StringIndex in) argument
583 Decode(uint32_t in) argument
586 Decode(uint32_t in) argument
589 Decode(uint32_t in) argument
592 Decode(uint32_t in) argument
603 DecodeTuple(const uint8_t** in, const uint8_t* end, std::tuple<T1, T2>* t) argument
617 DecodeTuple(const uint8_t** in, const uint8_t* end, std::tuple<T1, T2, T3>* t) argument
642 DecodeSet(const uint8_t** in, const uint8_t* end, std::set<T>* set) argument
653 DecodeUint16Vector(const uint8_t** in, const uint8_t* end, std::vector<T>* vector) argument
676 DecodeStringVector(const uint8_t** in, const uint8_t* end, std::vector<std::string>* strings) argument
[all...]
/art/libart_fake/
H A DAndroid.mk4 # you may not use this file except in compliance with the License.
9 # Unless required by applicable law or agreed to in writing, software
/art/runtime/arch/arm/
H A Djni_entrypoints_arm.S5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
34 mov r12, r0 @ save result in r12
/art/runtime/interpreter/mterp/x86/
H A Dbindiv.S34 # Remainder in %ah, quotient in %al
H A Dop_mul_long_2addr.S15 CLEAR_WIDE_REF %eax # clear refs in advance
29 leal (%ecx,rIBASE), rIBASE # full result now in %edx:%eax

Completed in 1875 milliseconds

123