Lines Matching refs:offset

26 uint32_t ArmBaseRelativePatcher::ReserveSpace(uint32_t offset,  in ReserveSpace()  argument
29 return ReserveSpaceInternal(offset, compiled_method, method_ref, 0u); in ReserveSpace()
32 uint32_t ArmBaseRelativePatcher::ReserveSpaceEnd(uint32_t offset) { in ReserveSpaceEnd() argument
37 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); in ReserveSpaceEnd()
42 offset = CompiledMethod::AlignCode(aligned_offset + thunk_code_.size(), instruction_set_); in ReserveSpaceEnd()
44 return offset; in ReserveSpaceEnd()
47 uint32_t ArmBaseRelativePatcher::WriteThunks(OutputStream* out, uint32_t offset) { in WriteThunks() argument
49 return offset; in WriteThunks()
51 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); in WriteThunks()
54 uint32_t aligned_code_delta = aligned_offset - offset; in WriteThunks()
63 offset = CompiledMethod::AlignCode(thunk_end_offset, instruction_set_); in WriteThunks()
64 aligned_code_delta = offset - thunk_end_offset; in WriteThunks()
69 return offset; in WriteThunks()
83 uint32_t ArmBaseRelativePatcher::ReserveSpaceInternal(uint32_t offset, in ReserveSpaceInternal() argument
89 uint32_t quick_code_offset = compiled_method->AlignCode(offset) + sizeof(OatQuickMethodHeader); in ReserveSpaceInternal()
102 uint32_t thunk_location = compiled_method->AlignCode(offset); in ReserveSpaceInternal()
104 offset = CompiledMethod::AlignCode(thunk_location + thunk_code_.size(), instruction_set_); in ReserveSpaceInternal()
113 return offset; in ReserveSpaceInternal()