Home
last modified time | relevance | path

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

/art/runtime/interpreter/mterp/mips/
Dheader.S626 #define LOAD_RB_OFF(rd, rbase, off) lw rd, off(rbase) argument
627 #define STORE_RB_OFF(rd, rbase, off) sw rd, off(rbase) argument
629 #define STORE64_off(rlo, rhi, rbase, off) \ argument
630 sw rlo, off(rbase); \
631 sw rhi, (off+4)(rbase)
632 #define LOAD64_off(rlo, rhi, rbase, off) \ argument
633 lw rlo, off(rbase); \
634 lw rhi, (off+4)(rbase)
640 #define STORE64_off_F(rlo, rhi, rbase, off) \ argument
641 s.s rlo, off(rbase); \
[all …]
Dop_fill_array_data.S8 EAS1(a1, rPC, a1) # a1 <- PC + BBBBbbbb*2 (array data off.)
/art/runtime/base/unix_file/
Dfd_file.cc305 off_t off = static_cast<off_t>(offset); in Copy() local
307 if (offset < 0 || static_cast<int64_t>(off) != offset || in Copy()
309 sz > std::numeric_limits<off_t>::max() - off) { in Copy()
318 off_t end = off + sz; in Copy()
319 while (off != end) { in Copy()
321 sendfile(Fd(), input_file->Fd(), &off, end - off)); in Copy()
328 if (lseek(input_file->Fd(), off, SEEK_SET) != off) { in Copy()
/art/runtime/interpreter/mterp/mips64/
Dop_fill_array_data.S9 dlsa a1, a1, rPC, 1 # a1 <- PC + BBBBbbbb*2 (array data off.)
/art/runtime/interpreter/mterp/arm/
Dop_fill_array_data.S8 add r1, rPC, r1, lsl #1 @ r1<- PC + BBBBbbbb*2 (array data off.)
/art/test/044-proxy/src/
DBasicTest.java143 public int trapezoid(int x, double off, int y); in trapezoid() argument
189 public int trapezoid(int x, double off, int y) { in trapezoid() argument
190 System.out.println("--- trap " + x + "," + y + "," + off); in trapezoid()
/art/patchoat/
Dpatchoat.cc61 uint64_t off = 0; in GetOatHeader() local
62 if (!elf_file->GetSectionOffsetAndSize(".rodata", &off, nullptr)) { in GetOatHeader()
66 OatHeader* oat_header = reinterpret_cast<OatHeader*>(elf_file->Begin() + off); in GetOatHeader()
628 MemberOffset off, in operator ()() argument
630 mirror::Object* referent = obj->GetFieldObject<mirror::Object, kVerifyNone>(off); in operator ()()
632 copy_->SetFieldObjectWithoutWriteBarrier<false, true, kVerifyNone>(off, moved_object); in operator ()()
637 MemberOffset off = mirror::Reference::ReferentOffset(); in operator ()() local
642 copy_->SetFieldObjectWithoutWriteBarrier<false, true, kVerifyNone>(off, moved_object); in operator ()()
Dpatchoat.h156 void operator() (ObjPtr<mirror::Object> obj, MemberOffset off, bool b) const
/art/runtime/
Doat.cc379 void OatHeader::SetImagePatchDelta(int32_t off) { in SetImagePatchDelta() argument
381 CHECK_ALIGNED(off, kPageSize); in SetImagePatchDelta()
382 image_patch_delta_ = off; in SetImagePatchDelta()
Doat.h99 void SetImagePatchDelta(int32_t off);
/art/runtime/interpreter/mterp/out/
Dmterp_mips.S633 #define LOAD_RB_OFF(rd, rbase, off) lw rd, off(rbase) argument
634 #define STORE_RB_OFF(rd, rbase, off) sw rd, off(rbase) argument
636 #define STORE64_off(rlo, rhi, rbase, off) \ argument
637 sw rlo, off(rbase); \
638 sw rhi, (off+4)(rbase)
639 #define LOAD64_off(rlo, rhi, rbase, off) \ argument
640 lw rlo, off(rbase); \
641 lw rhi, (off+4)(rbase)
647 #define STORE64_off_F(rlo, rhi, rbase, off) \ argument
648 s.s rlo, off(rbase); \
[all …]
Dmterp_mips64.S1092 dlsa a1, a1, rPC, 1 # a1 <- PC + BBBBbbbb*2 (array data off.)
Dmterp_arm.S1107 add r1, rPC, r1, lsl #1 @ r1<- PC + BBBBbbbb*2 (array data off.)
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S1070 # pop a4, a5, s1(rSELF), s8, ra off of the stack
1172 # pop a4, a5, s0(rSUSPEND), s1(rSELF), s8, ra off of the stack
/art/compiler/optimizing/
Dcode_generator_mips.cc1490 int32_t off = source.GetStackIndex(); in MoveLocation() local
1492 __ LoadFromOffset(kLoadDoubleword, r, SP, off); in MoveLocation()