Searched refs:offset (Results 1 – 2 of 2) sorted by relevance
495 static inline uint64_t x86_read_gs_offset64(uintptr_t offset) { in x86_read_gs_offset64() argument497 __asm__("movq %%gs:%1, %0" : "=r"(ret) : "m"(*(uint64_t*)(offset))); in x86_read_gs_offset64()505 static inline uint32_t x86_read_gs_offset32(uintptr_t offset) { in x86_read_gs_offset32() argument507 __asm__("movl %%gs:%1, %0" : "=r"(ret) : "m"(*(uint32_t*)(offset))); in x86_read_gs_offset32()518 static inline void *x86_read_gs_offset_ptr(uintptr_t offset) { in x86_read_gs_offset_ptr() argument519 return (void *)x86_read_gs_offset64(offset); in x86_read_gs_offset_ptr()521 static inline void x86_write_gs_offset_ptr(uintptr_t offset, void *val) { in x86_write_gs_offset_ptr() argument522 x86_write_gs_offset64(offset, (uint64_t)(val)); in x86_write_gs_offset_ptr()525 static inline void *x86_read_gs_offset_ptr(uintptr_t offset) { in x86_read_gs_offset_ptr() argument526 return (void *)x86_read_gs_offset32(offset); in x86_read_gs_offset_ptr()[all …]
83 .macro save_offset, offset84 sub lr, \offset135 .macro saveall_offset, offset136 sub lr, \offset
Completed in 6 milliseconds