Home
last modified time | relevance | path

Searched defs:writeb (Results 1 – 16 of 16) sorted by relevance

/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
Dio.h42 #define writeb(value, address) WRITE_UINT8(value, address) macro
/third_party/uboot/u-boot-2020.01/drivers/usb/gadget/hiudc3/
Dsys.h14 static inline void writeb(u8 val, unsigned long int addr) in writeb() function
/third_party/uboot/u-boot-2020.01/include/
Diotrace.h64 #define writeb(val, addr) iotrace_writeb(val, (void *)(uintptr_t)addr) macro
/third_party/uboot/u-boot-2020.01/arch/xtensa/include/asm/
Dio.h41 #define writeb(b, addr) (void)((*(volatile unsigned char *)(addr)) = (b)) macro
/third_party/uboot/u-boot-2020.01/arch/sh/include/asm/
Dio.h152 #define writeb(v, c) __raw_writeb(v, __mem_pci(c)) macro
185 #define writeb(v, addr) __raw_writeb(v, addr) macro
/third_party/uboot/u-boot-2020.01/arch/microblaze/include/asm/
Dio.h33 #define writeb(b, addr) \ macro
/third_party/flutter/skia/third_party/externals/wuffs/internal/cgen/
Dcgen.go214 func (b *buffer) writeb(x byte) { *b = append(*b, x) } func
/third_party/uboot/u-boot-2020.01/arch/arc/include/asm/
Dio.h202 #define writeb(v,c) ({ __iowmb(); writeb_relaxed(v,c); }) macro
/third_party/uboot/u-boot-2020.01/arch/nds32/include/asm/
Dio.h98 static inline void writeb(u8 val, volatile void __iomem *addr) in writeb() function
370 #define writeb(v, c) __raw_writeb(v, __mem_pci(c)) macro
/third_party/uboot/u-boot-2020.01/arch/nios2/include/asm/
Dio.h66 #define writeb(val,addr)\ macro
/third_party/uboot/u-boot-2020.01/arch/riscv/include/asm/
Dio.h71 static inline void writeb(u8 val, volatile void __iomem *addr) in writeb() function
376 #define writeb(v, c) __raw_writeb(v, __mem_pci(c)) macro
/third_party/uboot/u-boot-2020.01/arch/m68k/include/asm/
Dio.h27 #define writeb(b,addr) out_8((volatile u8 *)(addr), (b)) macro
/third_party/uboot/u-boot-2020.01/arch/x86/include/asm/
Dio.h69 #define writeb(b, addr) (*(volatile u8 *)(addr) = (b)) macro
/third_party/uboot/u-boot-2020.01/arch/powerpc/include/asm/
Dio.h24 #define writeb(b,addr) out_8((volatile u8 *)(addr), (b)) macro
/third_party/uboot/u-boot-2020.01/arch/sandbox/include/asm/
Dio.h57 #define writeb(v, addr) sandbox_write((void *)addr, v, SB_SIZE_8) macro
/third_party/uboot/u-boot-2020.01/arch/arm/include/asm/
Dio.h116 #define writeb(v,c) ({ u8 __v = v; __iowmb(); __arch_putb(__v,c); __v; }) macro