Home
last modified time | relevance | path

Searched refs:int_offset_ (Results 1 – 3 of 3) sorted by relevance

/frameworks/libs/binary_translation/calling_conventions/include/berberis/calling_conventions/
Dcalling_conventions_riscv64.h51 CallingConventions(StackOnly) : int_offset_(kMaxIntOffset), fp_offset_(kMaxFpOffset) {} in CallingConventions()
58 if (int_offset_ < kMaxIntOffset) { in GetNextIntArgLoc()
60 ArgLocation loc{kArgLocationInt, int_offset_}; in GetNextIntArgLoc()
61 ++int_offset_; in GetNextIntArgLoc()
122 unsigned int_offset_ = 0; variable
Dcalling_conventions_arm64.h45 : int_offset_(int_offset), simd_offset_(simd_offset) {} in CallingConventions()
54 unsigned aligned_int_offset = AlignUp(int_offset_, alignment_in_regs); in GetNextIntArgLoc()
59 int_offset_ = aligned_int_offset + size_in_regs; in GetNextIntArgLoc()
65 int_offset_ = kMaxIntOffset; in GetNextIntArgLoc()
116 unsigned int_offset_ = 0; variable
Dcalling_conventions_x86_64.h51 if (int_offset_ + size_in_regs <= kMaxIntOffset) { in GetNextIntArgLoc()
52 ArgLocation loc{kArgLocationInt, int_offset_}; in GetNextIntArgLoc()
53 int_offset_ += size_in_regs; in GetNextIntArgLoc()
109 unsigned int_offset_ = 0; variable