HomeSort by relevance Sort by last modified time
    Searched defs:inb (Results 1 - 11 of 11) sorted by null

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
io.h 44 inb (unsigned short int port) function
48 __asm__ __volatile__ ("inb %w1,%0":"=a" (_v):"Nd" (port));
57 __asm__ __volatile__ ("inb %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
io.h 44 inb (unsigned short int port) function
48 __asm__ __volatile__ ("inb %w1,%0":"=a" (_v):"Nd" (port));
57 __asm__ __volatile__ ("inb %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
io.h 44 inb (unsigned short int port) function
48 __asm__ __volatile__ ("inb %w1,%0":"=a" (_v):"Nd" (port));
57 __asm__ __volatile__ ("inb %w1,%0\noutb %%al,$0x80":"=a" (_v):"Nd" (port));
  /external/grub/netboot/
linux-asm-io.h 6 * inb/inw/inl/outb/outw/outl and the "string versions" of the same
132 #define inb(port) \ macro
  /external/grub/stage2/
serial.c 66 inb (unsigned short port)
70 asm volatile ("inb %w1, %0" : "=a" (value) : "Nd" (port));
88 if (inb (serial_hw_port + UART_LSR) & UART_DATA_READY)
89 return inb (serial_hw_port + UART_RX);
101 while ((inb (serial_hw_port + UART_LSR) & UART_EMPTY_TRANSMITTER) == 0)
65 inb (unsigned short port) function
smp-imps.c 73 inb (unsigned short port) function
77 __asm __volatile ("inb %1,%0" :"=a" (data):"d" (port));
99 return inb (0x71);
  /external/kernel-headers/original/asm-arm/
io.h 117 #define inb(p) ({ __u8 __v = __raw_readb(__io(p)); __v; }) macro
135 #define inb_p(port) inb((port))
295 * Register ISA memory and port locations for glibc iopl/inb/outb
  /external/llvm/test/MC/X86/
x86-64.s 218 // CHECK: inb $161, %al
219 inb $161, %al label
243 // CHECK: inb $127, %al
248 inb $0x7f label
270 // CHECK: inb %dx
271 // CHECK: inb %dx
278 inb (%dx), %al label
  /external/qemu-pc-bios/vgabios/
vgabios.c 64 static Bit8u inb();
915 inb(VGAREG_ACTL_RESET);
955 inb(VGAREG_ACTL_RESET);
972 mmask = inb( VGAREG_SEQU_DATA );
3684 inb(port) function
    [all...]
  /external/qemu-pc-bios/bochs/bios/
rombios32.c 115 static inline uint8_t inb(int addr) function
118 asm volatile ("inb %w1, %b0" : "=a" (val) : "d" (addr));
425 r1 = inb(0x61) & 0x10;
427 r2 = inb(0x61) & 0x10;
496 if (inb(QEMU_CFG_DATA_PORT) != sig[i])
505 *(buf++) = inb(QEMU_CFG_DATA_PORT);
560 return inb(0x71);
751 return inb(0xcfc + (addr & 3));
903 while (inb(0xb3) != 0x00);
    [all...]
rombios.c 852 static Bit8u inb();
1126 inb(port) function
    [all...]

Completed in 190 milliseconds