| /linux/arch/mips/loongson2ef/common/cs5536/ | 
| H A D | cs5536_ide.c | 17 	u32 hi = 0, lo = value;  in pci_ide_write_reg()  local21 		_rdmsr(GLIU_MSR_REG(GLIU_PAE), &hi, &lo);  in pci_ide_write_reg()
 23 			lo |= (0x03 << 4);  in pci_ide_write_reg()
 25 			lo &= ~(0x03 << 4);  in pci_ide_write_reg()
 26 		_wrmsr(GLIU_MSR_REG(GLIU_PAE), hi, lo);  in pci_ide_write_reg()
 30 			_rdmsr(SB_MSR_REG(SB_ERROR), &hi, &lo);  in pci_ide_write_reg()
 31 			if (lo & SB_PARE_ERR_FLAG) {  in pci_ide_write_reg()
 32 				lo = (lo & 0x0000ffff) | SB_PARE_ERR_FLAG;  in pci_ide_write_reg()
 33 				_wrmsr(SB_MSR_REG(SB_ERROR), hi, lo);  in pci_ide_write_reg()
 39 		_rdmsr(SB_MSR_REG(SB_CTRL), &hi, &lo);  in pci_ide_write_reg()
 [all …]
 
 | 
| H A D | cs5536_ohci.c | 17 	u32 hi = 0, lo = value;  in pci_ohci_write_reg()  local21 		_rdmsr(USB_MSR_REG(USB_OHCI), &hi, &lo);  in pci_ohci_write_reg()
 31 		_wrmsr(USB_MSR_REG(USB_OHCI), hi, lo);  in pci_ohci_write_reg()
 35 			_rdmsr(SB_MSR_REG(SB_ERROR), &hi, &lo);  in pci_ohci_write_reg()
 36 			if (lo & SB_PARE_ERR_FLAG) {  in pci_ohci_write_reg()
 37 				lo = (lo & 0x0000ffff) | SB_PARE_ERR_FLAG;  in pci_ohci_write_reg()
 38 				_wrmsr(SB_MSR_REG(SB_ERROR), hi, lo);  in pci_ohci_write_reg()
 44 			_rdmsr(GLCP_MSR_REG(GLCP_SOFT_COM), &hi, &lo);  in pci_ohci_write_reg()
 45 			lo |= SOFT_BAR_OHCI_FLAG;  in pci_ohci_write_reg()
 46 			_wrmsr(GLCP_MSR_REG(GLCP_SOFT_COM), hi, lo);  in pci_ohci_write_reg()
 [all …]
 
 | 
| H A D | cs5536_acc.c | 17 	u32 hi = 0, lo = value;  in pci_acc_write_reg()  local21 		_rdmsr(GLIU_MSR_REG(GLIU_PAE), &hi, &lo);  in pci_acc_write_reg()
 23 			lo |= (0x03 << 8);  in pci_acc_write_reg()
 25 			lo &= ~(0x03 << 8);  in pci_acc_write_reg()
 26 		_wrmsr(GLIU_MSR_REG(GLIU_PAE), hi, lo);  in pci_acc_write_reg()
 30 			_rdmsr(SB_MSR_REG(SB_ERROR), &hi, &lo);  in pci_acc_write_reg()
 31 			if (lo & SB_PARE_ERR_FLAG) {  in pci_acc_write_reg()
 32 				lo = (lo & 0x0000ffff) | SB_PARE_ERR_FLAG;  in pci_acc_write_reg()
 33 				_wrmsr(SB_MSR_REG(SB_ERROR), hi, lo);  in pci_acc_write_reg()
 39 			_rdmsr(GLCP_MSR_REG(GLCP_SOFT_COM), &hi, &lo);  in pci_acc_write_reg()
 [all …]
 
 | 
| H A D | cs5536_isa.c | 51 	u32 hi, lo;  in divil_lbar_enable()  local59 		_rdmsr(DIVIL_MSR_REG(offset), &hi, &lo);  in divil_lbar_enable()
 61 		_wrmsr(DIVIL_MSR_REG(offset), hi, lo);  in divil_lbar_enable()
 70 	u32 hi, lo;  in divil_lbar_disable()  local
 74 		_rdmsr(DIVIL_MSR_REG(offset), &hi, &lo);  in divil_lbar_disable()
 76 		_wrmsr(DIVIL_MSR_REG(offset), hi, lo);  in divil_lbar_disable()
 86 	u32 hi = 0, lo = value;  in pci_isa_write_bar()  local
 89 		_rdmsr(GLCP_MSR_REG(GLCP_SOFT_COM), &hi, &lo);  in pci_isa_write_bar()
 90 		lo |= soft_bar_flag[n];  in pci_isa_write_bar()
 91 		_wrmsr(GLCP_MSR_REG(GLCP_SOFT_COM), hi, lo);  in pci_isa_write_bar()
 [all …]
 
 | 
| H A D | cs5536_ehci.c | 17 	u32 hi = 0, lo = value;  in pci_ehci_write_reg()  local21 		_rdmsr(USB_MSR_REG(USB_EHCI), &hi, &lo);  in pci_ehci_write_reg()
 31 		_wrmsr(USB_MSR_REG(USB_EHCI), hi, lo);  in pci_ehci_write_reg()
 35 			_rdmsr(SB_MSR_REG(SB_ERROR), &hi, &lo);  in pci_ehci_write_reg()
 36 			if (lo & SB_PARE_ERR_FLAG) {  in pci_ehci_write_reg()
 37 				lo = (lo & 0x0000ffff) | SB_PARE_ERR_FLAG;  in pci_ehci_write_reg()
 38 				_wrmsr(SB_MSR_REG(SB_ERROR), hi, lo);  in pci_ehci_write_reg()
 44 			_rdmsr(GLCP_MSR_REG(GLCP_SOFT_COM), &hi, &lo);  in pci_ehci_write_reg()
 45 			lo |= SOFT_BAR_EHCI_FLAG;  in pci_ehci_write_reg()
 46 			_wrmsr(GLCP_MSR_REG(GLCP_SOFT_COM), hi, lo);  in pci_ehci_write_reg()
 [all …]
 
 | 
| /linux/drivers/block/ | 
| H A D | loop.c | 100  * @lo: struct loop_device101  * @global: true if @lo is about to bind another "struct loop_device", false otherwise
 109 static int loop_global_lock_killable(struct loop_device *lo, bool global)  in loop_global_lock_killable()  argument
 118 	err = mutex_lock_killable(&lo->lo_mutex);  in loop_global_lock_killable()
 127  * @lo: struct loop_device
 128  * @global: true if @lo was about to bind another "struct loop_device", false otherwise
 130 static void loop_global_unlock(struct loop_device *lo, bool global)  in loop_global_unlock()  argument
 132 	mutex_unlock(&lo->lo_mutex);  in loop_global_unlock()
 140 static loff_t lo_calculate_size(struct loop_device *lo, struct file *file)  in lo_calculate_size()  argument
 162 	if (lo->lo_offset > 0)  in lo_calculate_size()
 [all …]
 
 | 
| /linux/fs/nfs/ | 
| H A D | pnfs.c | 57 static void pnfs_layoutreturn_before_put_layout_hdr(struct pnfs_layout_hdr *lo);58 static void pnfs_free_returned_lsegs(struct pnfs_layout_hdr *lo,
 64 static int pnfs_layout_return_on_reboot(struct pnfs_layout_hdr *lo);
 265 pnfs_get_layout_hdr(struct pnfs_layout_hdr *lo)  in pnfs_get_layout_hdr()  argument
 267 	refcount_inc(&lo->plh_refcount);  in pnfs_get_layout_hdr()
 278 pnfs_free_layout_hdr(struct pnfs_layout_hdr *lo)  in pnfs_free_layout_hdr()  argument
 280 	struct nfs_server *server = NFS_SERVER(lo->plh_inode);  in pnfs_free_layout_hdr()
 283 	if (test_and_clear_bit(NFS_LAYOUT_HASHED, &lo->plh_flags)) {  in pnfs_free_layout_hdr()
 287 		list_del_rcu(&lo->plh_layouts);  in pnfs_free_layout_hdr()
 290 	put_cred(lo->plh_lc_cred);  in pnfs_free_layout_hdr()
 [all …]
 
 | 
| /linux/arch/riscv/net/ | 
| H A D | bpf_jit_comp32.c | 26  *                 |  lo(R6)  |28  *                 |  lo(R7)  |
 106 static s8 lo(const s8 *r)  in lo()  function
 127 	emit_imm(lo(rd), imm, ctx);  in emit_imm32()
 139 	emit_imm(lo(rd), imm_lo, ctx);  in emit_imm64()
 150 		emit(rv_addi(RV_REG_A0, lo(r0), 0), ctx);  in __build_epilogue()
 190 		emit(rv_lw(lo(tmp), lo(reg), RV_REG_FP), ctx);  in bpf_get_reg64()
 201 		emit(rv_sw(RV_REG_FP, lo(reg), lo(src)), ctx);  in bpf_put_reg64()
 208 	if (is_stacked(lo(reg))) {  in bpf_get_reg32()
 209 		emit(rv_lw(lo(tmp), lo(reg), RV_REG_FP), ctx);  in bpf_get_reg32()
 [all …]
 
 | 
| /linux/lib/crypto/arm/ | 
| H A D | poly1305-armv4.pl | 632 	vmovn.i64	$D3#lo,$D3634 	 vmovn.i64	$D0#lo,$D0
 636 	vbic.i32	$D3#lo,#0xfc000000	@ &=0x03ffffff
 638 	 vbic.i32	$D0#lo,#0xfc000000
 640 	vshrn.u64	$T0#lo,$D4,#26
 641 	vmovn.i64	$D4#lo,$D4
 643 	 vmovn.i64	$D1#lo,$D1
 645 	vbic.i32	$D4#lo,#0xfc000000
 646 	 vbic.i32	$D1#lo,#0xfc000000
 648 	vadd.i32	$D0#lo,$D0#lo,$T0#lo
 [all …]
 
 | 
| H A D | sha512-armv4.pl | 57 $lo="LO";95 	@ LO		lo>>14^hi<<18 ^ lo>>18^hi<<14 ^ hi>>9^lo<<23
 96 	@ HI		hi>>14^lo<<18 ^ hi>>18^lo<<14 ^ lo>>9^hi<<23
 102 	ldr	$t2,[sp,#$Hoff+0]	@ h.lo
 114 	ldr	$t0,[sp,#$Foff+0]	@ f.lo
 118 	ldr	$t2,[sp,#$Goff+0]	@ g.lo
 131 	ldr	$t2,[$Ktbl,#$lo]	@ K[i].lo
 136 	ldr	$Elo,[sp,#$Doff+0]	@ d.lo
 143 	ldr	$t2,[sp,#$Boff+0]	@ b.lo
 147 	ldr	$t3,[sp,#$Coff+0]	@ c.lo
 [all …]
 
 | 
| /linux/arch/parisc/net/ | 
| H A D | bpf_jit_comp32.c | 27  *                 |  lo(R9)  |29  *                 |  lo(FP)  | JIT scratch space for BPF registers
 115 static s8 lo(const s8 *r)  in lo()  function
 159 	REG_SET_SEEN(ctx, lo(rd));  in emit_imm32()
 160 	emit_imm(lo(rd), imm, ctx);  in emit_imm32()
 174 	emit_imm(lo(rd), imm_lo, ctx);  in emit_imm64()
 203 	emit_hppa_copy(lo(r0), HPPA_REG_RET0, ctx);  in __build_epilogue()
 229 		emit(hppa_ldw(REG_SIZE * lo(reg) - offset_sp, HPPA_REG_SP, lo(tmp)), ctx);  in bpf_get_reg64_offset()
 233 	REG_SET_SEEN(ctx, lo(reg));  in bpf_get_reg64_offset()
 255 	REG_SET_SEEN(ctx, lo(reg));  in bpf_get_reg64_ref()
 [all …]
 
 | 
| /linux/arch/mips/net/ | 
| H A D | bpf_jit_comp32.c | 144 static inline u8 lo(const u8 reg[])  in lo()  function176 	emit_mov_i(ctx, lo(dst), imm);  in emit_mov_se_i64()
 228 		emit(ctx, addu, lo(dst), lo(dst), src);  in emit_alu_i64()
 229 		emit(ctx, sltu, MIPS_R_T9, lo(dst), src);  in emit_alu_i64()
 236 		emit(ctx, sltu, MIPS_R_T9, lo(dst), src);  in emit_alu_i64()
 237 		emit(ctx, subu, lo(dst), lo(dst), src);  in emit_alu_i64()
 244 		emit(ctx, or, lo(dst), lo(dst), src);  in emit_alu_i64()
 250 		emit(ctx, and, lo(dst), lo(dst), src);  in emit_alu_i64()
 256 		emit(ctx, xor, lo(dst), lo(dst), src);  in emit_alu_i64()
 274 			emit(ctx, srl, MIPS_R_T9, lo(dst), 31);  in emit_alu_r64()
 [all …]
 
 | 
| /linux/samples/seccomp/ | 
| H A D | bpf-helper.h | 142 /* Loads lo into M[0] and hi into M[1] and A */145 	BPF_STMT(BPF_ST, 0), /* lo -> M[0] */ \
 178  * All the JXX64 checks assume lo is saved in M[0] and hi is saved in both
 181 #define JEQ64(lo, hi, jt) \  argument
 184 	BPF_STMT(BPF_LD+BPF_MEM, 0), /* swap in lo */ \
 185 	/* if (lo != arg.lo) goto NOMATCH; */ \
 186 	BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (lo), 0, 2), \
 191 #define JNE64(lo, hi, jt) \  argument
 195 	/* if (lo != arg.lo) goto MATCH; */ \
 196 	BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (lo), 2, 0), \
 [all …]
 
 | 
| /linux/Documentation/translations/sp_SP/process/ | 
| H A D | management-style.rst | 20 que reglas simples de estilo de codificación, por lo que este documento34 .. [#f1] Este documento lo hace no tanto respondiendo a la pregunta, sino
 64 bien, y te hace parecer que sabes lo que estás haciendo, así que lo que
 79 Por lo tanto, la llave para evitar las grandes decisiones se convierte en
 87 malgastar grandes cantidades de dinero que tal vez no puedas pagar, lo
 98  - admitir que eras un idiota es más difícil de lo que parece. A todos
 101  - que alguien te diga que lo que trabajaste durante el último año no
 106    “irrevocablemente” fue lo que tratamos de evitar en primer lugar, y
 123 una buena idea, seguro que no deberías alentarlos prometiéndoles que lo
 124 que trabajan será incluido. Haz que al menos lo piensen dos veces antes de
 [all …]
 
 | 
| /linux/tools/testing/selftests/tc-testing/tc-tests/actions/ | 
| H A D | mirred.json | 20         "cmdUnderTest": "$TC actions add action mirred egress mirror index 1 dev lo",23         "matchPattern": "action order [0-9]*: mirred \\(Egress Mirror to device lo\\).*index 1 ref",
 47         "cmdUnderTest": "$TC actions add action mirred egress redirect index 2 dev lo action pipe",
 50 …     "matchPattern": "action order [0-9]*: mirred \\(Egress Redirect to device lo\\).*index 2 ref",
 74             "$TC actions add action mirred egress mirror index 1 dev lo",
 75             "$TC actions add action mirred egress redirect index 2 dev lo"
 80         "matchPattern": "[Mirror|Redirect] to device lo",
 104         "cmdUnderTest": "$TC actions add action mirred inbound mirror index 20 dev lo",
 107         "matchPattern": "action order [0-9]*: mirred \\(.*to device lo\\).*index 20 ref",
 131         "cmdUnderTest": "$TC actions add action mirred egress remirror index 20 dev lo",
 [all …]
 
 | 
| /linux/Documentation/devicetree/bindings/iio/frequency/ | 
| H A D | adi,adrf6780.yaml | 47   adi,lo-buff-en:65   adi,lo-x2-en:
 72   adi,lo-ppf-en:
 75       output frequency (LO x1). Either LOx1 or LOx2 can be enabled
 79   adi,lo-en:
 81       Enable additional cirtuitry in the LO chain. Disable to put the
 91   adi,lo-sideband:
 93       Switch to the Lower LO Sideband. By default the Upper LO
 107   adi,lo-x2-en: [ "adi,lo-en" ]
 108   adi,lo-ppf-en: [ "adi,lo-en" ]
 
 | 
| /linux/drivers/net/wireless/broadcom/b43/ | 
| H A D | lo.c | 6   G PHY LO (LocalOscillator) Measuring and Control routines18 #include "lo.h"
 27 static struct b43_lo_calib *b43_find_lo_calib(struct b43_txpower_lo_control *lo,  in b43_find_lo_calib()  argument
 33 	list_for_each_entry(c, &lo->calib_list, list) {  in b43_find_lo_calib()
 52 			b43dbg(dev->wl, "Invalid LO control pair "  in b43_lo_write()
 117 	 * in the LO calibration. */  in lo_measure_feedthrough()
 166 	struct b43_txpower_lo_control *lo = gphy->lo_control;  in lo_measure_txctl_values()  local
 239 					lo->tx_bias = tx_bias;  in lo_measure_txctl_values()
 240 					lo->tx_magn = tx_magn;  in lo_measure_txctl_values()
 243 				if (lo->tx_bias == 0)  in lo_measure_txctl_values()
 [all …]
 
 | 
| /linux/fs/xfs/scrub/ | 
| H A D | xfarray.c | 469 	/* Each level of quicksort uses a lo and a hi index */  in xfarray_sortinfo_alloc()544 	xfarray_idx_t		lo,  in xfarray_isort()  argument
 548 	loff_t			lo_pos = xfarray_pos(si->array, lo);  in xfarray_isort()
 549 	loff_t			len = xfarray_pos(si->array, hi - lo + 1);  in xfarray_isort()
 552 	trace_xfarray_isort(si, lo, hi);  in xfarray_isort()
 560 	sort(scratch, hi - lo + 1, si->array->obj_size, si->cmp_fn, NULL);  in xfarray_isort()
 567  * Sort the records from lo to hi (inclusive) if they are all backed by the
 574 	xfarray_idx_t		lo,  in xfarray_foliosort()  argument
 579 	loff_t			lo_pos = xfarray_pos(si->array, lo);  in xfarray_foliosort()
 580 	uint64_t		len = xfarray_pos(si->array, hi - lo + 1);  in xfarray_foliosort()
 [all …]
 
 | 
| /linux/drivers/acpi/acpica/ | 
| H A D | utmath.c | 16 	u32 lo;  member65 	ACPI_MUL_64_BY_32(0, multiplicand_ovl.part.lo, multiplier,  in acpi_ut_short_multiply()
 66 			  product.part.lo, carry32);  in acpi_ut_short_multiply()
 100 		operand_ovl.part.hi = operand_ovl.part.lo;  in acpi_ut_short_shift_left()
 101 		operand_ovl.part.lo = 0;  in acpi_ut_short_shift_left()
 105 				 operand_ovl.part.lo, count);  in acpi_ut_short_shift_left()
 137 		operand_ovl.part.lo = operand_ovl.part.hi;  in acpi_ut_short_shift_right()
 142 				  operand_ovl.part.lo, count);  in acpi_ut_short_shift_right()
 281 	ACPI_DIV_64_BY_32(remainder32, dividend_ovl.part.lo, divisor,  in acpi_ut_short_divide()
 282 			  quotient.part.lo, remainder32);  in acpi_ut_short_divide()
 [all …]
 
 | 
| /linux/arch/sparc/kernel/ | 
| H A D | trampoline_64.S | 109 1:	ldstub		[%g2 + %lo(prom_entry_lock)], %g1117 	or		%g1, %lo(tramp_stack), %g1
 131 	ldx		[%l4 + %lo(kern_locked_tte_data)], %l4
 134 	lduw		[%l6 + %lo(num_kernel_image_mappings)], %l6
 145 	or		%g2, %lo(call_method), %g2
 152 	or		%g2, %lo(itlb_load), %g2
 155 	lduw		[%g2 + %lo(prom_mmu_ihandle_cache)], %g2
 171 	or		%g2, %lo(p1275buf), %g2
 178 	or		%g2, %lo(call_method), %g2
 185 	or		%g2, %lo(dtlb_load), %g2
 [all …]
 
 | 
| /linux/arch/x86/kernel/cpu/ | 
| H A D | centaur.c | 24 	u32  lo, hi;  in init_c3()  local32 			rdmsr(MSR_VIA_FCR, lo, hi);  in init_c3()
 33 			lo |= ACE_FCR;		/* enable ACE unit */  in init_c3()
 34 			wrmsr(MSR_VIA_FCR, lo, hi);  in init_c3()
 40 			rdmsr(MSR_VIA_RNG, lo, hi);  in init_c3()
 41 			lo |= RNG_ENABLE;	/* enable RNG unit */  in init_c3()
 42 			wrmsr(MSR_VIA_RNG, lo, hi);  in init_c3()
 54 		rdmsr(MSR_VIA_FCR, lo, hi);  in init_c3()
 55 		lo |= (1<<1 | 1<<7);  in init_c3()
 56 		wrmsr(MSR_VIA_FCR, lo, hi);  in init_c3()
 [all …]
 
 | 
| /linux/tools/usb/usbip/ | 
| H A D | .gitignore | 25 libsrc/libusbip_la-names.lo26 libsrc/libusbip_la-sysfs_utils.lo
 27 libsrc/libusbip_la-usbip_common.lo
 28 libsrc/libusbip_la-usbip_device_driver.lo
 29 libsrc/libusbip_la-usbip_host_common.lo
 30 libsrc/libusbip_la-usbip_host_driver.lo
 31 libsrc/libusbip_la-vhci_driver.lo
 
 | 
| /linux/arch/sparc/mm/ | 
| H A D | ultra.S | 197 	ldx		[%g1 + %lo(PAGE_OFFSET)], %g1220 	ldx		[%g1 + %lo(PAGE_OFFSET)], %g1
 363 	ldx		[%g1 + %lo(PAGE_OFFSET)], %g1
 396 	jmpl		%o5 + %lo(__hypervisor_tlb_tl0_error), %g0
 419 	jmpl		%o2 + %lo(__hypervisor_tlb_tl0_error), %g0
 449 	jmpl		%o2 + %lo(__hypervisor_tlb_tl0_error), %g0
 481 	jmpl		%o2 + %lo(__hypervisor_tlb_tl0_error), %g0
 584 	or		%g2, %lo(PAGE_SIZE - 1), %g2
 646 109:	 or		%g7, %lo(109b), %g7
 659 	or		%g1, %lo(global_cpu_snapshot), %g1
 [all …]
 
 | 
| /linux/drivers/char/hw_random/ | 
| H A D | via-rng.c | 132 	u32 lo, hi, old_lo;  in via_rng_init()  local153 	rdmsr(MSR_VIA_RNG, lo, hi);  in via_rng_init()
 155 	old_lo = lo;  in via_rng_init()
 156 	lo &= ~(0x7f << VIA_STRFILT_CNT_SHIFT);  in via_rng_init()
 157 	lo &= ~VIA_XSTORE_CNT_MASK;  in via_rng_init()
 158 	lo &= ~(VIA_STRFILT_ENABLE | VIA_STRFILT_FAIL | VIA_RAWBITS_ENABLE);  in via_rng_init()
 159 	lo |= VIA_RNG_ENABLE;  in via_rng_init()
 160 	lo |= VIA_NOISESRC1;  in via_rng_init()
 166 		lo |= VIA_NOISESRC2;  in via_rng_init()
 170 		lo |= VIA_NOISESRC2;  in via_rng_init()
 [all …]
 
 | 
| /linux/arch/m68k/ifpsp060/src/ | 
| H A D | ilsp.S | 76 #	0xc(sp)  = lo(dividend)						#139 	mov.l		0x10(%a6), %d6		# get dividend lo
 165 #	- is (hi(dividend) == 0 && (divisor <= lo(dividend))) ? (32-bit div)
 170 	tst.l		%d6			# is (lo(dividend) == 0), too
 173 	cmp.l		%d7,%d6			# is (divisor <= lo(dividend))
 244 	mov.l		0x10(%a6), %d6		# get dividend lo
 449 # returns 64 bit result in %d5 (hi) %d6(lo).
 452 # multiply hi,lo words of each factor to get 4 intermediate products
 531 #		     | hi(mplier) * lo(mplicand) |			#
 534 #		     | lo(mplier) * hi(mplicand) |			#
 [all …]
 
 |