Home
last modified time | relevance | path

Searched refs:hf (Results 1 – 25 of 29) sorted by relevance

12

/openbmc/linux/drivers/net/can/usb/
H A Dgs_usb.c518 const struct gs_host_frame *hf) in gs_usb_set_timestamp() argument
522 if (hf->flags & GS_CAN_FLAG_FD) in gs_usb_set_timestamp()
523 timestamp = le32_to_cpu(hf->canfd_ts->timestamp_us); in gs_usb_set_timestamp()
525 timestamp = le32_to_cpu(hf->classic_can_ts->timestamp_us); in gs_usb_set_timestamp()
534 const struct gs_host_frame *hf) in gs_usb_rx_offload() argument
540 const u32 ts = gs_usb_set_timestamp(dev, skb, hf); in gs_usb_rx_offload()
553 const struct gs_host_frame *hf) in gs_usb_get_echo_skb() argument
556 const u32 echo_id = hf->echo_id; in gs_usb_get_echo_skb()
560 const u32 ts = gs_usb_set_timestamp(dev, skb, hf); in gs_usb_get_echo_skb()
579 struct gs_host_frame *hf = urb->transfer_buffer; in gs_usb_receive_bulk_callback() local
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libusbgx/libusbgx/
H A D0001-fix-stack-buffer-overflow-in-usbg_f_foo_attr_val-pro.patch44 @@ -137,7 +132,7 @@ int usbg_f_hid_get_attr_val(usbg_f_hid *hf, enum usbg_f_hid_attr attr,
47 int usbg_f_hid_set_attr_val(usbg_f_hid *hf, enum usbg_f_hid_attr attr,
53 @@ -173,8 +168,9 @@ static inline int usbg_f_hid_get_protocol(usbg_f_hid *hf,
54 static inline int usbg_f_hid_set_protocol(usbg_f_hid *hf,
57 - return usbg_f_hid_set_attr_val(hf, USBG_F_HID_PROTOCOL,
61 + return usbg_f_hid_set_attr_val(hf, USBG_F_HID_PROTOCOL, &val);
65 @@ -199,8 +195,8 @@ static inline int usbg_f_hid_get_report_desc(usbg_f_hid *hf,
66 static inline int usbg_f_hid_set_report_desc(usbg_f_hid *hf,
69 - return usbg_f_hid_set_attr_val(hf, USBG_F_HID_REPORT_DESC,
72 + return usbg_f_hid_set_attr_val(hf, USBG_F_HID_REPORT_DESC, &val);
[all …]
/openbmc/linux/tools/power/pm-graph/
H A Dbootgraph.py632 hf = open(sysvals.htmlfile, 'w')
652 aslib.addCSS(hf, sysvals, 1, False, extra)
655 hf.write(devtl.html)
679 hf.write(html)
683 aslib.addCallgraphs(sysvals, hf, data)
687 hf.write('<div id="testlog" style="display:none;">\n'+sysvals.logmsg+'</div>\n')
690 hf.write('<div id="dmesglog" style="display:none;">\n')
693 hf.write(line)
694 hf.write('</div>\n')
697 aslib.addScriptCode(hf, [data])
[all …]
H A Dsleepgraph.py4212 def callgraphHTML(sv, hf, num, cg, title, color, devid): argument
4227 hf.write(html_func_top.format(cgid, color, num, title, flen))
4238 hf.write(html_func_leaf.format(line.name, flen))
4240 hf.write(html_func_end)
4242 hf.write(html_func_start.format(num, line.name, flen))
4244 hf.write(html_func_end)
4247 def addCallgraphs(sv, hf, data): argument
4248 hf.write('<section id="callgraphs" class="callgraph">\n')
4275 num = callgraphHTML(sv, hf, num, cg,
4279 num = callgraphHTML(sv, hf, num, cg,
[all …]
/openbmc/linux/drivers/gpu/ipu-v3/
H A Dipu-common.c139 u32 r90, vf, hf; in ipu_degrees_to_rot_mode() local
143 vf = hf = r90 = 0; in ipu_degrees_to_rot_mode()
146 vf = hf = 0; in ipu_degrees_to_rot_mode()
150 vf = hf = 1; in ipu_degrees_to_rot_mode()
154 vf = hf = r90 = 1; in ipu_degrees_to_rot_mode()
160 hf ^= (u32)hflip; in ipu_degrees_to_rot_mode()
163 *mode = (enum ipu_rotate_mode)((r90 << 2) | (hf << 1) | vf); in ipu_degrees_to_rot_mode()
171 u32 r90, vf, hf; in ipu_rot_mode_to_degrees() local
174 hf = ((u32)mode >> 1) & 0x1; in ipu_rot_mode_to_degrees()
176 hf ^= (u32)hflip; in ipu_rot_mode_to_degrees()
[all …]
/openbmc/linux/drivers/char/
H A Ddsp56k.c362 struct dsp56k_host_flags __user *hf = argp; in dsp56k_ioctl() local
364 if(get_user(dir, &hf->dir) < 0) in dsp56k_ioctl()
366 if(get_user(out, &hf->out) < 0) in dsp56k_ioctl()
385 return put_user(status, &hf->status); in dsp56k_ioctl()
/openbmc/openbmc/poky/meta/conf/machine/include/arm/
H A DREADME16 <armversion>[t][e][hf][b][-vfp][-neon]
33 When the callconvention-hard is enabled, "hf" is specified, otherwise it
H A Dfeature-arm-vfp.inc16 ARMPKGSFX_EABI = "${@ 'hf' if (d.getVar('TUNE_CCARGS_MFLOAT') == 'h…
H A Dfeature-arm-neon.inc5 # 'vfp', -mfloat-abi parameter and 'hf' suffix is implemented in feature-arm-vfp.inc
/openbmc/linux/drivers/video/fbdev/
H A Dacornfb.h93 u_int hf; member
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/
H A Dlibgcc.inc16 if [ -n "${@ bb.utils.contains('TUNE_CCARGS_MFLOAT', 'hard', 'hf', '', d)}" ]; then
H A Dgcc-common.inc25 if d.getVar('ARMPKGSFX_EABI') == "hf" and d.getVar('TRANSLATED_TARGET_ARCH') == "arm":
/openbmc/qemu/tests/unit/
H A Dtest-smp-parse.c55 he, e, hf, f, hg, g) \ argument
62 .has_threads = hf, .threads = f, \
70 #define SMP_CONFIG_WITH_CLUSTERS(ha, a, hb, b, hc, c, hd, d, he, e, hf, f) \ argument
77 .has_maxcpus = hf, .maxcpus = f, \
85 d, he, e, hf, f, hg, g) \ argument
92 .has_threads = hf, .threads = f, \
/openbmc/openbmc/poky/documentation/dev-manual/
H A Dprebuilt-libraries.rst36 ├── build-arm-v6-hf
38 ├── build-arm-v7-hf
46 ├── build-mips-eglibc-hf
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/
H A D0009-gcc-armv4-pass-fix-v4bx-to-linker-to-support-EABI.patch26 SYSTEMLIBS_DIR "ld-musl-arm" MUSL_DYNAMIC_LINKER_E "%{mfloat-abi=hard:hf}%{mfdpic:-fdpic}.so.1"
/openbmc/linux/drivers/net/wireless/broadcom/b43/
H A Dmain.c1092 u64 hf; in b43_dump_keymemory() local
1098 hf = b43_hf_read(dev); in b43_dump_keymemory()
1100 !!(hf & B43_HF_USEDEFKEYS)); in b43_dump_keymemory()
4694 u64 hf; in b43_bluetooth_coext_enable() local
4703 hf = b43_hf_read(dev); in b43_bluetooth_coext_enable()
4705 hf |= B43_HF_BTCOEXALT; in b43_bluetooth_coext_enable()
4707 hf |= B43_HF_BTCOEX; in b43_bluetooth_coext_enable()
4708 b43_hf_write(dev, hf); in b43_bluetooth_coext_enable()
4817 u64 hf; in b43_wireless_core_init() local
4860 hf = b43_hf_read(dev); in b43_wireless_core_init()
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/libpwquality/files/
H A D0001-Use-setuptools-instead-of-distutils.patch78 hf = open(headerfile, 'r')
/openbmc/linux/scripts/package/
H A Dmkdebian59 debarch=arm$(if_enabled_echo CONFIG_VFP hf el)
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/dovecot/
H A Ddovecot_2.3.21.1.bb31 # From native build in armv7a-hf/eglibc
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/bluealsa/
H A Dbluealsa_4.3.0.bb73 # Usually could choose profiles with it: a2dp-source a2dp-sink hfp-hf hfp-ag hsp-hs hsp-ag hfp-ofono
/openbmc/u-boot/doc/
H A DREADME.video95 normally given in the name of your toolchain, e.g. arm-linux-gnueabihf (hf
/openbmc/linux/drivers/net/wireless/broadcom/b43legacy/
H A Dmain.c3257 u32 hf; in b43legacy_wireless_core_init() local
3295 hf = b43legacy_hf_read(dev); in b43legacy_wireless_core_init()
3297 hf |= B43legacy_HF_SYMW; in b43legacy_wireless_core_init()
3299 hf |= B43legacy_HF_GDCW; in b43legacy_wireless_core_init()
3301 hf |= B43legacy_HF_OFDMPABOOST; in b43legacy_wireless_core_init()
3303 hf |= B43legacy_HF_SYMW; in b43legacy_wireless_core_init()
3305 hf &= ~B43legacy_HF_GDCW; in b43legacy_wireless_core_init()
3307 b43legacy_hf_write(dev, hf); in b43legacy_wireless_core_init()
/openbmc/openbmc/poky/documentation/migration-guides/
H A Drelease-notes-4.0.2.rst144 - rust-common: Fix sstate signatures between arm hf and non-hf
/openbmc/openbmc/poky/meta/classes-recipe/
H A Drust-common.bbclass65 libc = bb.utils.contains('TUNE_FEATURES', 'callconvention-hard', 'hf', '', d)
/openbmc/linux/drivers/video/fbdev/omap2/omapfb/dss/
H A Ddispc.c2208 unsigned int hf, vf; in calc_core_clk_34xx() local
2216 hf = 4; in calc_core_clk_34xx()
2218 hf = 3; in calc_core_clk_34xx()
2220 hf = 2; in calc_core_clk_34xx()
2222 hf = 1; in calc_core_clk_34xx()
2228 return pclk * vf * hf; in calc_core_clk_34xx()

12