Home | History | Annotate | Download | only in sys

Lines Matching refs:__value

97 outb (unsigned char __value, unsigned short int __port)
99 __asm__ __volatile__ ("outb %b0,%w1": :"a" (__value), "Nd" (__port));
103 outb_p (unsigned char __value, unsigned short int __port)
105 __asm__ __volatile__ ("outb %b0,%w1\noutb %%al,$0x80": :"a" (__value),
110 outw (unsigned short int __value, unsigned short int __port)
112 __asm__ __volatile__ ("outw %w0,%w1": :"a" (__value), "Nd" (__port));
117 outw_p (unsigned short int __value, unsigned short int __port)
119 __asm__ __volatile__ ("outw %w0,%w1\noutb %%al,$0x80": :"a" (__value),
124 outl (unsigned int __value, unsigned short int __port)
126 __asm__ __volatile__ ("outl %0,%w1": :"a" (__value), "Nd" (__port));
130 outl_p (unsigned int __value, unsigned short int __port)
132 __asm__ __volatile__ ("outl %0,%w1\noutb %%al,$0x80": :"a" (__value),