/linux/drivers/pci/controller/ |
A D | pci-v3-semi.c | 414 v3_unmap_bus(v3); in v3_pci_read_config() 428 v3_unmap_bus(v3); in v3_pci_write_config() 474 if (v3->map) in v3_irq() 486 v3->map = in v3_integrator_init() 488 if (IS_ERR(v3->map)) { in v3_integrator_init() 550 if (v3->non_pre_mem && in v3_pci_setup_resource() 712 struct v3_pci *v3; in v3_pci_probe() local 725 host->sysdata = v3; in v3_pci_probe() 726 v3->dev = dev; in v3_pci_probe() 742 if (IS_ERR(v3->base)) in v3_pci_probe() [all …]
|
/linux/lib/ |
A D | siphash.c | 24 v2 += v3; v3 = rol64(v3, 16); v3 ^= v2; \ 25 v0 += v3; v3 = rol64(v3, 21); v3 ^= v0; \ 41 v3 ^= b; \ 61 v3 ^= m; in __siphash_aligned() 94 v3 ^= m; in __siphash_unaligned() 262 v3 ^= m; in __hsiphash_aligned() 295 v3 ^= m; in __hsiphash_unaligned() 395 v2 += v3; v3 = rol32(v3, 8); v3 ^= v2; \ 396 v0 += v3; v3 = rol32(v3, 7); v3 ^= v0; \ 430 v3 ^= m; in __hsiphash_aligned() [all …]
|
A D | random32.c | 366 unsigned long v0 = s->v0, v1 = s->v1, v2 = s->v2, v3 = s->v3; in siprand_u32() local 369 v3 ^= n; in siprand_u32() 373 s->v0 = v0; s->v1 = v1; s->v2 = v2; s->v3 = v3; in siprand_u32() 374 return v1 + v3; in siprand_u32() 442 unsigned long v2 = state->v2, v3 = state->v3; in prandom_seed() local 445 v3 ^= entropy; in prandom_seed() 454 WRITE_ONCE(state->v3, v3); in prandom_seed() 478 v3 ^= i; in prandom_init_early() 485 state->v2 = v2; state->v3 = v3; in prandom_init_early() 524 v3 ^= m; in prandom_reseed() [all …]
|
A D | xxhash.c | 120 v3 = xxh32_round(v3, get_unaligned_le32(p)); in xxh32() 190 v3 = xxh64_round(v3, get_unaligned_le64(p)); in xxh64() 297 state->v3 = xxh32_round(state->v3, get_unaligned_le32(p32)); in xxh32_update() 310 uint32_t v3 = state->v3; in xxh32_update() local 318 v3 = xxh32_round(v3, get_unaligned_le32(p)); in xxh32_update() 326 state->v3 = v3; in xxh32_update() 403 state->v3 = xxh64_round(state->v3, get_unaligned_le64(p64)); in xxh64_update() 415 uint64_t v3 = state->v3; in xxh64_update() local 423 v3 = xxh64_round(v3, get_unaligned_le64(p)); in xxh64_update() 431 state->v3 = v3; in xxh64_update() [all …]
|
/linux/include/linux/ |
A D | prandom.h | 30 #define PRND_SIPROUND(v0, v1, v2, v3) ( \ argument 31 v0 += v1, v1 = rol64(v1, 13), v2 += v3, v3 = rol64(v3, 16), \ 32 v1 ^= v0, v0 = rol64(v0, 32), v3 ^= v2, \ 33 v0 += v3, v3 = rol64(v3, 21), v2 += v1, v1 = rol64(v1, 17), \ 34 v3 ^= v0, v1 ^= v2, v2 = rol64(v2, 32) \ 46 #define PRND_SIPROUND(v0, v1, v2, v3) ( \ argument 47 v0 += v1, v1 = rol32(v1, 5), v2 += v3, v3 = rol32(v3, 8), \ 48 v1 ^= v0, v0 = rol32(v0, 16), v3 ^= v2, \ 49 v0 += v3, v3 = rol32(v3, 7), v2 += v1, v1 = rol32(v1, 13), \ 50 v3 ^= v0, v1 ^= v2, v2 = rol32(v2, 16) \
|
/linux/arch/arm64/lib/ |
A D | xor-neon.c | 19 register uint64x2_t v0, v1, v2, v3; in xor_arm64_neon_2() local 33 vst1q_u64(dp1 + 6, v3); in xor_arm64_neon_2() 61 v3 = veorq_u64(v3, vld1q_u64(dp3 + 6)); in xor_arm64_neon_3() 67 vst1q_u64(dp1 + 6, v3); in xor_arm64_neon_3() 97 v3 = veorq_u64(v3, vld1q_u64(dp3 + 6)); in xor_arm64_neon_4() 103 v3 = veorq_u64(v3, vld1q_u64(dp4 + 6)); in xor_arm64_neon_4() 109 vst1q_u64(dp1 + 6, v3); in xor_arm64_neon_4() 142 v3 = veorq_u64(v3, vld1q_u64(dp3 + 6)); in xor_arm64_neon_5() 148 v3 = veorq_u64(v3, vld1q_u64(dp4 + 6)); in xor_arm64_neon_5() 154 v3 = veorq_u64(v3, vld1q_u64(dp5 + 6)); in xor_arm64_neon_5() [all …]
|
/linux/drivers/char/mwave/ |
A D | mwavedd.h | 89 #define PRINTK_4(f,s,v1,v2,v3) \ argument 91 printk(s,v1,v2,v3); \ 94 #define PRINTK_5(f,s,v1,v2,v3,v4) \ argument 96 printk(s,v1,v2,v3,v4); \ 99 #define PRINTK_6(f,s,v1,v2,v3,v4,v5) \ argument 101 printk(s,v1,v2,v3,v4,v5); \ 118 #define PRINTK_4(f,s,v1,v2,v3) argument 119 #define PRINTK_5(f,s,v1,v2,v3,v4) argument 120 #define PRINTK_6(f,s,v1,v2,v3,v4,v5) argument 121 #define PRINTK_7(f,s,v1,v2,v3,v4,v5,v6) argument [all …]
|
/linux/arch/s390/include/asm/ |
A D | vx-insn.h | 100 .ifc \vxr,%v3 208 .if \v3 & 0x10 347 VX_NUM v3, \vr 368 VX_NUM v3, \vto 378 VX_NUM v3, \vto 389 VX_NUM v3, \vr3 421 VX_NUM v3, \vr3 431 VX_NUM v3, \vr3 441 VX_NUM v3, \vr3 463 VX_NUM v3, \vr3 [all …]
|
/linux/arch/powerpc/lib/ |
A D | xor_vmx.c | 75 DEFINE(v3); in __xor_altivec_3() 81 LOAD(v3); in __xor_altivec_3() 83 XOR(v1, v3); in __xor_altivec_3() 88 v3 += 4; in __xor_altivec_3() 98 DEFINE(v3); in __xor_altivec_4() 105 LOAD(v3); in __xor_altivec_4() 108 XOR(v3, v4); in __xor_altivec_4() 114 v3 += 4; in __xor_altivec_4() 125 DEFINE(v3); in __xor_altivec_5() 133 LOAD(v3); in __xor_altivec_5() [all …]
|
/linux/drivers/gpu/drm/amd/display/dc/inc/ |
A D | reg_helper.h | 76 FN(reg, f3), v3) 82 FN(reg, f3), v3,\ 90 FN(reg, f3), v3,\ 99 FN(reg, f3), v3,\ 109 FN(reg, f3), v3,\ 120 FN(reg, f3), v3,\ 132 FN(reg, f3), v3, \ 145 FN(reg, f3), v3, \ 243 FN(reg, f3), v3) 249 FN(reg, f3), v3, \ [all …]
|
/linux/include/pcmcia/ |
A D | device_id.h | 34 #define PCMCIA_DEVICE_PROD_ID3(v3, vh3) { \ argument 36 .prod_id = { NULL, NULL, (v3), NULL }, \ 48 .prod_id = { (v1), NULL, (v3), NULL }, \ 61 .prod_id = { (v1), (v2), (v3), NULL },\ 75 .prod_id = { (v1), NULL, (v3), (v4) }, \ 83 .prod_id = { (v1), (v2), (v3), (v4) }, \ 101 .prod_id = { NULL, NULL, (v3), NULL }, \ 141 .prod_id = { (v1), NULL, (v3), NULL }, \ 150 .prod_id = { (v1), (v2), (v3), NULL },\ 199 .prod_id = { (v1), (v2), (v3), NULL },\ [all …]
|
/linux/arch/arm64/crypto/ |
A D | aes-modes.S | 152 eor v3.16b, v3.16b, v2.16b 155 mov v4.16b, v3.16b 208 eor v3.16b, v3.16b, v7.16b 220 eor v3.16b, v3.16b, v6.16b 391 mov v3.d[1], x9 402 eor v3.16b, v5.16b, v3.16b 445 ST4( tbl v3.16b, {v3.16b}, v10.16b ) 524 eor v3.16b, v3.16b, v7.16b 526 eor v3.16b, v3.16b, v7.16b 617 eor v3.16b, v3.16b, v7.16b [all …]
|
A D | sm3-ce-core.S | 97 CPU_LE( rev32 v3.16b, v3.16b ) 101 qround a, v0, v1, v2, v3, v4 102 qround a, v1, v2, v3, v4, v0 103 qround a, v2, v3, v4, v0, v1 104 qround a, v3, v4, v0, v1, v2 108 qround b, v4, v0, v1, v2, v3 109 qround b, v0, v1, v2, v3, v4 110 qround b, v1, v2, v3, v4, v0 111 qround b, v2, v3, v4, v0, v1 112 qround b, v3, v4, v0, v1, v2 [all …]
|
A D | chacha-neon-core.S | 47 eor v3.16b, v3.16b, v0.16b 48 rev32 v3.8h, v3.8h 58 eor v3.16b, v3.16b, v0.16b 72 ext v3.16b, v3.16b, v3.16b, #12 76 eor v3.16b, v3.16b, v0.16b 77 rev32 v3.8h, v3.8h 87 eor v3.16b, v3.16b, v0.16b 101 ext v3.16b, v3.16b, v3.16b, #4 139 add v3.4s, v3.4s, v11.4s 251 add v3.4s, v3.4s, v7.4s [all …]
|
A D | aes-ce-core.S | 18 mov v3.16b, v1.16b 21 ld1 {v3.4s}, [x0], #16 25 aese v0.16b, v3.16b 31 ld1 {v3.4s}, [x0], #16 34 eor v0.16b, v0.16b, v3.16b 46 mov v3.16b, v1.16b 49 ld1 {v3.4s}, [x0], #16 53 aesd v0.16b, v3.16b 59 ld1 {v3.4s}, [x0], #16 62 eor v0.16b, v0.16b, v3.16b
|
A D | aes-ce-ccm-core.S | 38 mov v5.16b, v3.16b 40 2: mov v4.16b, v3.16b 49 aese v0.16b, v3.16b 97 mov v5.16b, v3.16b 99 0: mov v4.16b, v3.16b 112 aese v0.16b, v3.16b 114 aese v1.16b, v3.16b 142 mov v5.16b, v3.16b 144 1: mov v4.16b, v3.16b 158 aese v0.16b, v3.16b [all …]
|
/linux/drivers/gpu/drm/amd/amdgpu/ |
A D | atombios_crtc.c | 238 ENABLE_SPREAD_SPECTRUM_ON_PPLL_V3 v3; member 295 args.v3.ucEnable = enable; in amdgpu_atombios_crtc_program_ss() 406 args.v3.sInput.ucDispPllConfig = 0; in amdgpu_atombios_crtc_adjust_pll() 408 args.v3.sInput.ucDispPllConfig |= in amdgpu_atombios_crtc_adjust_pll() 411 args.v3.sInput.ucDispPllConfig |= in amdgpu_atombios_crtc_adjust_pll() 434 if (args.v3.sOutput.ucRefDiv) { in amdgpu_atombios_crtc_adjust_pll() 439 if (args.v3.sOutput.ucPostDiv) { in amdgpu_atombios_crtc_adjust_pll() 462 PIXEL_CLOCK_PARAMETERS_V3 v3; member 631 args.v3.ucFracFbDiv = frac_fb_div; in amdgpu_atombios_crtc_program_pll() 632 args.v3.ucPostDiv = post_div; in amdgpu_atombios_crtc_program_pll() [all …]
|
A D | atombios_encoders.c | 557 DIG_ENCODER_CONTROL_PARAMETERS_V3 v3; member 604 args.v3.ucPanelMode = panel_mode; in amdgpu_atombios_encoder_setup_dig_encoder() 636 args.v3.ucAction = action; in amdgpu_atombios_encoder_setup_dig_encoder() 639 args.v3.ucPanelMode = panel_mode; in amdgpu_atombios_encoder_setup_dig_encoder() 644 args.v3.ucLaneNum = dp_lane_count; in amdgpu_atombios_encoder_setup_dig_encoder() 646 args.v3.ucLaneNum = 8; in amdgpu_atombios_encoder_setup_dig_encoder() 648 args.v3.ucLaneNum = 4; in amdgpu_atombios_encoder_setup_dig_encoder() 928 args.v3.ucAction = action; in amdgpu_atombios_encoder_setup_dig_transmitter() 946 args.v3.ucLaneNum = 8; in amdgpu_atombios_encoder_setup_dig_transmitter() 948 args.v3.ucLaneNum = 4; in amdgpu_atombios_encoder_setup_dig_transmitter() [all …]
|
/linux/tools/power/cpupower/debug/kernel/ |
A D | cpufreq-test_tsc.c | 37 u32 v1=0,v2=0,v3=0; in read_pmtmr() local 46 v3 = inl(pm_tmr_ioport); in read_pmtmr() 47 } while ((v1 > v2 && v1 < v3) || (v2 > v3 && v2 < v1) in read_pmtmr() 48 || (v3 > v1 && v3 < v2)); in read_pmtmr()
|
/linux/drivers/iommu/arm/arm-smmu-v3/ |
A D | .built-in.a.cmd | 1 …v3/built-in.a := echo >/dev/null; rm -f drivers/iommu/arm/arm-smmu-v3/built-in.a; /usr/bin/ccache …
|
/linux/drivers/gpu/drm/amd/display/dmub/src/ |
A D | dmub_reg.h | 70 #define REG_SET_3(reg, init_value, f1, v1, f2, v2, f3, v3) \ argument 74 FN(reg, f3), v3) 76 #define REG_SET_4(reg, init_value, f1, v1, f2, v2, f3, v3, f4, v4) \ argument 80 FN(reg, f3), v3, \ 97 #define REG_UPDATE_3(reg, f1, v1, f2, v2, f3, v3) \ argument 101 FN(reg, f3), v3) 103 #define REG_UPDATE_4(reg, f1, v1, f2, v2, f3, v3, f4, v4) \ argument 107 FN(reg, f3), v3, \
|
/linux/arch/arm64/boot/dts/freescale/ |
A D | qoriq-fman3-0.dtsi | 3 * QorIQ FMan v3 device tree 33 compatible = "fsl,fman-v3-port-oh"; 39 compatible = "fsl,fman-v3-port-oh"; 45 compatible = "fsl,fman-v3-port-oh"; 51 compatible = "fsl,fman-v3-port-oh"; 57 compatible = "fsl,fman-v3-port-oh"; 63 compatible = "fsl,fman-v3-port-oh";
|
/linux/drivers/gpu/drm/amd/display/dc/calcs/ |
A D | dcn_calc_math.c | 96 float dcn_bw_max3(float v1, float v2, float v3) in dcn_bw_max3() argument 98 return v3 > dcn_bw_max2(v1, v2) ? v3 : dcn_bw_max2(v1, v2); in dcn_bw_max3() 101 float dcn_bw_max5(float v1, float v2, float v3, float v4, float v5) in dcn_bw_max5() argument 103 …return dcn_bw_max3(v1, v2, v3) > dcn_bw_max2(v4, v5) ? dcn_bw_max3(v1, v2, v3) : dcn_bw_max2(v4, v… in dcn_bw_max5()
|
/linux/drivers/clocksource/ |
A D | acpi_pm.c | 42 u32 v1 = 0, v2 = 0, v3 = 0; in acpi_pm_read_verified() local 53 v3 = read_pmtmr(); in acpi_pm_read_verified() 54 } while (unlikely((v1 > v2 && v1 < v3) || (v2 > v3 && v2 < v1) in acpi_pm_read_verified() 55 || (v3 > v1 && v3 < v2))); in acpi_pm_read_verified()
|
/linux/drivers/irqchip/ |
A D | built-in.a | 17 irq-gic-v3.o/ 18 irq-gic-v3-mbi.o/ 19 irq-gic-v3-its.o/ 20 irq-gic-v3-its-platform-msi.o/ 22 irq-gic-v3-its-pci-msi.o/ 23 irq-gic-v3-its-fsl-mc-msi.o/
|