Home | History | Annotate | Download | only in libdw

Lines Matching refs:dbg

147 # define read_2ubyte_unaligned(Dbg, Addr) \
148 (unlikely ((Dbg)->other_byte_order) \
151 # define read_2sbyte_unaligned(Dbg, Addr) \
152 (unlikely ((Dbg)->other_byte_order) \
158 # define read_4ubyte_unaligned(Dbg, Addr) \
159 (unlikely ((Dbg)->other_byte_order) \
162 # define read_4sbyte_unaligned(Dbg, Addr) \
163 (unlikely ((Dbg)->other_byte_order) \
167 # define read_8ubyte_unaligned(Dbg, Addr) \
168 (unlikely ((Dbg)->other_byte_order) \
171 # define read_8sbyte_unaligned(Dbg, Addr) \
172 (unlikely ((Dbg)->other_byte_order) \
190 read_2ubyte_unaligned (Dwarf *dbg, const void *p)
193 if (dbg->other_byte_order)
198 read_2sbyte_unaligned (Dwarf *dbg, const void *p)
201 if (dbg->other_byte_order)
213 read_4ubyte_unaligned (Dwarf *dbg, const void *p)
216 if (dbg->other_byte_order)
221 read_4sbyte_unaligned (Dwarf *dbg, const void *p)
224 if (dbg->other_byte_order)
230 read_8ubyte_unaligned (Dwarf *dbg, const void *p)
233 if (dbg->other_byte_order)
238 read_8sbyte_unaligned (Dwarf *dbg, const void *p)
241 if (dbg->other_byte_order)
249 #define read_2ubyte_unaligned_inc(Dbg, Addr) \
250 ({ uint16_t t_ = read_2ubyte_unaligned (Dbg, Addr); \
253 #define read_2sbyte_unaligned_inc(Dbg, Addr) \
254 ({ int16_t t_ = read_2sbyte_unaligned (Dbg, Addr); \
258 #define read_4ubyte_unaligned_inc(Dbg, Addr) \
259 ({ uint32_t t_ = read_4ubyte_unaligned (Dbg, Addr); \
262 #define read_4sbyte_unaligned_inc(Dbg, Addr) \
263 ({ int32_t t_ = read_4sbyte_unaligned (Dbg, Addr); \
267 #define read_8ubyte_unaligned_inc(Dbg, Addr) \
268 ({ uint64_t t_ = read_8ubyte_unaligned (Dbg, Addr); \
271 #define read_8sbyte_unaligned_inc(Dbg, Addr) \
272 ({ int64_t t_ = read_8sbyte_unaligned (Dbg, Addr); \