| /linux/tools/arch/x86/lib/ |
| H A D | x86-opcode-map.txt | 361 10: vmovups Vps,Wps | vmovupd Vpd,Wpd (66) | vmovss Vx,Hx,Wss (F3),(v1) | vmovsd Vx,Hx,Wsd (F2),(v1) 362 11: vmovups Wps,Vps | vmovupd Wpd,Vpd (66) | vmovss Wss,Hx,Vss (F3),(v1) | vmovsd Wsd,Hx,Vsd (F2),(… 365 14: vunpcklps Vx,Hx,Wx | vunpcklpd Vx,Hx,Wx (66) 366 15: vunpckhps Vx,Hx,Wx | vunpckhpd Vx,Hx,Wx (66) 443 5a: vcvtps2pd Vpd,Wps | vcvtpd2ps Vps,Wpd (66) | vcvtss2sd Vsd,Hx,Wss (F3),(v1) | vcvtsd2ss Vss,Hx,… 450 60: punpcklbw Pq,Qd | vpunpcklbw Vx,Hx,Wx (66),(v1) 451 61: punpcklwd Pq,Qd | vpunpcklwd Vx,Hx,Wx (66),(v1) 452 62: punpckldq Pq,Qd | vpunpckldq Vx,Hx,Wx (66),(v1) 453 63: packsswb Pq,Qq | vpacksswb Vx,Hx,Wx (66),(v1) 454 64: pcmpgtb Pq,Qq | vpcmpgtb Vx,Hx,Wx (66),(v1) [all …]
|
| /linux/arch/x86/lib/ |
| H A D | x86-opcode-map.txt | 361 10: vmovups Vps,Wps | vmovupd Vpd,Wpd (66) | vmovss Vx,Hx,Wss (F3),(v1) | vmovsd Vx,Hx,Wsd (F2),(v1) 362 11: vmovups Wps,Vps | vmovupd Wpd,Vpd (66) | vmovss Wss,Hx,Vss (F3),(v1) | vmovsd Wsd,Hx,Vsd (F2),(… 365 14: vunpcklps Vx,Hx,Wx | vunpcklpd Vx,Hx,Wx (66) 366 15: vunpckhps Vx,Hx,Wx | vunpckhpd Vx,Hx,Wx (66) 443 5a: vcvtps2pd Vpd,Wps | vcvtpd2ps Vps,Wpd (66) | vcvtss2sd Vsd,Hx,Wss (F3),(v1) | vcvtsd2ss Vss,Hx,… 450 60: punpcklbw Pq,Qd | vpunpcklbw Vx,Hx,Wx (66),(v1) 451 61: punpcklwd Pq,Qd | vpunpcklwd Vx,Hx,Wx (66),(v1) 452 62: punpckldq Pq,Qd | vpunpckldq Vx,Hx,Wx (66),(v1) 453 63: packsswb Pq,Qq | vpacksswb Vx,Hx,Wx (66),(v1) 454 64: pcmpgtb Pq,Qq | vpcmpgtb Vx,Hx,Wx (66),(v1) [all …]
|
| /linux/drivers/media/common/ |
| H A D | cypress_firmware.c | 42 struct hexline *hx, int *pos) in cypress_get_hexline() argument 50 memset(hx, 0, sizeof(struct hexline)); in cypress_get_hexline() 51 hx->len = b[0]; in cypress_get_hexline() 53 if ((*pos + hx->len + 4) >= fw->size) in cypress_get_hexline() 56 hx->addr = b[1] | (b[2] << 8); in cypress_get_hexline() 57 hx->type = b[3]; in cypress_get_hexline() 59 if (hx->type == 0x04) { in cypress_get_hexline() 62 hx->addr |= (b[4] << 24) | (b[5] << 16); in cypress_get_hexline() 65 memcpy(hx->data, &b[data_offs], hx->len); in cypress_get_hexline() 66 hx->chk = b[hx->len + data_offs]; in cypress_get_hexline() [all …]
|
| /linux/drivers/media/usb/dvb-usb/ |
| H A D | dvb-usb-firmware.c | 39 struct hexline *hx; in usb_cypress_load_firmware() local 44 buf = kmalloc(sizeof(*hx), GFP_KERNEL); in usb_cypress_load_firmware() 47 hx = (struct hexline *)buf; in usb_cypress_load_firmware() 54 while ((ret = dvb_usb_get_hexline(fw, hx, &pos)) > 0) { in usb_cypress_load_firmware() 55 deb_fw("writing to address 0x%04x (buffer: 0x%02x %02x)\n", hx->addr, hx->len, hx->chk); in usb_cypress_load_firmware() 56 ret = usb_cypress_writemem(udev, hx->addr, hx->data, hx->len); in usb_cypress_load_firmware() 58 if (ret != hx->len) { in usb_cypress_load_firmware() 60 ret, hx->len); in usb_cypress_load_firmware() 124 int dvb_usb_get_hexline(const struct firmware *fw, struct hexline *hx, in dvb_usb_get_hexline() argument 132 memset(hx,0,sizeof(struct hexline)); in dvb_usb_get_hexline() [all …]
|
| H A D | dib0700_core.c | 509 struct hexline hx; in dib0700_download_firmware() local 518 while ((ret = dvb_usb_get_hexline(fw, &hx, &pos)) > 0) { in dib0700_download_firmware() 520 hx.addr, hx.len, hx.chk); in dib0700_download_firmware() 522 buf[0] = hx.len; in dib0700_download_firmware() 523 buf[1] = (hx.addr >> 8) & 0xff; in dib0700_download_firmware() 524 buf[2] = hx.addr & 0xff; in dib0700_download_firmware() 525 buf[3] = hx.type; in dib0700_download_firmware() 526 memcpy(&buf[4],hx.data,hx.len); in dib0700_download_firmware() 527 buf[4+hx.len] = hx.chk; in dib0700_download_firmware() 532 hx.len + 5, in dib0700_download_firmware()
|
| /linux/arch/sh/kernel/cpu/sh2a/ |
| H A D | fpu.c | 94 static int denormal_mulf(int hx, int hy) in denormal_mulf() argument 100 ix = hx & 0x7fffffff; in denormal_mulf() 103 return ((hx ^ hy) & 0x80000000); in denormal_mulf() 122 ix |= (hx ^ hy) & 0x80000000; in denormal_mulf() 161 static long long denormal_muld(long long hx, long long hy) in denormal_muld() argument 167 ix = hx & 0x7fffffffffffffffLL; in denormal_muld() 170 return ((hx ^ hy) & 0x8000000000000000LL); in denormal_muld() 195 ix |= (hx ^ hy) & 0x8000000000000000LL; in denormal_muld() 252 static int denormal_addf(int hx, int hy) in denormal_addf() argument 257 if ((hx ^ hy) & 0x80000000) { in denormal_addf() [all …]
|
| /linux/arch/sh/kernel/cpu/sh4/ |
| H A D | fpu.c | 244 unsigned int hx, hy; in ieee_fpe_handler() local 248 hx = tsk->thread.xstate->hardfpu.fp_regs[n]; in ieee_fpe_handler() 254 && (prec && ((hx & 0x7fffffff) < 0x00100000 in ieee_fpe_handler() 259 llx = ((long long)hx << 32) in ieee_fpe_handler() 267 && (!prec && ((hx & 0x7fffffff) < 0x00800000 in ieee_fpe_handler() 270 hx = float32_mul(hx, hy); in ieee_fpe_handler() 271 tsk->thread.xstate->hardfpu.fp_regs[n] = hx; in ieee_fpe_handler() 282 unsigned int hx, hy; in ieee_fpe_handler() local 286 hx = tsk->thread.xstate->hardfpu.fp_regs[n]; in ieee_fpe_handler() 292 && (prec && ((hx & 0x7fffffff) < 0x00100000 in ieee_fpe_handler() [all …]
|
| /linux/drivers/net/wireless/mediatek/mt7601u/ |
| H A D | trace.h | 120 "%d p:%08x req:%02hhx %02hhx val:%04hx %04hx buf:%d %d", 260 TP_printk(DEV_PR_FMT "rxi:%08x ctl:%08x frag_sn:%04hx rate:%04hx " 293 TP_printk(DEV_PR_FMT "skb:%p sta:%p flg:%04hx rate_ctl:%04hx " 294 "ack:%02hhx wcid:%02hhx len_ctl:%05hx", DEV_PR_ARG,
|
| H A D | phy.c | 701 "TSSI_init:%hhx db:%hx hvga:%hhx hvga_db:%hx off_db:%hx\n", in mt7601u_tssi_dc_gain_cal() 901 dev_dbg(dev->dev, "tssi dc:%04hx db:%04hx hvga:%d\n", in mt7601u_tssi_cal()
|
| /linux/drivers/net/ethernet/mellanox/mlx5/core/esw/diag/ |
| H A D | bridge_tracepoint.h | 32 TP_printk("net_device=%s addr=%pM vid=%hu flags=%hx used=%u", 67 TP_printk("vid=%hu flags=%hx", 96 TP_printk("vport_num=%hu esw_owner_vhca_id=%hu flags=%hx",
|
| /linux/samples/hidraw/ |
| H A D | hid-example.c | 109 printf("\tvendor: 0x%04hx\n", info.vendor); in main() 110 printf("\tproduct: 0x%04hx\n", info.product); in main()
|
| /linux/arch/sh/mm/ |
| H A D | alignment.c | 101 "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n", in unaligned_fixups_notify() 106 "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n", in unaligned_fixups_notify()
|
| /linux/arch/x86/kernel/fpu/ |
| H A D | init.c | 72 pr_info("x86/fpu: Probing for FPU: FSW=0x%04hx FCW=0x%04hx\n", fsw, fcw); in fpu__probe_without_cpuid()
|
| /linux/include/trace/events/ |
| H A D | mdio.h | 35 TP_printk("%s %-5s phy:0x%02hhx reg:0x%02x val:0x%04hx",
|
| /linux/drivers/hwmon/ |
| H A D | sch56xx-common.c | 154 pr_err("Max retries exceeded reading virtual register 0x%04hx (%d)\n", in sch56xx_send_cmd() 171 pr_warn("EC reports: 0x%02x reading virtual register 0x%04hx\n", in sch56xx_send_cmd() 175 pr_err("Max retries exceeded reading virtual register 0x%04hx (%d)\n", in sch56xx_send_cmd()
|
| /linux/drivers/net/wireless/zydas/zd1211rw/ |
| H A D | zd_chip.c | 1004 dev_dbg_f(zd_chip_dev(chip), "FW_FIRMWARE_VER %#06hx\n", values[0]); in dump_fw_registers() 1005 dev_dbg_f(zd_chip_dev(chip), "FW_USB_SPEED %#06hx\n", values[1]); in dump_fw_registers() 1006 dev_dbg_f(zd_chip_dev(chip), "FW_FIX_TX_RATE %#06hx\n", values[2]); in dump_fw_registers() 1007 dev_dbg_f(zd_chip_dev(chip), "FW_LINK_STATUS %#06hx\n", values[3]); in dump_fw_registers() 1022 dev_info(zd_chip_dev(chip),"firmware version %04hx\n", version); in print_fw_version() 1025 "%04hx", version); in print_fw_version() 1099 dev_dbg_f(zd_chip_dev(chip), "fw_regs_base: %#06hx\n", in read_fw_regs_offset()
|
| /linux/arch/riscv/kernel/ |
| H A D | traps.c | 66 p += sprintf(p, i == 0 ? "(%04hx) " : "%04hx ", val); in dump_instr()
|
| /linux/arch/x86/mm/ |
| H A D | fault.c | 489 pr_alert("%s: 0x%hx -- out of bounds\n", name, index); in show_ldttss() 495 pr_alert("%s: 0x%hx -- GDT entry is not readable\n", in show_ldttss() 504 pr_alert("%s: 0x%hx -- base=0x%lx limit=0x%x\n", in show_ldttss() 574 pr_alert("IDT: 0x%lx (limit=0x%hx) GDT: 0x%lx (limit=0x%hx)\n", in show_fault_oops()
|
| /linux/tools/debugging/ |
| H A D | kernel-chktaint | 22 if [ "$1"x == "--helpx" ] || [ "$1"x == "-hx" ] ; then
|
| /linux/drivers/video/backlight/ |
| H A D | hx8357.c | 3 * Driver for the Himax HX-8357 LCD Controller 649 MODULE_DESCRIPTION("Himax HX-8357 LCD Driver");
|
| /linux/drivers/net/phy/ |
| H A D | dp83640.c | 689 phydev_info(master, "master PTP_STS 0x%04hx\n", val); in recalibrate() 691 phydev_info(master, "master PTP_ESTS 0x%04hx\n", val); in recalibrate() 700 phydev_info(tmp->phydev, "slave PTP_STS 0x%04hx\n", val); in recalibrate() 702 phydev_info(tmp->phydev, "slave PTP_ESTS 0x%04hx\n", val); in recalibrate()
|
| /linux/drivers/i2c/busses/ |
| H A D | i2c-sis630.c | 455 dev_dbg(&sis630_dev->dev, "ACPI base at 0x%04hx\n", acpi_base); in sis630_setup() 462 dev_dbg(&sis630_dev->dev, "SMBus base at 0x%04hx\n", smbus_base); in sis630_setup()
|
| /linux/tools/testing/selftests/net/lib/ |
| H A D | csum.c | 596 fprintf(stderr, "rx: pkt: sport=%hu len=%u csum=0x%hx verify=0x%hx\n", in recv_verify_csum() 609 fprintf(stderr, "pkt: zero csum: field should be 0xFFFF, is 0x%hx\n", csum_field); in recv_verify_csum()
|
| /linux/drivers/media/radio/si470x/ |
| H A D | radio-si470x-i2c.c | 408 dev_info(&client->dev, "DeviceID=0x%4.4hx ChipID=0x%4.4hx\n", in si470x_i2c_probe()
|
| /linux/sound/soc/amd/yc/ |
| H A D | acp6x-mach.c | 521 DMI_MATCH(DMI_PRODUCT_NAME, "Vector A16 HX A8WHG"), 528 DMI_MATCH(DMI_PRODUCT_NAME, "Raider A18 HX A9WJG"),
|