Searched defs:Absolute (Results 1 - 2 of 2) sorted by relevance

/art/compiler/utils/x86/
H A Dassembler_x86.h193 static Address Absolute(uintptr_t addr) { function in class:art::x86::Address
200 static Address Absolute(ThreadOffset32 addr) { function in class:art::x86::Address
201 return Absolute(addr.Int32Value());
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.h250 // If no_rip is true then the Absolute address isn't RIP relative.
251 static Address Absolute(uintptr_t addr, bool no_rip = false) { function in class:art::x86_64::Address
277 // If no_rip is true then the Absolute address isn't RIP relative.
278 static Address Absolute(ThreadOffset64 addr, bool no_rip = false) { function in class:art::x86_64::Address
279 return Absolute(addr.Int32Value(), no_rip);

Completed in 40 milliseconds