Searched defs:inb (Results 1 - 9 of 9) sorted by relevance

/external/grub/netboot/
H A Dlinux-asm-io.h6 * inb/inw/inl/outb/outw/outl and the "string versions" of the same
132 #define inb(port) \ macro
/external/grub/stage2/
H A Dserial.c66 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
H A Dsmp-imps.c73 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/
H A Dio.h117 #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/
H A Dx86-64.s218 // 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/libxml2/
H A Dencoding.c338 * @inb: a pointer to an array of UTF-8 chars
349 const unsigned char* inb, int *inlenb)
353 if ((out == NULL) || (inb == NULL) || (outlen == NULL) || (inlenb == NULL))
363 memcpy(out, inb, len);
467 * @inb: a pointer to an array of UTF-16LE passwd as a byte array
482 const unsigned char* inb, int *inlenb)
485 const unsigned char* processed = inb;
487 unsigned short* in = (unsigned short*) inb;
526 *inlenb = processed - inb;
547 *inlenb = processed - inb;
348 UTF8ToUTF8(unsigned char* out, int *outlen, const unsigned char* inb, int *inlenb) argument
481 UTF16LEToUTF8(unsigned char* out, int *outlen, const unsigned char* inb, int *inlenb) argument
719 UTF16BEToUTF8(unsigned char* out, int *outlen, const unsigned char* inb, int *inlenb) argument
[all...]
/external/qemu-pc-bios/vgabios/
H A Dvgabios.c64 static Bit8u inb();
915 inb(VGAREG_ACTL_RESET);
955 inb(VGAREG_ACTL_RESET);
972 mmask = inb( VGAREG_SEQU_DATA );
2560 inb(VGAREG_ACTL_RESET);
2568 r=inb( VGAREG_DAC_DATA );
2569 g=inb( VGAREG_DAC_DATA );
2570 b=inb( VGAREG_DAC_DATA );
2585 inb(VGAREG_ACTL_RESET);
2654 crtc_r9 = inb(crtc_add
3684 inb(port) function
[all...]
/external/qemu-pc-bios/bochs/bios/
H A Drombios32.c115 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);
2163 inb(QEMU_CFG_DATA_POR
[all...]
H A Drombios.c852 static Bit8u inb();
1126 inb(port) function
1410 return inb(base_port + UART_LSR) & 0x20;
1422 while (!(inb(base_port + UART_LSR) & 0x40));
1754 while ( (inb(0x64) & 0x02) && (--max>0)) outb(0x80, 0x00);
1760 if (inb(0x64) & 0x01) {
1761 inb(0x60);
1777 while ( (inb(0x64) & 0x02) && (--max>0)) outb(0x80, 0x00);
1782 while ( ((inb(0x64) & 0x01) == 0) && (--max>0) ) outb(0x80, 0x01);
1786 if ((inb(
[all...]

Completed in 218 milliseconds