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

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
io.h 97 outb (unsigned char value, unsigned short int port) function
99 __asm__ __volatile__ ("outb %b0,%w1": :"a" (value), "Nd" (port));
105 __asm__ __volatile__ ("outb %b0,%w1\noutb %%al,$0x80": :"a" (value),
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
io.h 97 outb (unsigned char value, unsigned short int port) function
99 __asm__ __volatile__ ("outb %b0,%w1": :"a" (value), "Nd" (port));
105 __asm__ __volatile__ ("outb %b0,%w1\noutb %%al,$0x80": :"a" (value),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
io.h 97 outb (unsigned char value, unsigned short int port) function
99 __asm__ __volatile__ ("outb %b0,%w1": :"a" (value), "Nd" (port));
105 __asm__ __volatile__ ("outb %b0,%w1\noutb %%al,$0x80": :"a" (value),
  /external/grub/stage2/
hercules.c 40 outb (unsigned short port, unsigned char value) function
42 asm volatile ("outb %b0, %w1" : : "a" (value), "Nd" (port));
50 outb (HERCULES_INDEX_REG, 0x0f);
51 outb (0x80, 0);
52 outb (HERCULES_DATA_REG, offset & 0xFF);
53 outb (0x80, 0);
55 outb (HERCULES_INDEX_REG, 0x0e);
56 outb (0x80, 0);
57 outb (HERCULES_DATA_REG, offset >> 8);
58 outb (0x80, 0)
    [all...]
serial.c 71 asm volatile ("outb %%al, $0x80" : : );
78 outb (unsigned short port, unsigned char value)
80 asm volatile ("outb %b0, %w1" : : "a" (value), "Nd" (port));
81 asm volatile ("outb %%al, $0x80" : : );
108 outb (serial_hw_port + UART_TX, c);
114 outb (0x80, 0);
143 outb (port + UART_IER, 0);
146 outb (port + UART_LCR, UART_DLAB);
159 outb (port + UART_DLL, div & 0xFF);
160 outb (port + UART_DLH, div >> 8)
77 outb (unsigned short port, unsigned char value) function
    [all...]
smp-imps.c 82 outb (unsigned short port, unsigned char val) function
84 __asm __volatile ("outb %0,%1"::"a" (val), "d" (port));
91 outb (0x70, loc);
92 outb (0x71, val);
98 outb (0x70, loc);
  /external/grub/netboot/
linux-asm-io.h 6 * inb/inw/inl/outb/outw/outl and the "string versions" of the same
19 * the two short jumps: using outb's to a nonexistent port seems
31 #define __SLOW_DOWN_IO __asm__ __volatile__("outb %al,$0x80")
127 #define outb(val,port) \ macro
  /external/kernel-headers/original/asm-arm/
io.h 111 #define outb(v,p) __raw_writeb(v,__io(p)) macro
132 #define outb_p(val,port) outb((val),(port))
295 * Register ISA memory and port locations for glibc iopl/inb/outb
  /external/llvm/test/MC/X86/
x86-64.s 214 // CHECK: outb %al, $161
215 outb %al, $161 label
245 // CHECK: outb %al, $127
250 outb $0x7f label
256 // CHECK: outb %dx
257 // CHECK: outb %dx
264 outb %al, (%dx) label
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 2579 char *outb; local
    [all...]
  /external/qemu-pc-bios/vgabios/
vgabios.c 66 static void outb();
419 outb dx,al
424 outb dx,al
427 outb dx,al
875 outb(VGAREG_PEL_MASK,vga_modes[line].pelmask);
878 outb(VGAREG_DAC_WRITE_ADDRESS,0x00);
898 {outb(VGAREG_DAC_DATA,palette[(i*3)+0]);
899 outb(VGAREG_DAC_DATA,palette[(i*3)+1]);
900 outb(VGAREG_DAC_DATA,palette[(i*3)+2]);
903 {outb(VGAREG_DAC_DATA,0)
3719 outb(port, val) function
    [all...]
  /external/qemu-pc-bios/bochs/bios/
rombios32.c 96 static inline void outb(int addr, int val) function
98 asm volatile ("outb %b1, %w0" : : "d" (addr), "a" (val));
154 outb(INFO_PORT, c);
404 outb(PANIC_PORT2, 0x00);
559 outb(0x70, addr);
733 outb(0xcfc + (addr & 3), val);
861 outb(0x4d0, elcr[0]);
862 outb(0x4d1, elcr[1]);
897 outb(0xb3, 0x01);
900 outb(0xb2, 0x00)
    [all...]
rombios.c 854 static void outb();
1162 outb(port, val) function
    [all...]

Completed in 443 milliseconds