Home
last modified time | relevance | path

Searched refs:tail (Results 1 – 15 of 15) sorted by relevance

/art/libdexfile/dex/
Dsignature.cc64 std::string_view tail(rhs); in operator ==() local
65 if (!StartsWith(tail, "(")) { in operator ==()
68 tail.remove_prefix(1); // "("; in operator ==()
73 if (!StartsWith(tail, param)) { in operator ==()
76 tail.remove_prefix(param.length()); in operator ==()
79 if (!StartsWith(tail, ")")) { in operator ==()
82 tail.remove_prefix(1); // ")"; in operator ==()
83 return tail == dex_file_->StringByTypeIdx(proto_id_->return_type_idx_); in operator ==()
/art/libartbase/base/
Ddata_hash.h72 const uint8_t *tail = reinterpret_cast<const uint8_t*>(data + nblocks * 4); in operator() local
77 k1 ^= tail[2] << 16; in operator()
80 k1 ^= tail[1] << 8; in operator()
83 k1 ^= tail[0]; in operator()
Dmalloc_arena_pool.cc58 size_t tail = overallocation - head; in MallocArena() local
60 MEMORY_TOOL_MAKE_NOACCESS(memory_ + size, tail); in MallocArena()
71 size_t tail = overallocation - head; in ~MallocArena() local
73 MEMORY_TOOL_MAKE_UNDEFINED(memory_ + size_, tail); in ~MallocArena()
Dscoped_arena_allocator.cc63 Arena* tail = top_arena_->next_; in AllocateFromNextArena() local
66 top_arena_->next_ = tail; in AllocateFromNextArena()
Dmem_map_test.cc489 MemMap tail = map.RemapAtEnd(map.Begin() + offset, in TEST_F() local
496 ASSERT_TRUE(tail.IsValid()) << error_msg; in TEST_F()
499 ASSERT_EQ(static_cast<size_t>(kPageSize), tail.Size()); in TEST_F()
500 ASSERT_EQ(tail.Begin(), map.Begin() + map.Size()); in TEST_F()
501 ASSERT_EQ(data[offset], *tail.Begin()); in TEST_F()
/art/test/149-suspend-all-stress/
Dcheck18 tail -n 1 "$2" | diff --strip-trailing-cr -q "$1" - >/dev/null
/art/test/693-vdex-inmem-loader-evict/src-secondary/
Dgen.sh45 checksum=`head -c 32 -z "$TMP/file${suffix}.dex" | tail -c 24 -z | base64`
/art/runtime/interpreter/mterp/arm/
Dfloating_point.S341 b __aeabi_d2lz @ tail call to convert double to long
382 b __aeabi_f2lz @ tail call to convert float to long
/art/runtime/arch/arm/
Djni_entrypoints_arm.S53 bx r12 @ if non-null, tail call to method's code
81 // If we're coming from JNI stub with tail call, it is LR. If we're coming from
Dquick_entrypoints_arm.S1569 bx r12 @ tail-call into actual code
/art/test/
Drun-test1079 diff --strip-trailing-cr -u "$expected" "$output" | tail -n 10000
1084 tail -n 3000 "$tmp_dir/$strace_output"
1090 …cho "ABI: 'x86_64'" | cat - "$output" | $ANDROID_BUILD_TOP/development/scripts/stack | tail -n 3000
/art/runtime/gc/allocator/
Drosalloc.h270 Slot* tail = kUseTail ? reinterpret_cast<Slot*>(tail_) : nullptr; in Verify() local
274 CHECK(tail == nullptr); in Verify()
279 CHECK(tail != nullptr); in Verify()
285 CHECK_EQ(slot, tail); in Verify()
/art/build/
DAndroid.gtest.mk242 { echo "ABI: 'x86_64'" | cat - $$<.tmp.out | development/scripts/stack | tail -n 3000 ; } ; \
/art/runtime/interpreter/mterp/x86_64/
Dmain.S421 pushq %rax # Return address for the tail call.
/art/runtime/interpreter/mterp/x86/
Dmain.S437 pushl %eax # Return address for the tail call.