Home
last modified time | relevance | path

Searched refs:u (Results 176 – 200 of 4373) sorted by relevance

12345678910>>...175

/openbmc/linux/net/netfilter/
H A Dnf_conntrack_proto_icmpv6.c42 tuple->dst.u.icmp.type = hp->icmp6_type; in icmpv6_pkt_to_tuple()
43 tuple->src.u.icmp.id = hp->icmp6_identifier; in icmpv6_pkt_to_tuple()
44 tuple->dst.u.icmp.code = hp->icmp6_code; in icmpv6_pkt_to_tuple()
71 int type = orig->dst.u.icmp.type - 128; in nf_conntrack_invert_icmpv6_tuple()
75 tuple->src.u.icmp.id = orig->src.u.icmp.id; in nf_conntrack_invert_icmpv6_tuple()
76 tuple->dst.u.icmp.type = invmap[type] - 1; in nf_conntrack_invert_icmpv6_tuple()
77 tuple->dst.u.icmp.code = orig->dst.u.icmp.code; in nf_conntrack_invert_icmpv6_tuple()
102 int type = ct->tuplehash[0].tuple.dst.u.icmp.type - 128; in nf_conntrack_icmpv6_packet()
258 if (tuple->dst.u.icmp.type < 128 || in icmpv6_nlattr_to_tuple()
259 tuple->dst.u.icmp.type - 128 >= sizeof(invmap) || in icmpv6_nlattr_to_tuple()
[all …]
/openbmc/linux/arch/um/kernel/skas/
H A Dmmu.c34 to_mm->id.u.pid = copy_context_skas0(stack, in init_new_context()
35 from_mm->id.u.pid); in init_new_context()
36 else to_mm->id.u.pid = start_userspace(stack); in init_new_context()
39 if (to_mm->id.u.pid < 0) { in init_new_context()
40 ret = to_mm->id.u.pid; in init_new_context()
70 if (mmu->id.u.pid < 2) { in destroy_context()
72 mmu->id.u.pid); in destroy_context()
75 os_kill_ptraced_process(mmu->id.u.pid, 1); in destroy_context()
/openbmc/linux/include/net/
H A Dflow.h159 } u; member
160 #define flowi_oif u.__fl_common.flowic_oif
161 #define flowi_iif u.__fl_common.flowic_iif
163 #define flowi_mark u.__fl_common.flowic_mark
164 #define flowi_tos u.__fl_common.flowic_tos
165 #define flowi_scope u.__fl_common.flowic_scope
166 #define flowi_proto u.__fl_common.flowic_proto
167 #define flowi_flags u.__fl_common.flowic_flags
168 #define flowi_secid u.__fl_common.flowic_secid
170 #define flowi_uid u.__fl_common.flowic_uid
[all …]
/openbmc/linux/drivers/accessibility/speakup/
H A Dspeakup_audptr.c32 [CAPS_START_ID] = { CAPS_START, .u.s = {"\x05[f99]" } },
33 [CAPS_STOP_ID] = { CAPS_STOP, .u.s = {"\x05[f80]" } },
34 [RATE_ID] = { RATE, .u.n = {"\x05[r%d]", 10, 0, 20, 100, -10, NULL } },
35 [PITCH_ID] = { PITCH, .u.n = {"\x05[f%d]", 80, 39, 4500, 0, 0, NULL } },
36 [VOL_ID] = { VOL, .u.n = {"\x05[g%d]", 21, 0, 40, 0, 0, NULL } },
37 [TONE_ID] = { TONE, .u.n = {"\x05[s%d]", 9, 0, 63, 0, 0, NULL } },
38 [PUNCT_ID] = { PUNCT, .u.n = {"\x05[A%c]", 0, 0, 3, 0, 0, "nmsa" } },
39 [DIRECT_ID] = { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
170 module_param_named(rate, vars[RATE_ID].u.n.default_val, int, 0444);
172 module_param_named(vol, vars[VOL_ID].u.n.default_val, int, 0444);
[all …]
H A Dspeakup_acntsa.c33 [CAPS_START_ID] = { CAPS_START, .u.s = {"\033P8" } },
34 [CAPS_STOP_ID] = { CAPS_STOP, .u.s = {"\033P5" } },
36 [PITCH_ID] = { PITCH, .u.n = {"\033P%d", 5, 0, 9, 0, 0, NULL } },
37 [VOL_ID] = { VOL, .u.n = {"\033A%d", 9, 0, 9, 0, 0, NULL } },
38 [TONE_ID] = { TONE, .u.n = {"\033V%d", 5, 0, 9, 0, 0, NULL } },
39 [DIRECT_ID] = { DIRECT, .u.n = {NULL, 0, 0, 1, 0, 0, NULL } },
142 module_param_named(rate, vars[RATE_ID].u.n.default_val, int, 0444);
143 module_param_named(pitch, vars[PITCH_ID].u.n.default_val, int, 0444);
144 module_param_named(vol, vars[VOL_ID].u.n.default_val, int, 0444);
145 module_param_named(tone, vars[TONE_ID].u.n.default_val, int, 0444);
[all …]
H A Dvarhandlers.c193 val = var_data->u.n.value; in spk_set_num_var()
196 if (input < var_data->u.n.low || input > var_data->u.n.high) in spk_set_num_var()
201 val = var_data->u.n.default_val; in spk_set_num_var()
214 if (val < var_data->u.n.low || val > var_data->u.n.high) in spk_set_num_var()
217 var_data->u.n.value = val; in spk_set_num_var()
228 val *= var_data->u.n.multiplier; in spk_set_num_var()
229 val += var_data->u.n.offset; in spk_set_num_var()
238 if (!var_data->u.n.synth_fmt) in spk_set_num_var()
244 if (!var_data->u.n.out_str) in spk_set_num_var()
248 var_data->u.n.out_str[val]); in spk_set_num_var()
[all …]
/openbmc/qemu/target/arm/
H A Dcpu.c1955 u = FIELD_DP32(u, MVFR0, FPSP, 0); in arm_cpu_realizefn()
1956 u = FIELD_DP32(u, MVFR0, FPDP, 0); in arm_cpu_realizefn()
1958 u = FIELD_DP32(u, MVFR0, FPSQRT, 0); in arm_cpu_realizefn()
1967 u = FIELD_DP32(u, MVFR1, FPFTZ, 0); in arm_cpu_realizefn()
1968 u = FIELD_DP32(u, MVFR1, FPDNAN, 0); in arm_cpu_realizefn()
1969 u = FIELD_DP32(u, MVFR1, FPHP, 0); in arm_cpu_realizefn()
1976 u = FIELD_DP32(u, MVFR2, FPMISC, 0); in arm_cpu_realizefn()
2007 u = FIELD_DP32(u, ID_ISAR5, AES, 0); in arm_cpu_realizefn()
2010 u = FIELD_DP32(u, ID_ISAR5, RDM, 0); in arm_cpu_realizefn()
2015 u = FIELD_DP32(u, ID_ISAR6, DP, 0); in arm_cpu_realizefn()
[all …]
/openbmc/linux/sound/usb/usx2y/
H A Dusb_stream.c52 int u, p; in init_pipe_urbs() local
57 for (u = 0; u < USB_STREAM_NURBS; in init_pipe_urbs()
92 int u; in init_urbs() local
94 for (u = 0; u < USB_STREAM_NURBS; ++u) { in init_urbs()
135 for (u = 0; u < USB_STREAM_NURBS; ++u) { in usb_stream_free()
273 int u; in subs_set_complete() local
275 for (u = 0; u < USB_STREAM_NURBS; u++) { in subs_set_complete()
674 int u, err; in usb_stream_start() local
691 for (u = 0; u < 2; u++) { in usb_stream_start()
772 int u; in usb_stream_stop() local
[all …]
/openbmc/openbmc/meta-hpe/meta-gxp/recipes-bsp/u-boot/
H A Du-boot-gxp_2020.10.bb1 require recipes-bsp/u-boot/u-boot-common.inc
2 require recipes-bsp/u-boot/u-boot.inc
3 require u-boot-common-gxp_2020.10.inc
8 PROVIDES += "u-boot"
/openbmc/qemu/tests/tcg/i386/
H A Dtest-i386-fxam.c6 union u { union
11 volatile union u ld_pseudo_m16382 = { .s = { UINT64_C(1) << 63, 0 } };
12 volatile union u ld_pseudo_nm16382 = { .s = { UINT64_C(1) << 63, 0x8000 } };
13 volatile union u ld_invalid_1 = { .s = { 1, 1234 } };
14 volatile union u ld_invalid_2 = { .s = { 0, 1234 } };
15 volatile union u ld_invalid_3 = { .s = { 0, 0x7fff } };
16 volatile union u ld_invalid_4 = { .s = { (UINT64_C(1) << 63) - 1, 0x7fff } };
17 volatile union u ld_invalid_n1 = { .s = { 1, 0x8123 } };
18 volatile union u ld_invalid_n2 = { .s = { 0, 0x8123 } };
19 volatile union u ld_invalid_n3 = { .s = { 0, 0xffff } };
[all …]
/openbmc/linux/drivers/net/wireless/ath/ath9k/
H A Dmac.h315 } u; member
321 #define ds_ctl2 u.tx.ctl2
322 #define ds_ctl3 u.tx.ctl3
323 #define ds_ctl4 u.tx.ctl4
324 #define ds_ctl5 u.tx.ctl5
325 #define ds_ctl6 u.tx.ctl6
326 #define ds_ctl7 u.tx.ctl7
327 #define ds_ctl8 u.tx.ctl8
328 #define ds_ctl9 u.tx.ctl9
329 #define ds_ctl10 u.tx.ctl10
[all …]
/openbmc/u-boot/arch/arm/dts/
H A Dimx6ul-u-boot.dtsi8 u-boot,dm-spl;
13 u-boot,dm-spl;
17 u-boot,dm-spl;
21 u-boot,dm-spl;
25 u-boot,dm-spl;
29 u-boot,dm-spl;
H A Dimx6qdl-u-boot.dtsi8 u-boot,dm-spl;
11 u-boot,dm-spl;
13 u-boot,dm-spl;
18 u-boot,dm-spl;
24 u-boot,dm-spl;
28 u-boot,dm-spl;
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/vpnc/vpnc/
H A D0009-reduce-lifetime-value.patch26 a->u.lots.length = 4;
27 a->u.lots.data = xallocc(a->u.lots.length);
28 - *((uint32_t *) a->u.lots.data) = htonl(2147483);
29 + *((uint32_t *) a->u.lots.data) = htonl(28800);
35 a->u.lots.length = 4;
36 a->u.lots.data = xallocc(a->u.lots.length);
37 - *((uint32_t *) a->u.lots.data) = htonl(2147483);
38 + *((uint32_t *) a->u.lots.data) = htonl(28800);
/openbmc/u-boot/board/synopsys/hsdk/
H A Dconfig.mk5 bsp-generate: u-boot u-boot.bin
7 --arc-id 0x52 --image $(srctree)/u-boot.bin \
8 --elf $(srctree)/u-boot
10 -d $(srctree)/u-boot-update.txt \
11 $(srctree)/u-boot-update.scr &> /dev/null
/openbmc/linux/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_dcb.c281 int dcb_type = pcmd->u.dcb.pgid.type; in cxgb4_dcb_handle_fw_update()
289 ((pcmd->u.dcb.control.all_syncd_pkd & in cxgb4_dcb_handle_fw_update()
552 pcmd.u.dcb.pgrate.pgrate[pgid] = bw_per; in cxgb4_setpgtccfg_tx()
585 *bw_per = pcmd.u.dcb.pgrate.pgrate[pgid]; in cxgb4_getpgbwgcfg()
616 pcmd.u.dcb.pgrate.pgrate[pgid] = bw_per; in cxgb4_setpgbwgcfg_tx()
663 pcmd.u.dcb.pfc.pfcen = pi->dcb.pfcen; in cxgb4_setpfccfg()
676 pi->dcb.pfcen = pcmd.u.dcb.pfc.pfcen; in cxgb4_setpfccfg()
803 pcmd.u.dcb.app_priority.idx = i; in __cxgb4_getapp()
854 pcmd.u.dcb.app_priority.idx = i; in __cxgb4_setapp()
887 pcmd.u.dcb.app_priority.idx = i; in __cxgb4_setapp()
[all …]
/openbmc/u-boot/doc/
H A DREADME.ublimage14 ./tools/mkimage -l <u-boot_file>
19 -d <u-boot binary> <output image file>
24 -d u-boot-nand.bin u-boot.ubl
28 $ make u-boot.ubl
77 Structure of the u-boot.ubl binary:
84 -> u-boot-spl-16k.bin
88 2) compile u-boot.bin ("normal" u-boot)
89 -> u-boot.bin
91 3) create u-boot-nand.bin = u-boot-spl-16k.bin + u-boot.bin
93 4) create u-boot.ubl, size = 1 page size NAND
[all …]
/openbmc/linux/drivers/gpu/drm/xen/
H A Dxen_drm_front_evtchnl.c37 rp = evtchnl->u.req.ring.sring->rsp_prod; in evtchnl_interrupt_ctrl()
53 evtchnl->u.req.resp_status = resp->status; in evtchnl_interrupt_ctrl()
54 complete(&evtchnl->u.req.completion); in evtchnl_interrupt_ctrl()
64 evtchnl->u.req.ring.rsp_cons = i; in evtchnl_interrupt_ctrl()
129 page = evtchnl->u.req.ring.sring; in evtchnl_free()
131 page = evtchnl->u.evt.page; in evtchnl_free()
139 evtchnl->u.req.resp_status = -EIO; in evtchnl_free()
140 complete_all(&evtchnl->u.req.completion); in evtchnl_free()
179 mutex_init(&evtchnl->u.req.req_io_lock); in evtchnl_alloc()
185 evtchnl->u.evt.page = page; in evtchnl_alloc()
[all …]
/openbmc/linux/include/linux/
H A Detherdevice.h461 u64 u = 0; in ether_addr_to_u64() local
465 u = u << 8 | addr[i]; in ether_addr_to_u64()
467 return u; in ether_addr_to_u64()
480 addr[i] = u & 0xff; in u64_to_ether_addr()
481 u = u >> 8; in u64_to_ether_addr()
494 u--; in eth_addr_dec()
495 u64_to_ether_addr(u, addr); in eth_addr_dec()
506 u++; in eth_addr_inc()
507 u64_to_ether_addr(u, addr); in eth_addr_inc()
520 u += offset; in eth_addr_add()
[all …]
/openbmc/linux/net/mac80211/
H A Dht.c57 ht_capa = &sdata->u.mgd.ht_capa; in ieee80211_apply_htcap_overrides()
489 skb_put(skb, 1 + sizeof(mgmt->u.action.u.delba)); in ieee80211_send_delba()
492 mgmt->u.action.u.delba.action_code = WLAN_ACTION_DELBA; in ieee80211_send_delba()
496 mgmt->u.action.u.delba.params = cpu_to_le16(params); in ieee80211_send_delba()
497 mgmt->u.action.u.delba.reason_code = cpu_to_le16(reason_code); in ieee80211_send_delba()
509 params = le16_to_cpu(mgmt->u.action.u.delba.params); in ieee80211_process_delba()
516 le16_to_cpu(mgmt->u.action.u.delba.reason_code)); in ieee80211_process_delba()
561 action_frame->u.action.u.ht_smps.action = WLAN_HT_ACTION_SMPS; in ieee80211_send_smps_action()
568 action_frame->u.action.u.ht_smps.smps_control = in ieee80211_send_smps_action()
572 action_frame->u.action.u.ht_smps.smps_control = in ieee80211_send_smps_action()
[all …]
H A Dmlme.c151 link->u.mgd.conn_flags |= in ieee80211_handle_puncturing_bitmap()
593 link->u.mgd.bssid); in ieee80211_config_bw()
1896 link->u.mgd.bssid, in ieee80211_sta_process_chanswitch()
1909 link->u.mgd.bssid, in ieee80211_sta_process_chanswitch()
2342 ifmgd = &sdata->u.mgd; in ieee80211_dynamic_ps_enable_work()
6120 if ((ncrc == link->u.mgd.beacon_crc && link->u.mgd.beacon_crc_valid) || in ieee80211_rx_mgmt_beacon()
6315 u.action.u.chan_switch.variable); in ieee80211_sta_rx_queued_mgmt()
6322 mgmt->u.action.u.chan_switch.variable, in ieee80211_sta_rx_queued_mgmt()
6336 u.action.u.ext_chan_switch.variable); in ieee80211_sta_rx_queued_mgmt()
6346 mgmt->u.action.u.ext_chan_switch.variable, in ieee80211_sta_rx_queued_mgmt()
[all …]
/openbmc/linux/tools/usb/usbip/libsrc/
H A Dnames.c300 unsigned int u; in parse() local
353 if (new_class(cp, u)) in parse()
355 linectr, u, cp); in parse()
358 lastclass = u; in parse()
379 if (new_vendor(cp, u)) in parse()
381 linectr, u, cp); in parse()
383 lastvendor = u; in parse()
410 lastclass, u, cp); in parse()
411 lastsubclass = u; in parse()
438 u)) in parse()
[all …]
/openbmc/linux/net/ipv4/
H A Dxfrm4_policy.c73 const struct flowi4 *fl4 = &fl->u.ip4; in xfrm4_fill_dst()
75 xdst->u.rt.rt_iif = fl4->flowi4_iif; in xfrm4_fill_dst()
77 xdst->u.dst.dev = dev; in xfrm4_fill_dst()
82 xdst->u.rt.rt_is_input = rt->rt_is_input; in xfrm4_fill_dst()
85 xdst->u.rt.rt_type = rt->rt_type; in xfrm4_fill_dst()
87 xdst->u.rt.rt_gw_family = rt->rt_gw_family; in xfrm4_fill_dst()
89 xdst->u.rt.rt_gw4 = rt->rt_gw4; in xfrm4_fill_dst()
91 xdst->u.rt.rt_gw6 = rt->rt_gw6; in xfrm4_fill_dst()
92 xdst->u.rt.rt_pmtu = rt->rt_pmtu; in xfrm4_fill_dst()
94 rt_add_uncached_list(&xdst->u.rt); in xfrm4_fill_dst()
[all …]
/openbmc/qemu/backends/tpm/
H A Dtpm_ioctl.h39 } u; member
51 } u; member
63 } u; member
79 } u; member
92 } u; member
126 } u; member
161 } u; member
174 } u; member
199 } u; member
225 } u; member
[all …]
/openbmc/linux/drivers/video/fbdev/via/
H A Dviafbdev.c390 } u; in viafb_ioctl() local
400 memset(&u, 0, sizeof(u)); in viafb_ioctl()
439 u.viamode.bpp_sec = 0; in viafb_ioctl()
441 if (copy_to_user(argp, &u.viamode, sizeof(u.viamode))) in viafb_ioctl()
468 u.viasamm.size_prim = in viafb_ioctl()
475 if (copy_to_user(argp, &u.viasamm, sizeof(u.viasamm))) in viafb_ioctl()
525 if (copy_to_user(argp, &u.active_dev, sizeof(u.active_dev))) in viafb_ioctl()
613 u.panel_pos_size_para.x = u.panel_pos_size_para.y = 0; in viafb_ioctl()
622 u.panel_pos_size_para.x = u.panel_pos_size_para.y = 0; in viafb_ioctl()
632 u.panel_pos_size_para.x = u.panel_pos_size_para.y = 0; in viafb_ioctl()
[all …]

12345678910>>...175