• Home
  • Raw
  • Download

Lines Matching refs:Dbg

168 # define read_2ubyte_unaligned(Dbg, Addr) \  argument
169 (unlikely ((Dbg)->other_byte_order) \
172 # define read_2sbyte_unaligned(Dbg, Addr) \ argument
173 (unlikely ((Dbg)->other_byte_order) \
179 # define read_4ubyte_unaligned(Dbg, Addr) \ argument
180 (unlikely ((Dbg)->other_byte_order) \
183 # define read_4sbyte_unaligned(Dbg, Addr) \ argument
184 (unlikely ((Dbg)->other_byte_order) \
190 # define read_8ubyte_unaligned(Dbg, Addr) \ argument
191 (unlikely ((Dbg)->other_byte_order) \
194 # define read_8sbyte_unaligned(Dbg, Addr) \ argument
195 (unlikely ((Dbg)->other_byte_order) \
212 # define read_2ubyte_unaligned(Dbg, Addr) \ argument
213 read_2ubyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
214 # define read_2sbyte_unaligned(Dbg, Addr) \ argument
215 read_2sbyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
216 # define read_4ubyte_unaligned(Dbg, Addr) \ argument
217 read_4ubyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
218 # define read_4sbyte_unaligned(Dbg, Addr) \ argument
219 read_4sbyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
220 # define read_8ubyte_unaligned(Dbg, Addr) \ argument
221 read_8ubyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
222 # define read_8sbyte_unaligned(Dbg, Addr) \ argument
223 read_8sbyte_unaligned_1 ((Dbg)->other_byte_order, (Addr))
291 #define read_2ubyte_unaligned_inc(Dbg, Addr) \ argument
292 ({ uint16_t t_ = read_2ubyte_unaligned (Dbg, Addr); \
295 #define read_2sbyte_unaligned_inc(Dbg, Addr) \ argument
296 ({ int16_t t_ = read_2sbyte_unaligned (Dbg, Addr); \
300 #define read_4ubyte_unaligned_inc(Dbg, Addr) \ argument
301 ({ uint32_t t_ = read_4ubyte_unaligned (Dbg, Addr); \
304 #define read_4sbyte_unaligned_inc(Dbg, Addr) \ argument
305 ({ int32_t t_ = read_4sbyte_unaligned (Dbg, Addr); \
309 #define read_8ubyte_unaligned_inc(Dbg, Addr) \ argument
310 ({ uint64_t t_ = read_8ubyte_unaligned (Dbg, Addr); \
313 #define read_8sbyte_unaligned_inc(Dbg, Addr) \ argument
314 ({ int64_t t_ = read_8sbyte_unaligned (Dbg, Addr); \
365 #define read_3ubyte_unaligned_inc(Dbg, Addr) \ argument
366 ({ uint32_t t_ = read_2ubyte_unaligned (Dbg, Addr); \
370 #define read_addr_unaligned_inc(Nbytes, Dbg, Addr) \ argument
372 ((Nbytes) == 4 ? read_4ubyte_unaligned_inc (Dbg, Addr) \
373 : read_8ubyte_unaligned_inc (Dbg, Addr)))