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

  /prebuilt/linux-x86/toolchain/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),
  /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
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
compiler.h 95 # define outb RealOutb macro
104 # define outb outp macro
139 extern void outb(unsigned short, unsigned char);
148 extern void outb(unsigned long, unsigned char);
184 outb(unsigned long port, unsigned char val) function
234 extern void outb(unsigned int port, unsigned char val);
504 # undef outb macro
510 extern void outb(unsigned long port, unsigned char val);
535 outb(unsigned short port, unsigned char val) function
537 __asm__ __volatile__("outb %0,%1" : :"a" (val), "d" (port))
593 outb(unsigned long port, unsigned char val) function
927 outb(unsigned PORT_SIZE port, unsigned char val) function
1258 outb(unsigned short port, unsigned char value) function
1353 #define outb macro
1388 outb(unsigned short port, unsigned char val) function
1439 outb(unsigned short port, unsigned char val) function
1491 outb(unsigned short port, unsigned char val) function
1566 # undef outb macro
1579 # define outb macro
1594 # define outb macro
1670 # undef outb macro
1677 # define outb macro
    [all...]
  /external/llvm/test/MC/X86/
x86-64.s 211 // CHECK: outb %al, $161
212 outb %al, $161 label
242 // CHECK: outb %al, $127
247 outb $0x7f label
253 // CHECK: outb %dx
254 // CHECK: outb %dx
261 outb %al, (%dx) label
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 2603 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 364 milliseconds