Home
last modified time | relevance | path

Searched refs:vval (Results 1 – 11 of 11) sorted by relevance

/openbmc/linux/lib/crypto/mpi/
H A Dmpi-sub-ui.c37 int mpi_sub_ui(MPI w, MPI u, unsigned long vval) in mpi_sub_ui() argument
42 w->d[0] = vval; in mpi_sub_ui()
43 w->nlimbs = (vval != 0); in mpi_sub_ui()
44 w->sign = (vval != 0); in mpi_sub_ui()
55 cy = mpihelp_add_1(w->d, u->d, u->nlimbs, (mpi_limb_t) vval); in mpi_sub_ui()
63 if (u->nlimbs == 1 && u->d[0] < vval) { in mpi_sub_ui()
64 w->d[0] = vval - u->d[0]; in mpi_sub_ui()
68 mpihelp_sub_1(w->d, u->d, u->nlimbs, (mpi_limb_t) vval); in mpi_sub_ui()
/openbmc/linux/arch/xtensa/include/asm/
H A Datomic.h185 unsigned int vval; \
194 : [result] "=&a" (vval), [mem] "+m" (*v) \
203 unsigned int vval; \
212 : [result] "=&a" (vval), [mem] "+m" (*v) \
217 return vval; \
223 unsigned int tmp, vval; \
232 : [result] "=&a" (vval), [tmp] "=&a" (tmp), \
238 return vval; \
/openbmc/u-boot/drivers/power/
H A Dpalmas.c82 u8 cval = 0, vval = 0; /* Off by default */ in twl603x_mmc1_set_ldo9() local
90 vval = LDO_VOLT_3V3; in twl603x_mmc1_set_ldo9()
93 vval = vsel & 0x3f; in twl603x_mmc1_set_ldo9()
96 err = palmas_i2c_write_u8(TWL603X_CHIP_P1, LDO9_VOLTAGE, vval); in twl603x_mmc1_set_ldo9()
116 u8 cval = 0, vval = 0, c32k = 0; in twl603x_audio_power() local
120 vval = SMPS_VOLT_2V1; in twl603x_audio_power()
125 err = palmas_i2c_write_u8(TWL603X_CHIP_P1, SMPS9_VOLTAGE, vval); in twl603x_audio_power()
/openbmc/linux/arch/powerpc/kvm/
H A Dpowerpc.c1061 val.vval = VCPU_VSX_VR(vcpu, index); in kvmppc_set_vmx_dword()
1063 VCPU_VSX_VR(vcpu, index) = val.vval; in kvmppc_set_vmx_dword()
1077 val.vval = VCPU_VSX_VR(vcpu, index); in kvmppc_set_vmx_word()
1079 VCPU_VSX_VR(vcpu, index) = val.vval; in kvmppc_set_vmx_word()
1093 val.vval = VCPU_VSX_VR(vcpu, index); in kvmppc_set_vmx_hword()
1095 VCPU_VSX_VR(vcpu, index) = val.vval; in kvmppc_set_vmx_hword()
1109 val.vval = VCPU_VSX_VR(vcpu, index); in kvmppc_set_vmx_byte()
1111 VCPU_VSX_VR(vcpu, index) = val.vval; in kvmppc_set_vmx_byte()
1559 reg.vval = VCPU_VSX_VR(vcpu, index); in kvmppc_get_vmx_dword()
1577 reg.vval = VCPU_VSX_VR(vcpu, index); in kvmppc_get_vmx_word()
[all …]
H A Dbook3s_pr.c1584 val->vval = vcpu->arch.vr_tm.vr[i-32]; in kvmppc_get_one_reg_pr()
1684 vcpu->arch.vr_tm.vr[i-32] = val->vval; in kvmppc_set_one_reg_pr()
H A Dbook3s_hv.c2373 val->vval = vcpu->arch.vr_tm.vr[i-32]; in kvmppc_get_one_reg_hv()
2646 vcpu->arch.vr_tm.vr[i-32] = val->vval; in kvmppc_set_one_reg_hv()
/openbmc/linux/arch/arm/kernel/
H A Dperf_event_v7.c1419 u32 vval, fval; in krait_evt_setup() local
1446 venum_post_pmresr(vval, fval); in krait_evt_setup()
1475 u32 vval, fval; in krait_clearpmu() local
1485 venum_post_pmresr(vval, fval); in krait_clearpmu()
1557 u32 vval, fval; in krait_pmu_reset() local
1568 venum_pre_pmresr(&vval, &fval); in krait_pmu_reset()
1570 venum_post_pmresr(vval, fval); in krait_pmu_reset()
1766 u32 vval, fval; in scorpion_evt_setup() local
1808 u32 vval, fval; in scorpion_clearpmu() local
1890 u32 vval, fval; in scorpion_pmu_reset() local
[all …]
/openbmc/u-boot/board/compulab/cm_t54/
H A Dcm_t54.c55 static int cm_t54_palmas_regulator_set(u8 vreg, u8 vval, u8 creg, u8 cval) in cm_t54_palmas_regulator_set() argument
60 err = palmas_i2c_write_u8(TWL603X_CHIP_P1, vreg, vval); in cm_t54_palmas_regulator_set()
/openbmc/linux/include/linux/
H A Dmpi.h126 int mpi_sub_ui(MPI w, MPI u, unsigned long vval);
/openbmc/qemu/target/hppa/
H A Dtranslate.c547 uint64_t ival, TCGv_i64 vval) in copy_iaoq_entry() argument
555 tcg_debug_assert(vval != NULL); in copy_iaoq_entry()
561 if (vval == cpu_iaoq_f || vval == cpu_iaoq_b) { in copy_iaoq_entry()
562 tcg_gen_mov_i64(dest, vval); in copy_iaoq_entry()
564 tcg_gen_andi_i64(dest, vval, mask); in copy_iaoq_entry()
/openbmc/linux/arch/powerpc/include/asm/
H A Dkvm_ppc.h249 vector128 vval; member