/external/libjpeg-turbo/simd/powerpc/ |
D | jidctfst-altivec.c | 124 __vector signed char outb; in jsimd_idct_ifast_altivec() local 208 outb = vec_packs(col0, col0); in jsimd_idct_ifast_altivec() 209 outb = vec_add(outb, pb_centerjsamp); in jsimd_idct_ifast_altivec() 211 vec_ste((__vector int)outb, 0, outptr); in jsimd_idct_ifast_altivec() 212 vec_ste((__vector int)outb, 4, outptr); in jsimd_idct_ifast_altivec() 214 outb = vec_packs(col1, col1); in jsimd_idct_ifast_altivec() 215 outb = vec_add(outb, pb_centerjsamp); in jsimd_idct_ifast_altivec() 217 vec_ste((__vector int)outb, 0, outptr); in jsimd_idct_ifast_altivec() 218 vec_ste((__vector int)outb, 4, outptr); in jsimd_idct_ifast_altivec() 220 outb = vec_packs(col2, col2); in jsimd_idct_ifast_altivec() [all …]
|
D | jidctint-altivec.c | 225 __vector signed char outb; in jsimd_idct_islow_altivec() local 310 outb = vec_packs(col0, col0); in jsimd_idct_islow_altivec() 311 outb = vec_add(outb, pb_centerjsamp); in jsimd_idct_islow_altivec() 313 vec_ste((__vector int)outb, 0, outptr); in jsimd_idct_islow_altivec() 314 vec_ste((__vector int)outb, 4, outptr); in jsimd_idct_islow_altivec() 316 outb = vec_packs(col1, col1); in jsimd_idct_islow_altivec() 317 outb = vec_add(outb, pb_centerjsamp); in jsimd_idct_islow_altivec() 319 vec_ste((__vector int)outb, 0, outptr); in jsimd_idct_islow_altivec() 320 vec_ste((__vector int)outb, 4, outptr); in jsimd_idct_islow_altivec() 322 outb = vec_packs(col2, col2); in jsimd_idct_islow_altivec() [all …]
|
/external/u-boot/arch/x86/lib/ |
D | i8259.c | 27 outb(0xff, MASTER_PIC + IMR); in i8259_init() 28 outb(0xff, SLAVE_PIC + IMR); in i8259_init() 34 outb(ICW1_SEL | ICW1_EICW4, MASTER_PIC + ICW1); in i8259_init() 35 outb(0x20, MASTER_PIC + ICW2); in i8259_init() 36 outb(IR2, MASTER_PIC + ICW3); in i8259_init() 37 outb(ICW4_PM, MASTER_PIC + ICW4); in i8259_init() 40 outb(OCW2_SEOI | i, MASTER_PIC + OCW2); in i8259_init() 46 outb(ICW1_SEL | ICW1_EICW4, SLAVE_PIC + ICW1); in i8259_init() 47 outb(0x28, SLAVE_PIC + ICW2); in i8259_init() 48 outb(0x02, SLAVE_PIC + ICW3); in i8259_init() [all …]
|
D | i8254.c | 21 outb(PIT_CMD_CTR1 | PIT_CMD_LOW | PIT_CMD_MODE2, in i8254_init() 23 outb(TIMER1_VALUE, PIT_BASE + PIT_T1); in i8254_init() 30 outb(PIT_CMD_CTR2 | PIT_CMD_BOTH | PIT_CMD_MODE3, in i8254_init() 32 outb(TIMER2_VALUE & 0xff, PIT_BASE + PIT_T2); in i8254_init() 33 outb(TIMER2_VALUE >> 8, PIT_BASE + PIT_T2); in i8254_init()
|
/external/u-boot/drivers/misc/ |
D | smsc_sio1007.c | 13 outb(reg, port); in sio1007_read() 20 outb(reg, port); in sio1007_write() 21 outb(val, port + 1); in sio1007_write() 35 outb(0x55, port); in sio1007_enable_serial() 49 outb(0xaa, port); in sio1007_enable_serial() 55 outb(0x55, port); in sio1007_enable_runtime() 64 outb(0xaa, port); in sio1007_enable_runtime() 79 outb(0x55, port); in sio1007_gpio_config() 87 outb(0xaa, port); in sio1007_gpio_config() 124 outb(data, port + reg); in sio1007_gpio_set_value()
|
D | nuvoton_nct6102d.c | 13 outb(reg, NCT_EFER); in superio_outb() 14 outb(val, NCT_EFDR); in superio_outb() 19 outb(reg, NCT_EFER); in superio_inb() 25 outb(NCT_ENTRY_KEY, NCT_EFER); /* Enter extended function mode */ in superio_enter() 26 outb(NCT_ENTRY_KEY, NCT_EFER); /* Again according to manual */ in superio_enter() 38 outb(NCT_EXIT_KEY, NCT_EFER); /* Leave extended function mode */ in superio_exit()
|
D | ali512x.c | 44 outb(index, ALI_INDEX); in ali_write() 45 outb(value, ALI_DATA); in ali_write() 51 outb(index, ALI_INDEX); 57 outb(0x51, ALI_INDEX); \ 58 outb(0x23, ALI_INDEX) 62 outb(0xbb, ALI_INDEX) 376 outb(reg, ALI_CIO_INDEX); /* select I/O register */ in ali512x_cio_out() 383 outb(data, ALI_CIO_DATA); in ali512x_cio_out() 397 outb(reg, ALI_CIO_INDEX); /* select I/O register */ in ali512x_cio_in()
|
D | winbond_w83627.c | 18 outb(WINBOND_ENTRY_KEY, port); in pnp_enter_conf_state() 19 outb(WINBOND_ENTRY_KEY, port); in pnp_enter_conf_state() 27 outb(WINBOND_EXIT_KEY, port); in pnp_exit_conf_state()
|
D | smsc_lpc47m.c | 14 outb(0x55, port); in pnp_enter_conf_state() 21 outb(0xaa, port); in pnp_exit_conf_state()
|
D | cros_ec_lpc.c | 82 outb(*d, args_addr + i); in cros_ec_lpc_command() 87 outb(*d, param_addr + i); in cros_ec_lpc_command() 91 outb(cmd, cmd_addr); in cros_ec_lpc_command()
|
/external/u-boot/drivers/i2c/ |
D | intel_i2c.c | 112 outb(((dev & 0x7f) << 1) | 1, base + SMBXMITADD); in smbus_block_read() 114 outb(offset & 0xff, base + SMBHSTCMD); in smbus_block_read() 116 outb((inb(base + SMBHSTCTL) & (~(0x7) << 2)) | (0x5 << 2), in smbus_block_read() 119 outb(inb(base + SMBHSTSTAT), base + SMBHSTSTAT); in smbus_block_read() 122 outb((inb(base + SMBHSTCTL) | SMBHSTCNT_START), base + SMBHSTCTL); in smbus_block_read() 172 outb(((dev & 0x7f) << 1) & ~0x01, base + SMBXMITADD); in smbus_block_write() 174 outb(offset, base + SMBHSTCMD); in smbus_block_write() 176 outb((inb(base + SMBHSTCTL) & (~(0x7) << 2)) | (0x5 << 2), in smbus_block_write() 179 outb(inb(base + SMBHSTSTAT), base + SMBHSTSTAT); in smbus_block_write() 182 outb(len, base + SMBHSTDAT0); in smbus_block_write() [all …]
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | spv.310.comp.out | 16 Name 12 "outb" 17 MemberName 12(outb) 0 "f" 18 MemberName 12(outb) 1 "g" 19 MemberName 12(outb) 2 "h" 20 MemberName 12(outb) 3 "uns" 35 MemberDecorate 12(outb) 0 Offset 0 36 MemberDecorate 12(outb) 1 Offset 4 37 MemberDecorate 12(outb) 2 Offset 8 38 MemberDecorate 12(outb) 3 Offset 16 39 Decorate 12(outb) BufferBlock [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | pr9517.ll | 52 ; CHECK-NEXT: outb %al, %dx 59 ; CHECK-NEXT: outb %al, %dx 66 ; CHECK-NEXT: outb %al, %dx 73 ; CHECK-NEXT: outb %al, %dx 80 ; CHECK-NEXT: outb %al, %dx 87 ; CHECK-NEXT: outb %al, %dx 94 ; CHECK-NEXT: outb %al, %dx 101 ; CHECK-NEXT: outb %al, %dx 108 ; CHECK-NEXT: outb %al, %dx 114 …tail call void asm sideeffect "outb %al,${1:w}", "{ax},{dx},~{dirflag},~{fpsr},~{flags}"(i8 0, i16… [all …]
|
/external/u-boot/drivers/net/ |
D | rtl8139.c | 261 outb(0x00, ioaddr + Config1); in rtl8139_probe() 307 outb(EE_ENB & ~EE_CS, ee_addr); in read_eeprom() 308 outb(EE_ENB, ee_addr); in read_eeprom() 314 outb(EE_ENB | dataval, ee_addr); in read_eeprom() 316 outb(EE_ENB | dataval | EE_SHIFT_CLK, ee_addr); in read_eeprom() 319 outb(EE_ENB, ee_addr); in read_eeprom() 323 outb(EE_ENB | EE_SHIFT_CLK, ee_addr); in read_eeprom() 326 outb(EE_ENB, ee_addr); in read_eeprom() 331 outb(~EE_CS, ee_addr); in read_eeprom() 358 outb(CmdReset, ioaddr + ChipCmd); in rtl_reset() [all …]
|
/external/u-boot/board/imgtec/malta/ |
D | superio.c | 52 outb(SIOCONF_ENTER_SETUP, SIO_CONF_PORT); in malta_superio_init() 56 outb(sio_config[i].key, SIO_CONF_PORT); in malta_superio_init() 57 outb(sio_config[i].data, SIO_DATA_PORT); in malta_superio_init() 61 outb(SIOCONF_EXIT_SETUP, SIO_CONF_PORT); in malta_superio_init()
|
/external/u-boot/board/renesas/ecovec/ |
D | ecovec.c | 27 outb((inb(PGDR) & ~0x0F) | (led & 0x0F), PGDR); in debug_led() 82 outb((inb(PADR) & ~0x02) | 0x02, PADR); in board_init() 88 outb((inb(PBDR) & ~0x10) | 0x10, PBDR); in board_init()
|
/external/u-boot/arch/x86/include/asm/ |
D | pnp_def.h | 38 outb(reg, port); in pnp_write_config() 39 outb(value, port + 1); in pnp_write_config() 46 outb(reg, port); in pnp_read_config()
|
D | post.h | 44 outb %al, $POST_PORT 50 outb(code, POST_PORT); in post_code()
|
/external/u-boot/arch/microblaze/include/asm/ |
D | io.h | 44 #define outb(x, addr) ((void) writeb (x, addr)) macro 53 #define out_8(addr,x ) outb (x,addr) 59 #define outb_p(val, port) outb((val), (port)) 98 outb (*p++, port); in io_outsb()
|
/external/u-boot/drivers/timer/ |
D | tsc_timer.c | 218 outb((inb(0x61) & ~0x02) | 0x01, 0x61); in quick_pit_calibrate() 229 outb(0xb0, 0x43); in quick_pit_calibrate() 232 outb(0xff, 0x42); in quick_pit_calibrate() 233 outb(0xff, 0x42); in quick_pit_calibrate()
|
/external/u-boot/arch/x86/cpu/ |
D | cpu.c | 99 outb(SYS_RST | RST_CPU, IO_PORT_RESET); in reset_cpu() 106 outb(FULL_RST | SYS_RST | RST_CPU, IO_PORT_RESET); in x86_full_reset() 193 outb(val, POST_PORT); in show_boot_progress()
|
/external/u-boot/arch/x86/cpu/qemu/ |
D | dram.c | 16 outb(HIGH_RAM_ADDR, CMOS_ADDR_PORT); in dram_init() 18 outb(LOW_RAM_ADDR, CMOS_ADDR_PORT); in dram_init()
|
/external/llvm/test/MC/X86/ |
D | validate-inst-att.s | 19 outb %al, $65535 21 # CHECK: outb %al, $65535
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/X86/ |
D | validate-inst-att.s | 19 outb %al, $65535 21 # CHECK: outb %al, $65535
|
/external/u-boot/drivers/pcmcia/ |
D | marubun_pcmcia.c | 86 outb(0x00,(CONFIG_SYS_MARUBUN_MW2 + 0x206)); in pcmcia_on() 87 outb(0x42,(CONFIG_SYS_MARUBUN_MW2 + 0x200)); in pcmcia_on()
|