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

/art/compiler/
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
66 UniquePtr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));
67 EXPECT_TRUE(in.get() != NULL);
68 std::vector<uint8_t> actual(in->GetLength());
69 bool readSuccess = in->ReadFully(&actual[0], actual.size());
81 UniquePtr<File> in(OS::OpenFileForReading(tmp.GetFilename().c_str()));
82 EXPECT_TRUE(in.get() != NULL);
83 std::vector<uint8_t> actual(in->GetLength());
84 bool readSuccess = in
[all...]
/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
98 for test_name in *; do
111 for pid in ${test_pids[@]}; do
124 for i in $failed_test_names; do
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
32 mov r12, r0 @ save result in r12
H A Dquick_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
205 * NOTE: "this" is first visible argument of the target, and so can be found in arg1/r1.
207 * The helper will attempt to locate the target and return a 64-bit result in r0/r1 consisting
208 * of the target Method* in r0 and method->code_ in r1.
210 * If unsuccessful, the helper will return NULL/NULL. There will bea pending exception in the
219 SETUP_REF_AND_ARGS_CALLEE_SAVE_FRAME @ save callee saves in case allocation triggers GC
251 * r2 = size of argument array in bytes
271 add r5, r2, #16 @ create space for method pointer in fram
[all...]
H A Dportable_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
24 * r2 = size of argument array in bytes
44 add r5, r2, #16 @ create space for method pointer in frame
69 @ TODO: just save the registers that are needed in artPortableProxyInvokeHandler.
101 @ TODO: just save the registers that are needed in artPortableResolutionTrampoline.
124 ldr r0, [sp, #0] @ load resolved method in r0
143 @ TODO: just save the registers that are needed in artPortableToInterpreterBridge.
/art/runtime/arch/mips/
H A Dquick_entrypoints_mips.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
350 * NOTE: "this" is first visable argument of the target, and so can be found in arg1/$a1.
352 * The helper will attempt to locate the target and return a 64-bit result in $v0/$v1 consisting
353 * of the target Method* in $v0 and method->code_ in $v1.
355 * If unsuccessful, the helper will return NULL/NULL. There will be a pending exception in the
365 SETUP_REF_AND_ARGS_CALLEE_SAVE_FRAME # save callee saves in case allocation triggers GC
401 * a2 = size of argument array in bytes
422 move $fp, $sp # save sp in f
[all...]
H A Djni_entrypoints_mips.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
50 move $t9, $v0 # put method code result in $t9
/art/compiler/sea_ir/ir/
H A Dsea.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
275 // Performs the renaming phase in traditional SSA transformations.
291 // The map @block maps registers to the blocks in which they are defined.
294 // is in a different block than the corresponding definition.
331 // Check that the dominance frontier element is in the worklist already
343 // (This corresponds to the renaming phase in traditional SSA transformations.
351 // Rename phi nodes defined in the current region.
379 // Fill in uses of phi functions in CF
603 Create(const art::Instruction* in) argument
[all...]
H A Dinstruction_nodes.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
35 // This class represents an instruction in SEA IR.
41 static std::vector<sea_ir::InstructionNode*> Create(const art::Instruction* in);
44 DCHECK(NULL != instruction_) << "Tried to access NULL instruction in an InstructionNode.";
60 << " used in instruction " << Id() << " not found.";
97 explicit InstructionNode(const art::Instruction* in): argument
98 SeaNode(), instruction_(in), used_in_(), de_def_(false), region_(NULL) { }
/art/
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
317 @echo Output in /tmp/core.host.oatdump.txt
324 @echo Output in /tmp/core.target.oatdump.txt
331 @echo Output in /tmp/boot.oatdump.txt
338 @echo Output in /tmp/Calculator.oatdump.txt
/art/runtime/
H A Dzip_archive.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
75 LOG(WARNING) << "Zip: bad LFH offset in zip";
106 LOG(WARNING) << "Zip: bad data offset " << data_offset << " in zip";
113 LOG(WARNING) << "Zip: bad compressed length in zip "
121 LOG(WARNING) << "Zip: bad uncompressed length in zip "
130 static bool CopyFdToMemory(uint8_t* begin, size_t size, int in, size_t count) { argument
135 ssize_t actual = TEMP_FAILURE_RETRY(read(in, &buf[0], bytes_to_read));
175 int in, size_t uncompressed_length, size_t compressed_length) {
204 ssize_t actual = TEMP_FAILURE_RETRY(read(in, read_bu
174 InflateToMemory(uint8_t* begin, size_t size, int in, size_t uncompressed_length, size_t compressed_length) argument
[all...]
H A Dutils_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
338 void CheckGetDalvikCacheFilenameOrDie(const char* in, const char* out) { argument
342 EXPECT_STREQ(expected.c_str(), GetDalvikCacheFilenameOrDie(in).c_str());
/art/dex2oat/
H A Ddex2oat.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
110 UsageError(" --image-classes=<classname-file>: specifies classes to include in an image.");
178 std::ifstream::in));
402 static bool ParseInt(const char* in, int* out) { argument
404 int result = strtol(in, &end, 10);
405 if (in == end || *end != '\0') {
437 // that result in a deadlock.
492 // TODO: Remove when we switch to LOG when we can guarantee it won't prevent shutdown in error
546 // When setting timeouts, keep in min
[all...]
/art/runtime/jdwp/
H A Djdwp_socket.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
20 #include <netinet/in.h>
/art/jdwpspy/
H A DNet.cpp15 #include <netinet/in.h>
415 * Figure out if we have a full packet in the buffer.
552 * Handle incoming data. If we have a full packet in the buffer, process it.

Completed in 2430 milliseconds