Home
last modified time | relevance | path

Searched full:hx (Results 1 – 25 of 166) sorted by relevance

1234567

/openbmc/linux/tools/arch/x86/lib/
H A Dx86-opcode-map.txt351 10: vmovups Vps,Wps | vmovupd Vpd,Wpd (66) | vmovss Vx,Hx,Wss (F3),(v1) | vmovsd Vx,Hx,Wsd (F2),(v1)
352 11: vmovups Wps,Vps | vmovupd Wpd,Vpd (66) | vmovss Wss,Hx,Vss (F3),(v1) | vmovsd Wsd,Hx,Vsd (F2),(…
355 14: vunpcklps Vx,Hx,Wx | vunpcklpd Vx,Hx,Wx (66)
356 15: vunpckhps Vx,Hx,Wx | vunpckhpd Vx,Hx,Wx (66)
433 5a: vcvtps2pd Vpd,Wps | vcvtpd2ps Vps,Wpd (66) | vcvtss2sd Vsd,Hx,Wss (F3),(v1) | vcvtsd2ss Vss,Hx,…
440 60: punpcklbw Pq,Qd | vpunpcklbw Vx,Hx,Wx (66),(v1)
441 61: punpcklwd Pq,Qd | vpunpcklwd Vx,Hx,Wx (66),(v1)
442 62: punpckldq Pq,Qd | vpunpckldq Vx,Hx,Wx (66),(v1)
443 63: packsswb Pq,Qq | vpacksswb Vx,Hx,Wx (66),(v1)
444 64: pcmpgtb Pq,Qq | vpcmpgtb Vx,Hx,Wx (66),(v1)
[all …]
/openbmc/linux/arch/x86/lib/
H A Dx86-opcode-map.txt351 10: vmovups Vps,Wps | vmovupd Vpd,Wpd (66) | vmovss Vx,Hx,Wss (F3),(v1) | vmovsd Vx,Hx,Wsd (F2),(v1)
352 11: vmovups Wps,Vps | vmovupd Wpd,Vpd (66) | vmovss Wss,Hx,Vss (F3),(v1) | vmovsd Wsd,Hx,Vsd (F2),(…
355 14: vunpcklps Vx,Hx,Wx | vunpcklpd Vx,Hx,Wx (66)
356 15: vunpckhps Vx,Hx,Wx | vunpckhpd Vx,Hx,Wx (66)
433 5a: vcvtps2pd Vpd,Wps | vcvtpd2ps Vps,Wpd (66) | vcvtss2sd Vsd,Hx,Wss (F3),(v1) | vcvtsd2ss Vss,Hx,…
440 60: punpcklbw Pq,Qd | vpunpcklbw Vx,Hx,Wx (66),(v1)
441 61: punpcklwd Pq,Qd | vpunpcklwd Vx,Hx,Wx (66),(v1)
442 62: punpckldq Pq,Qd | vpunpckldq Vx,Hx,Wx (66),(v1)
443 63: packsswb Pq,Qq | vpacksswb Vx,Hx,Wx (66),(v1)
444 64: pcmpgtb Pq,Qq | vpcmpgtb Vx,Hx,Wx (66),(v1)
[all …]
/openbmc/linux/drivers/media/common/
H A Dcypress_firmware.c42 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 …]
/openbmc/linux/drivers/media/usb/dvb-usb/
H A Ddvb-usb-firmware.c39 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 Ddib0700_core.c509 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()
/openbmc/linux/drivers/isdn/hardware/mISDN/
H A DmISDNipac.c873 waitforCEC(struct hscx_hw *hx) in waitforCEC() argument
878 starb = ReadHSCX(hx, IPAC_STARB); in waitforCEC()
885 pr_debug("%s: B%1d CEC %d us\n", hx->ip->name, hx->bch.nr, in waitforCEC()
888 pr_info("%s: B%1d CEC timeout\n", hx->ip->name, hx->bch.nr); in waitforCEC()
893 waitforXFW(struct hscx_hw *hx) in waitforXFW() argument
898 starb = ReadHSCX(hx, IPAC_STARB); in waitforXFW()
905 pr_debug("%s: B%1d XFW %d us\n", hx->ip->name, hx->bch.nr, in waitforXFW()
908 pr_info("%s: B%1d XFW timeout\n", hx->ip->name, hx->bch.nr); in waitforXFW()
912 hscx_cmdr(struct hscx_hw *hx, u8 cmd) in hscx_cmdr() argument
914 if (hx->ip->type & IPAC_TYPE_IPACX) in hscx_cmdr()
[all …]
/openbmc/linux/arch/sh/kernel/cpu/sh2a/
H A Dfpu.c94 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 …]
/openbmc/linux/arch/sh/kernel/cpu/sh4/
H A Dfpu.c244 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 …]
/openbmc/qemu/docs/devel/
H A Ddocs.rst10 hxtool and .hx files
14 (HMP) commands is written in files with the ``.hx`` suffix. These
22 The syntax of these ``.hx`` files is simple. It is broadly an
36 top level rST file, ``HXFILE`` is the filename of the .hx file without
37 the ``.hx`` extension, and ``LABEL`` is the text provided within the
57 varies between files. For instance in ``qemu-options.hx`` we use
59 text, but in ``hmp-commands.hx`` the C code sections are elements
63 In the file ``qemu-options.hx``, do not try to explicitly define a
/openbmc/linux/lib/
H A Dtest_scanf.c249 simple_numbers_loop(unsigned short, "%hx", "hx", check_ushort); in numbers_simple()
250 simple_numbers_loop(short, "%hx", "hx", check_short); in numbers_simple()
251 simple_numbers_loop(short, "0x%hx", "hi", check_short); in numbers_simple()
252 simple_numbers_loop(unsigned short, "0x%hx", "hx", check_ushort); in numbers_simple()
253 simple_numbers_loop(short, "0x%hx", "hx", check_short); in numbers_simple()
436 numbers_list_8(unsigned short, "%hx", delim, "hx", check_ushort); in numbers_list_h()
437 numbers_list_8(unsigned short, "0x%hx", delim, "hx", check_ushort); in numbers_list_h()
438 numbers_list_8(short, "0x%hx", delim, "hi", check_short); in numbers_list_h()
504 numbers_list_fix_width(unsigned short, "%hx", delim, 4, "hx", check_ushort); in numbers_list_field_width_h()
505 numbers_list_fix_width(unsigned short, "0x%hx", delim, 6, "hx", check_ushort); in numbers_list_field_width_h()
[all …]
/openbmc/qemu/docs/sphinx/
H A Dhxtool.py3 # QEMU hxtool .hx file parsing extension
12 # from .hx files, and insert them all into the current document.
17 # path of the .hx file to process, relative to the source tree.
34 # We parse hx files with a state machine which may be in one of two
84 """Extract rST fragments from the specified .hx file"""
122 hx = os.path.splitext(os.path.basename(hxfile))[0]
123 refline = ".. _" + env.docname + "-" + hx + \
/openbmc/linux/tools/testing/selftests/x86/
H A Dfsgsbase.c171 printf("[OK]\tGSBASE was set as expected (selector 0x%hx)\n", in check_gs_value()
175 printf("[FAIL]\tGSBASE was not as expected: got 0x%lx (selector 0x%hx)\n", in check_gs_value()
182 printf("[OK]\tARCH_GET_GS worked as expected (selector 0x%hx)\n", in check_gs_value()
186 printf("[FAIL]\tARCH_GET_GS was not as expected: got 0x%lx (selector 0x%hx)\n", in check_gs_value()
241 printf("\tother thread: ARCH_SET_GS(0x%lx)%s -- sel is 0x%hx\n", in do_remote_base()
312 printf("[RUN]\tGS = 0x%hx, GSBASE = 0x%lx\n", index, base); in test_wrbase()
329 printf("[FAIL]\tAfter switch, GS = 0x%hx and GSBASE = 0x%lx\n", in test_wrbase()
378 printf("\tBefore schedule, set selector to 0x%hx\n", force_sel); in set_gs_and_switch_to()
412 printf("[OK]\tGS/BASE remained 0x%hx/0x%lx\n", in set_gs_and_switch_to()
420 printf("[OK]\tGS/BASE changed from 0x%hx/0x%lx to 0x%hx/0x%lx because IRET is defective\n", in set_gs_and_switch_to()
[all …]
H A Dioperm.c71 printf("[FAIL]\toutb to 0x%02hx failed\n", port); in expect_ok()
75 printf("[OK]\toutb to 0x%02hx worked\n", port); in expect_ok()
81 printf("[FAIL]\toutb to 0x%02hx worked\n", port); in expect_gp()
85 printf("[OK]\toutb to 0x%02hx failed\n", port); in expect_gp()
H A Diopl.c71 printf("[FAIL]\toutb to 0x%02hx failed\n", port); in expect_ok_outb()
75 printf("[OK]\toutb to 0x%02hx worked\n", port); in expect_ok_outb()
81 printf("[FAIL]\toutb to 0x%02hx worked\n", port); in expect_gp_outb()
85 printf("[OK]\toutb to 0x%02hx failed\n", port); in expect_gp_outb()
H A Dsigreturn.c490 printf("[FAIL]\tSIGTRAP: ss = %hx, frame ss = %hx, ax = %llx\n", in sigtrap()
601 printf("[RUN]\tValid sigreturn: %d-bit CS (%hx), %d-bit SS (%hx%s)\n", in test_valid_sigreturn()
663 printf("[FAIL]\tCS mismatch: requested 0x%hx; got 0x%hx\n", in test_valid_sigreturn()
669 printf("[FAIL]\tSS mismatch: requested 0x%hx; got 0x%hx\n", in test_valid_sigreturn()
710 printf("[RUN]\t%d-bit CS (%hx), bogus SS (%hx)\n", in test_bad_iret()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/postfix/files/
H A D0002-Change-fixed-postconf-to-a-variable-for-cross-compil.patch64 - eval : \${$name=\`bin/postconf -c $CONFIG_DIRECTORY -hx $name\`} ||
65 + eval : \${$name=\`$POSTCONF -c $CONFIG_DIRECTORY -hx $name\`} ||
73 - eval : \${$name=\`bin/postconf -c conf -d -hx $name\`} || exit 1
74 + eval : \${$name=\`$POSTCONF -c conf -d -hx $name\`} || exit 1
/openbmc/linux/drivers/net/wireless/mediatek/mt7601u/
H A Dtrace.h120 "%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,
/openbmc/qemu/docs/system/
H A Dmonitor.rst22 .. hxtool-doc:: hmp-commands.hx
24 .. hxtool-doc:: hmp-commands-info.hx
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/esw/diag/
H A Dbridge_tracepoint.h32 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",
/openbmc/phosphor-dbus-interfaces/yaml/com/ibm/ipzvpd/
H A DVINI.interface.yaml60 - name: HX
63 HX keyword. Slot bifurcation information for PCIe FRUs.
/openbmc/u-boot/drivers/net/
H A De1000_spi.c370 printf("%s: ===== Intel e1000 EEPROM (0x%04hX - 0x%04hX) =====", in do_e1000_spi_show()
374 printf("\n%s: %04hX: ", hw->name, offset + i); in do_e1000_spi_show()
377 printf(" %02hx", buffer[i]); in do_e1000_spi_show()
511 printf("%s: INFO: EEPROM checksum is correct! (0x%04hx)\n", in do_e1000_spi_checksum()
519 E1000_ERR(hw, " ...register was 0x%04hx, calculated 0x%04hx\n", in do_e1000_spi_checksum()
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/
H A Datombios_dp.c326 DRM_DEBUG_KMS("Sink OUI: %02hx%02hx%02hx\n", in amdgpu_atombios_dp_probe_oui()
330 DRM_DEBUG_KMS("Branch OUI: %02hx%02hx%02hx\n", in amdgpu_atombios_dp_probe_oui()
/openbmc/linux/arch/s390/include/asm/trace/
H A Dzcrypt.h105 TP_printk("ptr=%p fc=0x%04x rc=%d dev=0x%02hx domain=0x%04hx",
/openbmc/qemu/hw/audio/
H A Dpl041.h18 #include "pl041.hx"
25 #include "pl041.hx"
/openbmc/u-boot/include/
H A Dinttypes.h223 # define SCNx16 "hx"
228 # define SCNxLEAST16 "hx"

1234567