Home
last modified time | relevance | path

Searched refs:mv (Results 1 – 118 of 118) sorted by relevance

/linux-4.4.14/arch/ia64/kernel/
Dmachvec.c20 struct ia64_machine_vector *mv; in lookup_machvec() local
22 for (mv = machvec_start; mv < machvec_end; ++mv) in lookup_machvec()
23 if (strcmp (mv->name, name) == 0) in lookup_machvec()
24 return mv; in lookup_machvec()
32 struct ia64_machine_vector *mv; in machvec_init() local
36 mv = lookup_machvec(name); in machvec_init()
37 if (!mv) in machvec_init()
41 ia64_mv = *mv; in machvec_init()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/volt/
Dgk20a.c66 int mv; in gk20a_volt_get_cvb_voltage() local
68 mv = DIV_ROUND_CLOSEST(coef->c2 * speedo, s_scale); in gk20a_volt_get_cvb_voltage()
69 mv = DIV_ROUND_CLOSEST((mv + coef->c1) * speedo, s_scale) + coef->c0; in gk20a_volt_get_cvb_voltage()
70 return mv; in gk20a_volt_get_cvb_voltage()
82 int cvb_mv, mv; in gk20a_volt_get_cvb_t_voltage() local
86 mv = DIV_ROUND_CLOSEST(coef->c3 * speedo, s_scale) + coef->c4 + in gk20a_volt_get_cvb_t_voltage()
88 mv = DIV_ROUND_CLOSEST(mv * temp, t_scale) + cvb_mv; in gk20a_volt_get_cvb_t_voltage()
89 return mv; in gk20a_volt_get_cvb_t_voltage()
95 int mv; in gk20a_volt_calc_voltage() local
97 mv = gk20a_volt_get_cvb_t_voltage(speedo, -10, 100, 10, coef); in gk20a_volt_calc_voltage()
[all …]
/linux-4.4.14/arch/m32r/lib/
Dashxdi3.S27 mv r1, r0 || srai r0, #31
33 mv r3, r0 || srl r1, r2
47 mv r0, r1 || addi r2, #-32
52 mv r3, r1 || sll r0, r2
64 mv r1, r0 || addi r2, #-32
69 mv r3, r0 || srl r1, r2
84 mv r0, r1 || srai r1, #31
90 mv r3, r1 || srl r0, r2
104 mv r1, r0 || addi r2, #-32
109 mv r3, r0 || sll r1, r2
[all …]
Dmemcpy.S23 mv r4, r0 || mv r7, r0
61 mv r4, r0
62 mv r7, r0
Dstrlen.S17 mv r6, r0 || ldi r2, #0
57 mv r0, r2 || jmp r14
63 mv r6, r0
112 mv r0, r2
Dmemset.S23 mv r4, r0 || cmpz r2
101 mv r4, r0
Dchecksum.S278 mv r2, r0
/linux-4.4.14/arch/sh/kernel/
Dmachvec.c24 #define for_each_mv(mv) \ argument
25 for ((mv) = (struct sh_machine_vector *)&__machvec_start; \
26 (mv) && (unsigned long)(mv) < (unsigned long)&__machvec_end; \
27 (mv)++)
31 struct sh_machine_vector *mv; in get_mv_byname() local
33 for_each_mv(mv) in get_mv_byname()
34 if (strcasecmp(name, mv->mv_name) == 0) in get_mv_byname()
35 return mv; in get_mv_byname()
/linux-4.4.14/drivers/uwb/
Ddrp.c106 struct uwb_rsv_move *mv; in uwb_rc_send_all_drp_ie() local
116 (rsv->mv.companion_drp_ie != NULL)) { in uwb_rc_send_all_drp_ie()
117 mv = &rsv->mv; in uwb_rc_send_all_drp_ie()
119 mv->companion_drp_ie->hdr.length + 2; in uwb_rc_send_all_drp_ie()
145 (rsv->mv.companion_drp_ie != NULL)) { in uwb_rc_send_all_drp_ie()
146 mv = &rsv->mv; in uwb_rc_send_all_drp_ie()
147 memcpy(IEDataptr, mv->companion_drp_ie, in uwb_rc_send_all_drp_ie()
148 mv->companion_drp_ie->hdr.length + 2); in uwb_rc_send_all_drp_ie()
150 mv->companion_drp_ie->hdr.length + 2; in uwb_rc_send_all_drp_ie()
256 struct uwb_rsv_move *mv = &rsv->mv; in handle_conflict_normal() local
[all …]
Drsv.c302 struct uwb_rsv_move *mv = &rsv->mv; in uwb_rsv_set_state() local
340 bitmap_andnot(rsv->mas.bm, rsv->mas.bm, mv->companion_mas.bm, UWB_NUM_MAS); in uwb_rsv_set_state()
346 uwb_drp_avail_release(rsv->rc, &mv->companion_mas); in uwb_rsv_set_state()
359 uwb_drp_avail_reserve(rsv->rc, &mv->companion_mas); in uwb_rsv_set_state()
360 bitmap_or(rsv->mas.bm, rsv->mas.bm, mv->companion_mas.bm, UWB_NUM_MAS); in uwb_rsv_set_state()
361 rsv->mas.safe += mv->companion_mas.safe; in uwb_rsv_set_state()
362 rsv->mas.unsafe += mv->companion_mas.unsafe; in uwb_rsv_set_state()
366 bitmap_andnot(mv->companion_mas.bm, rsv->mas.bm, mv->final_mas.bm, UWB_NUM_MAS); in uwb_rsv_set_state()
368 rsv->mas.safe = mv->final_mas.safe; in uwb_rsv_set_state()
369 rsv->mas.unsafe = mv->final_mas.unsafe; in uwb_rsv_set_state()
[all …]
Ddrp-ie.c194 struct uwb_rsv_move *mv; in uwb_drp_ie_update() local
235 mv = &rsv->mv; in uwb_drp_ie_update()
236 if (mv->companion_drp_ie == NULL) { in uwb_drp_ie_update()
237 mv->companion_drp_ie = uwb_drp_ie_alloc(); in uwb_drp_ie_update()
238 if (mv->companion_drp_ie == NULL) in uwb_drp_ie_update()
241 drp_ie = mv->companion_drp_ie; in uwb_drp_ie_update()
252 uwb_drp_ie_from_bm(drp_ie, &mv->companion_mas); in uwb_drp_ie_update()
/linux-4.4.14/arch/score/kernel/
Dentry.S112 mv r5, r0
117 mv r4, r0
128 mv r4, r0
131 mv r4, r0
137 mv r4, r0
140 mv r4, r0
146 mv r4, r0
149 mv r4, r0
155 mv r4, r0
158 mv r4, r0
[all …]
Dhead.S48 mv r0, r28
/linux-4.4.14/drivers/clk/tegra/
Dcvb.c26 int mv; in get_cvb_voltage() local
29 mv = DIV_ROUND_CLOSEST(cvb->c2 * speedo, s_scale); in get_cvb_voltage()
30 mv = DIV_ROUND_CLOSEST((mv + cvb->c1) * speedo, s_scale) + cvb->c0; in get_cvb_voltage()
31 return mv; in get_cvb_voltage()
34 static int round_cvb_voltage(int mv, int v_scale, in round_cvb_voltage() argument
42 uv = max(mv * 1000, offset) - offset; in round_cvb_voltage()
52 static int round_voltage(int mv, const struct rail_alignment *align, int up) in round_voltage() argument
57 uv = max(mv * 1000, align->offset_uv) - align->offset_uv; in round_voltage()
61 return mv; in round_voltage()
/linux-4.4.14/net/sched/
Dsch_dsmark.c46 struct mask_value *mv; member
136 p->mv[*arg - 1].value = nla_get_u8(tb[TCA_DSMARK_VALUE]); in dsmark_change()
139 p->mv[*arg - 1].mask = nla_get_u8(tb[TCA_DSMARK_MASK]); in dsmark_change()
154 p->mv[arg - 1].mask = 0xff; in dsmark_delete()
155 p->mv[arg - 1].value = 0; in dsmark_delete()
172 if (p->mv[i].mask == 0xff && !p->mv[i].value) in dsmark_walk()
292 ipv4_change_dsfield(ip_hdr(skb), p->mv[index].mask, in dsmark_dequeue()
293 p->mv[index].value); in dsmark_dequeue()
296 ipv6_change_dsfield(ipv6_hdr(skb), p->mv[index].mask, in dsmark_dequeue()
297 p->mv[index].value); in dsmark_dequeue()
[all …]
/linux-4.4.14/arch/mn10300/boot/compressed/
Dmisc.c340 void setup_output_buffer_if_we_run_high(struct moveparams *mv) in setup_output_buffer_if_we_run_high() argument
350 mv->low_buffer_start = output_data = (char *) LOW_BUFFER_START; in setup_output_buffer_if_we_run_high()
355 mv->hcount = 0; /* say: we need not to move high_buffer */ in setup_output_buffer_if_we_run_high()
357 mv->hcount = -1; in setup_output_buffer_if_we_run_high()
359 mv->high_buffer_start = high_buffer_start; in setup_output_buffer_if_we_run_high()
362 void close_output_buffer_if_we_run_high(struct moveparams *mv) in close_output_buffer_if_we_run_high() argument
364 mv->lcount = bytes_out; in close_output_buffer_if_we_run_high()
366 mv->lcount = LOW_BUFFER_SIZE; in close_output_buffer_if_we_run_high()
367 if (mv->hcount) in close_output_buffer_if_we_run_high()
368 mv->hcount = bytes_out - LOW_BUFFER_SIZE; in close_output_buffer_if_we_run_high()
[all …]
/linux-4.4.14/arch/m32r/boot/compressed/
Dinstall.sh35 mv $4/vmlinuz-$1 $4/vmlinuz.old
39 mv $4/System.map-$1 $4/System.old
48 mv $4/vmlinux-$1 $4/vmlinux.old
52 mv $4/System.map $4/System.old
Dhead.S72 mv r4, r3 || ldi r1, #0
103 mv r4, r3
119 mv sp, r1
124 mv r0, sp
131 mv r3, sp
154 mv r0, sp
/linux-4.4.14/arch/sh/boot/compressed/
Dinstall.sh34 mv $4/vmlinuz-$1 $4/vmlinuz.old
38 mv $4/System.map-$1 $4/System.old
47 mv $4/vmlinux-$1 $4/vmlinux.old
51 mv $4/System.map $4/System.old
/linux-4.4.14/arch/c6x/lib/
Dstrasgi.S32 || mv .l2x A6, B7
35 || mv .s2x A0, B5
41 || mv .s2x A1, B5
42 || mv .l2 B7, B6
50 || mv .s2x A5, B5
55 || mv .s2x A7, B5
60 || mv .s2x A8, B5
65 || mv .s2x A9, B5
70 || mv .s2x A0, B5
Dstrasgi_64plus.S24 || mv .s1 a4, a30
25 || mv .d2 b4, b30
33 mv .s1x b31,a31
Ddivremi.S25 || mv .s1 A4, A5
31 || mv .d2 B4, B2
Ddivi.S40 || mv .d2 B3, B5
50 || mv .l2 B3,B5
Dremi.S43 || mv .s1 A4, A5
49 || mv .d2 B4, B2
Dremu.S43 mv .s2x A4, B1
48 mv .l1x B1, A7
Ddivremu.S34 mv .s2x A4, B1
41 mv .l1x B1, A6
Dnegll.S30 mv .s1 A2,A4
Ddivu.S49 mv .s2x A4, B1
53 mv .l1x B1, A6
Dllshl.S24 mv .l1x B4,A1
Dllshr.S24 mv .l1x B4,A1
Dllshru.S24 mv .l1x B4,A1
Dmpyll.S46 mv .s1 A0,A4
/linux-4.4.14/drivers/scsi/
Dch.c680 struct changer_move mv; in ch_ioctl() local
682 if (copy_from_user(&mv, argp, sizeof (mv))) in ch_ioctl()
685 if (0 != ch_checkrange(ch, mv.cm_fromtype, mv.cm_fromunit) || in ch_ioctl()
686 0 != ch_checkrange(ch, mv.cm_totype, mv.cm_tounit )) { in ch_ioctl()
693 ch->firsts[mv.cm_fromtype] + mv.cm_fromunit, in ch_ioctl()
694 ch->firsts[mv.cm_totype] + mv.cm_tounit, in ch_ioctl()
695 mv.cm_flags & CM_INVERT); in ch_ioctl()
702 struct changer_exchange mv; in ch_ioctl() local
704 if (copy_from_user(&mv, argp, sizeof (mv))) in ch_ioctl()
707 if (0 != ch_checkrange(ch, mv.ce_srctype, mv.ce_srcunit ) || in ch_ioctl()
[all …]
Dhptiop.c171 u32 inbound_head = readl(&hba->u.mv.mu->inbound_head); in mv_inbound_write()
177 memcpy_toio(&hba->u.mv.mu->inbound_q[inbound_head], &p, 8); in mv_inbound_write()
178 writel(head, &hba->u.mv.mu->inbound_head); in mv_inbound_write()
180 &hba->u.mv.regs->inbound_doorbell); in mv_inbound_write()
216 status = readl(&hba->u.mv.regs->outbound_doorbell); in iop_intr_mv()
217 writel(~status, &hba->u.mv.regs->outbound_doorbell); in iop_intr_mv()
221 msg = readl(&hba->u.mv.mu->outbound_msg); in iop_intr_mv()
230 while ((tag = mv_outbound_read(hba->u.mv.mu))) in iop_intr_mv()
331 struct hpt_iop_request_header *reqhdr = hba->u.mv.internal_req; in iop_send_sync_request_mv()
336 mv_inbound_write(hba->u.mv.internal_req_phy | in iop_send_sync_request_mv()
[all …]
Dhptiop.h289 } mv; member
/linux-4.4.14/arch/score/lib/
Dstring.S33 mv r9, r6
52 mv r4, r8
56 mv r4, r8
109 mv r7, r4
112 mv r4, r6
137 mv r10,r6
167 mv r7, r6
Dchecksum.S59 mv r5, r10
130 mv r4, sum
138 mv r10, r5
162 mv r26, r5 /* maybe useless when len >=56 */
248 mv r5, r10
252 mv r4, sum
/linux-4.4.14/arch/powerpc/boot/
Dinstall.sh35 mv $4/$image_name $4/$image_name.old
39 mv $4/System.map $4/System.old
51 mv $path/$image_name $path/$image_name.old
Dwrapper318 mv -f "$vmz.$$$gzip" "$vmz$gzip"
425 mv "$ofile" "$ofile".elf
444 mv "$ofile" "$ofile.elf"
DMakefile173 cmd_bootar = $(CROSS32AR) -cr$(KBUILD_ARFLAGS) $@.$$$$ $(filter-out FORCE,$^); mv $@.$$$$ $@
/linux-4.4.14/drivers/scsi/aic7xxx/aicasm/
DMakefile64 mv $(<:.y=).tab.c $(<:.y=.c)
65 mv $(<:.y=).tab.h $(<:.y=.h)
73 mv $(<:.y=).tab.c $(<:.y=.c)
74 mv $(<:.y=).tab.h $(<:.y=.h)
/linux-4.4.14/arch/hexagon/
DMakefile18 cflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
19 aflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
20 ldflags-y += $(call cc-option,-mv${CONFIG_HEXAGON_ARCH_VERSION})
/linux-4.4.14/tools/power/cpupower/debug/i386/
Dcentrino-decode.c67 unsigned int mv; in decode() local
71 mv = (((msr & 0xFF) * 16) + 700); in decode()
73 printf("0x%x means multiplier %d @ %d mV\n", msr, multiplier, mv); in decode()
/linux-4.4.14/tools/perf/Documentation/
DMakefile231 mv $@+ $@
269 mv $@+ $@
279 mv $@+ $@
295 mv $@+ $@
300 mv $@+ $@
308 mv $@+ $@
316 mv $@+ $@
321 mv $@+ $@
331 mv $@+ $@
Dexamples.txt93 1.39% mv /lib64/ld-2.5.so
94 1.37% mv /lib64/libc-2.5.so
Dperf-script-python.txt192 # mv perf-script.py syscall-counts.py
/linux-4.4.14/drivers/staging/fbtft/
Dfb_hx8353d.c87 #define mv BIT(5) macro
101 write_reg(par, 0x36, my | mv | (par->bgr << 3)); in set_var()
107 write_reg(par, 0x36, mx | mv | (par->bgr << 3)); in set_var()
/linux-4.4.14/Documentation/devicetree/bindings/input/
Dti,drv260x.txt30 - vib-rated-mv - The rated voltage of the actuator in millivolts.
33 - vib-overdrive-mv - The overdrive voltage of the actuator in millivolts.
45 vib-rated-mv = <3200>;
46 vib-overdriver-mv = <3200>;
Dads7846.txt31 ti,vref-mv The VREF voltage, in millivolts (u16).
/linux-4.4.14/arch/s390/boot/
Dinstall.sh30 mv $4/vmlinuz $4/vmlinuz.old
34 mv $4/System.map $4/System.old
/linux-4.4.14/arch/sparc/boot/
Dinstall.sh42 mv $4/vmlinuz $4/vmlinuz.old
46 mv $4/System.map $4/System.old
/linux-4.4.14/arch/m68k/
Dinstall.sh42 mv $4/vmlinuz $4/vmlinuz.old
46 mv $4/System.map $4/System.old
/linux-4.4.14/arch/nios2/boot/
Dinstall.sh42 mv $4/vmlinuz $4/vmlinuz.old
46 mv $4/System.map $4/System.old
/linux-4.4.14/arch/arm64/boot/
Dinstall.sh38 mv $4/$base-$1 $4/$base-$1.old
44 mv $4/System.map-$1 $4/System.map-$1.old
/linux-4.4.14/arch/ia64/
Dinstall.sh30 mv $4/vmlinuz $4/vmlinuz.old
34 mv $4/System.map $4/System.old
/linux-4.4.14/arch/parisc/
Dinstall.sh57 mv $4/$base-$1 $4/$base-$1.old
63 mv $4/System.map-$1 $4/System.map-$1.old
/linux-4.4.14/arch/arm/boot/
Dinstall.sh52 mv $4/$base-$1 $4/$base-$1.old
58 mv $4/System.map-$1 $4/System.map-$1.old
/linux-4.4.14/arch/x86/boot/
Dinstall.sh42 mv $4/vmlinuz $4/vmlinuz.old
46 mv $4/System.map $4/System.old
DMakefile181 if [ -f $(INSTALL_PATH)/vmlinuz ]; then mv $(INSTALL_PATH)/vmlinuz $(INSTALL_PATH)/vmlinuz.old; fi
182 …if [ -f $(INSTALL_PATH)/System.map ]; then mv $(INSTALL_PATH)/System.map $(INSTALL_PATH)/System.ol…
/linux-4.4.14/scripts/
Drecordmcount.pl123 $ld, $nm, $rm, $mv, $is_module, $inputfile) = @ARGV;
148 $mv = 'mv' if (!$mv);
601 `$mv $mix $inputfile`;
DMakefile.dtbinst27 $(Q)if [ -d $(INSTALL_DTBS_PATH) ]; then mv $(INSTALL_DTBS_PATH) $(INSTALL_DTBS_PATH).old; fi
Dmkcompile_h98 mv -f .tmpcompile $TARGET
Dlink-vmlinux.sh177 mv .version .old_version;
DMakefile.build209 mv -f $(@D)/.tmp_$(@F) $@; \
253 mv -f $(dot-target).tmp $(dot-target).cmd
DKbuild.include63 mv -f $@.tmp $@; \
262 mv -f $(dot-target).tmp $(dot-target).cmd)
/linux-4.4.14/Documentation/s390/
Dconfig3270.sh72 echo mv $INITTAB $OINITTAB >> $SCRTMP || exit 1
73 echo mv $NINITTAB $INITTAB >> $SCRTMP
/linux-4.4.14/scripts/package/
Dbuilddeb163 mv "$tmpdir/lib/modules/$version"/* "$tmpdir/usr/lib/uml/modules/$version/"
350 mv "$tmpdir/lib/firmware"/* "$fwdir/lib/firmware/$version/"
421 mv debian/ debian.backup # debian/ might be cleaned away
423 mv debian.backup debian
427 mv ${sourcename}.tar.gz ../${sourcename}_${version}.orig.tar.gz
431 mv ${sourcename}_${packageversion}*dsc ..
DMakefile54 mv -f $(objtree)/.tmp_version $(objtree)/.version
64 mv -f $(objtree)/.tmp_version $(objtree)/.version
/linux-4.4.14/scripts/kconfig/
DMakefile45 (mv -f .config .config.old.1; \
46 mv -f .tmp.config .config; \
48 mv -f .config.old.1 .config.old) \
50 mv -f .tmp.config .config; \
/linux-4.4.14/tools/testing/selftests/pstore/
Dpstore_crash_test21 mv $TOP_DIR/uuid $TOP_DIR/prev_uuid
/linux-4.4.14/tools/testing/selftests/rcutorture/bin/
Dkvm-test-1-run.sh112 mv $builddir.wait $builddir.ready
120 mv $builddir.wait $builddir.ready
Dconfiginit.sh66 mv $builddir/.config $builddir/.config.sav
/linux-4.4.14/arch/blackfin/boot/
Dinstall.sh50 mv ${file} ${file}.${stamp:-old}
/linux-4.4.14/drivers/usb/serial/
DMakefile-keyspan_pda_fw13 mv $*.obj $@
/linux-4.4.14/arch/alpha/boot/
DMakefile56 cmp -s $@T $@ || mv -f $@T $@
66 cmp -s $@T $@ || mv -f $@T $@
/linux-4.4.14/arch/m32r/kernel/
Dhead.S56 mv r4, r3 || ldi r1, #0
84 mv r4, r3
160 mv r6, r5
/linux-4.4.14/tools/lib/traceevent/
DMakefile210 mv -f $@.tmp $@; \
225 mv -f $@.tmp $@; \
/linux-4.4.14/arch/score/include/asm/
Dasmmacro.h10 mv r31, r0
18 mv r30, r0
/linux-4.4.14/drivers/usb/phy/
DMakefile24 obj-$(CONFIG_USB_MV_OTG) += phy-mv-usb.o
/linux-4.4.14/scripts/selinux/
Dinstall_policy.sh50 mv /etc/selinux/config /etc/selinux/config.mdpbak
/linux-4.4.14/drivers/media/usb/usbvision/
Dusbvision.h193 #define YUV_TO_RGB_BY_THE_BOOK(my, mu, mv, mr, mg, mb) { \ argument
197 mm_v = (mv) - 128; \
/linux-4.4.14/Documentation/
Dapplying-patches.txt259 $ mv linux-2.6.11 linux-2.6.12 # rename source dir
267 $ mv linux-2.6.11.1 linux-2.6.12 # rename source dir
301 $ mv linux-2.6.12.2 linux-2.6.12.3 # rename the kernel source dir
333 $ mv linux-2.6.12 linux-2.6.13-rc3 # rename the source dir
340 $ mv linux-2.6.13-rc3 linux-2.6.13-rc5 # rename the source dir
347 $ mv linux-2.6.12.3 linux-2.6.13-rc5 # rename the kernel source dir
371 $ mv linux-2.6.12 linux-2.6.12-git1 # rename the kernel source dir
382 $ mv linux-2.6.12-git1 linux-2.6.13-rc2-git3 # rename source dir
434 $ mv linux-2.6.12 linux-2.6.12-mm1 # rename the source appropriately
444 $ mv linux-2.6.12-mm1 linux-2.6.13-rc3-mm3 # rename the source dir
DBUG-HUNTING86 "dir.62" and mv dir.63 dir"time, try
88 mv dir dir.62
89 mv dir.63 dir
DSubmittingPatches83 mv linux-3.19 linux-3.19-vanilla
/linux-4.4.14/drivers/net/ethernet/qlogic/qlcnic/
Dqlcnic_sriov_pf.c792 struct qlcnic_macvlan_mbx mv; in qlcnic_sriov_cfg_vf_def_mac() local
824 mv.vlan = vlan; in qlcnic_sriov_cfg_vf_def_mac()
825 mv.mac_addr0 = addr[0]; in qlcnic_sriov_cfg_vf_def_mac()
826 mv.mac_addr1 = addr[1]; in qlcnic_sriov_cfg_vf_def_mac()
827 mv.mac_addr2 = addr[2]; in qlcnic_sriov_cfg_vf_def_mac()
828 mv.mac_addr3 = addr[3]; in qlcnic_sriov_cfg_vf_def_mac()
829 mv.mac_addr4 = addr[4]; in qlcnic_sriov_cfg_vf_def_mac()
830 mv.mac_addr5 = addr[5]; in qlcnic_sriov_cfg_vf_def_mac()
832 memcpy(buf, &mv, sizeof(struct qlcnic_macvlan_mbx)); in qlcnic_sriov_cfg_vf_def_mac()
Dqlcnic_83xx_hw.c2091 struct qlcnic_macvlan_mbx mv; in qlcnic_83xx_sre_macaddr_change() local
2115 mv.vlan = vlan_id; in qlcnic_83xx_sre_macaddr_change()
2116 mv.mac_addr0 = addr[0]; in qlcnic_83xx_sre_macaddr_change()
2117 mv.mac_addr1 = addr[1]; in qlcnic_83xx_sre_macaddr_change()
2118 mv.mac_addr2 = addr[2]; in qlcnic_83xx_sre_macaddr_change()
2119 mv.mac_addr3 = addr[3]; in qlcnic_83xx_sre_macaddr_change()
2120 mv.mac_addr4 = addr[4]; in qlcnic_83xx_sre_macaddr_change()
2121 mv.mac_addr5 = addr[5]; in qlcnic_83xx_sre_macaddr_change()
2123 memcpy(buf, &mv, sizeof(struct qlcnic_macvlan_mbx)); in qlcnic_83xx_sre_macaddr_change()
/linux-4.4.14/Documentation/filesystems/
Dinotify.txt45 "mv a b ; mv b a" events without ordering.
Dhpfs.txt163 but vfs doesn't. Something like 'mv file FILE' won't work.
/linux-4.4.14/drivers/cpufreq/
Dspeedstep-centrino.c83 #define OP(mhz, mv) \ argument
86 .driver_data = (((mhz)/100) << 8) | ((mv - 700) / 16) \
/linux-4.4.14/tools/lib/bpf/
DMakefile157 mv -f $@.tmp $@; \
/linux-4.4.14/drivers/leds/
Dleds-max77693.c136 static inline u8 max77693_led_vsys_to_reg(u32 mv) in max77693_led_vsys_to_reg() argument
138 return ((mv - MAX_FLASH1_VSYS_MIN) / MAX_FLASH1_VSYS_STEP) << 2; in max77693_led_vsys_to_reg()
141 static inline u8 max77693_led_vout_to_reg(u32 mv) in max77693_led_vout_to_reg() argument
143 return (mv - FLASH_VOUT_MIN) / FLASH_VOUT_STEP + FLASH_VOUT_RMIN; in max77693_led_vout_to_reg()
/linux-4.4.14/arch/score/mm/
Dtlb-miss.S63 mv r4, r0
/linux-4.4.14/Documentation/kbuild/
Dheaders_install.txt46 Remember to provide the appropriate linux/asm directory via "mv" or "ln -s"
/linux-4.4.14/arch/alpha/kernel/
Dsetup.c1053 struct alpha_machine_vector *mv = all_vecs[i]; in get_sysvec_byname() local
1054 if (strcasecmp(mv->vector_name, name) == 0) in get_sysvec_byname()
1055 return mv; in get_sysvec_byname()
/linux-4.4.14/tools/build/
DBuild.include64 mv -f $(dot-target).tmp $(dot-target).cmd, \
/linux-4.4.14/drivers/ata/
Dahci.c639 int mv; in ahci_pci_init_controller() local
643 mv = 2; in ahci_pci_init_controller()
645 mv = 4; in ahci_pci_init_controller()
646 port_mmio = __ahci_port_base(host, mv); in ahci_pci_init_controller()
/linux-4.4.14/drivers/hwmon/
Dmax16065.c120 static inline int MV_TO_LIMIT(int mv, int range) in MV_TO_LIMIT() argument
122 return clamp_val(DIV_ROUND_CLOSEST(mv * 256, range), 0, 255); in MV_TO_LIMIT()
Dlm93.c374 const long mv = clamp_val(val, in LM93_IN_TO_REG() local
378 const long uv = mv * 1000; in LM93_IN_TO_REG()
/linux-4.4.14/Documentation/zh_CN/
DSubmittingPatches69 mv linux-2.6.12 linux-2.6.12-vanilla
/linux-4.4.14/fs/affs/
DChanges256 casing any more (though mv(1) still won't allow
257 you to do "mv oldname OldName").
/linux-4.4.14/Documentation/networking/
Ddl2k.txt266 mv dl2k.tmp dl2k.c
271 mv dl2k.tmp dl2k.c
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
Dramgk104.c257 int mv = !next->bios.ramcfg_11_02_04; in gk104_ram_calc_gddr5() local
358 u32 temp = ram_mask(fuc, gpioMV, 0x3000, fuc->r_funcMV[mv]); in gk104_ram_calc_gddr5()
704 int mv = !next->bios.ramcfg_11_02_04; in gk104_ram_calc_sddr3() local
805 u32 temp = ram_mask(fuc, gpioMV, 0x3000, fuc->r_funcMV[mv]); in gk104_ram_calc_sddr3()
/linux-4.4.14/include/linux/
Duwb.h262 struct uwb_rsv_move mv; member
/linux-4.4.14/drivers/rtc/
DMakefile101 obj-$(CONFIG_RTC_DRV_MV) += rtc-mv.o
DKconfig1388 will be called rtc-mv.
/linux-4.4.14/Documentation/ja_JP/
DSubmittingPatches77 mv linux-2.6.12 linux-2.6.12-vanilla
/linux-4.4.14/arch/m32r/mm/
Dmmu.S229 mv r0, r2 ; address = bpc;
/linux-4.4.14/arch/ia64/include/asm/
Dpal.h503 mv : 1, /* mesi valid */ member
715 #define pmci_cache_line_state_valid pme_cache.mv
/linux-4.4.14/tools/perf/
DMakefile.perf328 $(QUIET_GEN). util/generate-cmdlist.sh > $@+ && mv $@+ $@
/linux-4.4.14/drivers/media/platform/ti-vpe/
Dvpe.c824 const struct vpdma_data_format *mv = in set_srcdst_params() local
834 bytes_per_line = ALIGN((s_q_data->width * mv->depth) >> 3, in set_srcdst_params()
/linux-4.4.14/Documentation/blockdev/
DREADME.DAC960210 mv README.DAC960 linux/Documentation
211 mv DAC960.[ch] linux/drivers/block
/linux-4.4.14/Documentation/serial/
Dmoxa-smartio306 # mv mxser.c mxser.c.old
/linux-4.4.14/Documentation/scsi/
DBusLogic.txt550 mv README.* LICENSE.* BusLogic.[ch] FlashPoint.c linux/drivers/scsi
/linux-4.4.14/drivers/gpu/drm/i915/
Di915_reg.h6900 #define GEN6_ENCODE_RC6_VID(mv) (((mv) - 245) / 5) argument
/linux-4.4.14/arch/m68k/fpsp040/
Dres_func.S83 bne opclass3 |it is a mv out
/linux-4.4.14/fs/nfs/
Dnfs4proc.c3246 int mv = server->nfs_client->cl_minorversion; in nfs4_do_find_root_sec() local
3247 return nfs_v4_minor_ops[mv]->find_root_sec(server, fhandle, info); in nfs4_do_find_root_sec()
/linux-4.4.14/
DCREDITS4031 E: jrv@vanzandt.mv.com
DMAINTAINERS3582 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>