Searched defs:outb (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas64/
H A Dgas-inout.asm7 outb %al, $10 label
10 outb $10 label
/external/llvm/test/MC/X86/
H A Dx86_errors.s48 outb al, 4 label
H A Dintel-syntax.s333 // CHECK: outb %al, $4
435 // CHECK: outb %al, %dx
441 outb DX define
H A Dx86-64.s214 // CHECK: outb %al, $161
215 outb %al, $161 label
245 // CHECK: outb %al, $127
250 outb $0x7f label
256 // CHECK: outb %al, %dx
257 // CHECK: outb %al, %dx
264 outb %al, (%dx) label
/external/chromium_org/third_party/libxml/src/
H A Dencoding.c554 * @outb: a pointer to an array of bytes to store the result
555 * @outlen: the length of @outb
566 UTF8ToUTF16LE(unsigned char* outb, int *outlen, argument
569 unsigned short* out = (unsigned short*) outb;
663 * @outb: a pointer to an array of bytes to store the result
664 * @outlen: the length of @outb
675 UTF8ToUTF16(unsigned char* outb, int *outlen, argument
683 outb[0] = 0xFF;
684 outb[1] = 0xFE;
697 return (UTF8ToUTF16LE(outb, outle
808 UTF8ToUTF16BE(unsigned char* outb, int *outlen, const unsigned char* in, int *inlen) argument
[all...]
/external/ipsec-tools/src/racoon/
H A Dcrypto_openssl.c2579 char *outb; local
2582 outb = malloc(inlen * 2);
2583 if (outb == NULL)
2590 outlen = BIO_read(bio, outb, inlen * 2);
2600 memcpy(res->v, outb, outlen);
2603 if (outb)
2604 free(outb);
/external/libxml2/
H A Dencoding.c558 * @outb: a pointer to an array of bytes to store the result
559 * @outlen: the length of @outb
570 UTF8ToUTF16LE(unsigned char* outb, int *outlen, argument
573 unsigned short* out = (unsigned short*) outb;
667 * @outb: a pointer to an array of bytes to store the result
668 * @outlen: the length of @outb
679 UTF8ToUTF16(unsigned char* outb, int *outlen, argument
687 outb[0] = 0xFF;
688 outb[1] = 0xFE;
701 return (UTF8ToUTF16LE(outb, outle
812 UTF8ToUTF16BE(unsigned char* outb, int *outlen, const unsigned char* in, int *inlen) argument
[all...]
/external/qemu-pc-bios/vgabios/
H A Dvgabios.c66 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_DAT
3719 outb(port, val) function
[all...]
/external/qemu-pc-bios/bochs/bios/
H A Drombios32.c96 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(
[all...]
H A Drombios.c854 static void outb();
1162 outb(port, val) function
1430 outb(base_port + UART_THR, data);
1464 if (action & BIOS_PRINTF_DEBUG) outb(DEBUG_PORT, c);
1465 if (action & BIOS_PRINTF_INFO) outb(INFO_PORT, c);
1641 outb(PANIC_PORT2, 0x00);
1754 while ( (inb(0x64) & 0x02) && (--max>0)) outb(0x80, 0x00);
1759 outb(0x80, 0x00);
1773 outb(0x64, 0xaa);
1777 while ( (inb(0x64) & 0x02) && (--max>0)) outb(
[all...]

Completed in 358 milliseconds