Lines Matching refs:ptr
33 void hexdump_very_ex(const void *ptr,
37 void hexdump8_very_ex(const void *ptr,
48 static inline void hexdump_very_ex(const void *ptr, in hexdump_very_ex() argument
52 static inline void hexdump8_very_ex(const void *ptr, in hexdump8_very_ex() argument
59 static inline void hexdump_ex(const void *ptr, size_t len, uint64_t disp_addr_start) in hexdump_ex() argument
61 hexdump_very_ex(ptr, len, disp_addr_start, _printf); in hexdump_ex()
64 static inline void hexdump8_ex(const void *ptr, size_t len, uint64_t disp_addr_start) in hexdump8_ex() argument
66 hexdump8_very_ex(ptr, len, disp_addr_start, _printf); in hexdump8_ex()
69 static inline void hexdump(const void *ptr, size_t len) in hexdump() argument
71 hexdump_ex(ptr, len, (uint64_t)((addr_t)ptr)); in hexdump()
74 static inline void hexdump8(const void *ptr, size_t len) in hexdump8() argument
76 hexdump8_ex(ptr, len, (uint64_t)((addr_t)ptr)); in hexdump8()