• Home
  • Raw
  • Download

Lines Matching refs:buf

98 void mcf_pci_insb(u32 addr, u8 *buf, u32 len);
99 void mcf_pci_insw(u32 addr, u16 *buf, u32 len);
100 void mcf_pci_insl(u32 addr, u32 *buf, u32 len);
105 void mcf_pci_outsb(u32 addr, const u8 *buf, u32 len);
106 void mcf_pci_outsw(u32 addr, const u16 *buf, u32 len);
107 void mcf_pci_outsl(u32 addr, const u32 *buf, u32 len);
316 #define isa_insb(port, buf, nr) raw_insb(isa_itb(port), (u8 *)(buf), (nr)) argument
317 #define isa_outsb(port, buf, nr) raw_outsb(isa_itb(port), (u8 *)(buf), (nr)) argument
319 #define isa_insw(port, buf, nr) \ argument
320 (ISA_SEX ? raw_insw(isa_itw(port), (u16 *)(buf), (nr)) : \
321 raw_insw_swapw(isa_itw(port), (u16 *)(buf), (nr)))
323 #define isa_outsw(port, buf, nr) \ argument
324 (ISA_SEX ? raw_outsw(isa_itw(port), (u16 *)(buf), (nr)) : \
325 raw_outsw_swapw(isa_itw(port), (u16 *)(buf), (nr)))
327 #define isa_insl(port, buf, nr) \ argument
328 (ISA_SEX ? raw_insl(isa_itl(port), (u32 *)(buf), (nr)) : \
329 raw_insw_swapw(isa_itw(port), (u16 *)(buf), (nr)<<1))
331 #define isa_outsl(port, buf, nr) \ argument
332 (ISA_SEX ? raw_outsl(isa_itl(port), (u32 *)(buf), (nr)) : \
333 raw_outsw_swapw(isa_itw(port), (u16 *)(buf), (nr)<<1))
342 #define isa_rom_insb(port, buf, nr) raw_rom_insb(isa_itb(port), (u8 *)(buf), (nr)) argument
344 #define isa_rom_insw(port, buf, nr) \ argument
345 (ISA_SEX ? raw_rom_insw(isa_itw(port), (u16 *)(buf), (nr)) : \
346 raw_rom_insw_swapw(isa_itw(port), (u16 *)(buf), (nr)))
348 #define isa_rom_outsb(port, buf, nr) raw_rom_outsb(isa_itb(port), (u8 *)(buf), (nr)) argument
350 #define isa_rom_outsw(port, buf, nr) \ argument
351 (ISA_SEX ? raw_rom_outsw(isa_itw(port), (u16 *)(buf), (nr)) : \
352 raw_rom_outsw_swapw(isa_itw(port), (u16 *)(buf), (nr)))
404 #define insb(port, buf, nr) ((port) < 1024 ? isa_rom_insb((port), (buf), (nr)) : isa_insb((port), ( argument
405 #define insw(port, buf, nr) ((port) < 1024 ? isa_rom_insw((port), (buf), (nr)) : isa_insw((port), ( argument
407 #define outsb(port, buf, nr) ((port) < 1024 ? isa_rom_outsb((port), (buf), (nr)) : isa_outsb((port)… argument
408 #define outsw(port, buf, nr) ((port) < 1024 ? isa_rom_outsw((port), (buf), (nr)) : isa_outsw((port)… argument
435 #define insb(port,buf,nr) ((void)0) argument
436 #define outsb(port,buf,nr) ((void)0) argument
437 #define insw(port,buf,nr) ((void)0) argument
438 #define outsw(port,buf,nr) ((void)0) argument
439 #define insl(port,buf,nr) ((void)0) argument
440 #define outsl(port,buf,nr) ((void)0) argument
455 #define readsb(port, buf, nr) raw_insb((port), (u8 *)(buf), (nr)) argument
456 #define readsw(port, buf, nr) raw_insw((port), (u16 *)(buf), (nr)) argument
457 #define readsl(port, buf, nr) raw_insl((port), (u32 *)(buf), (nr)) argument
458 #define writesb(port, buf, nr) raw_outsb((port), (u8 *)(buf), (nr)) argument
459 #define writesw(port, buf, nr) raw_outsw((port), (u16 *)(buf), (nr)) argument
460 #define writesl(port, buf, nr) raw_outsl((port), (u32 *)(buf), (nr)) argument