/arch/arm/mach-omap2/ |
D | vc.c | 96 struct omap_vc_channel *vc = voltdm->vc; in omap_vc_config_channel() local 102 if (vc->flags & OMAP_VC_CHANNEL_DEFAULT) in omap_vc_config_channel() 103 vc->cfg_channel &= vc_cfg_bits->racen; in omap_vc_config_channel() 105 voltdm->rmw(CFG_CHANNEL_MASK << vc->cfg_channel_sa_shift, in omap_vc_config_channel() 106 vc->cfg_channel << vc->cfg_channel_sa_shift, in omap_vc_config_channel() 107 vc->cfg_channel_reg); in omap_vc_config_channel() 117 struct omap_vc_channel *vc = voltdm->vc; in omap_vc_pre_scale() local 143 vc_cmdval = voltdm->read(vc->cmdval_reg); in omap_vc_pre_scale() 144 vc_cmdval &= ~vc->common->cmd_on_mask; in omap_vc_pre_scale() 145 vc_cmdval |= (*target_vsel << vc->common->cmd_on_shift); in omap_vc_pre_scale() [all …]
|
D | voltagedomains44xx_data.c | 56 .vc = &omap4_vc_mpu, 67 .vc = &omap4_vc_iva, 78 .vc = &omap4_vc_core,
|
D | voltagedomains3xxx_data.c | 57 .vc = &omap3_vc_mpu, 68 .vc = &omap3_vc_core,
|
D | voltage.h | 75 struct omap_vc_channel *vc; member
|
D | voltage.c | 289 if (voltdm->vc) { in omap_voltage_late_init()
|
D | Makefile | 120 voltagedomain-common := voltage.o vc.o vp.o
|
/arch/mips/math-emu/ |
D | ieee754int.h | 78 #define EXPLODESP(v, vc, vs, ve, vm) \ argument 85 vc = IEEE754_CLASS_INF;\ 88 vc = IEEE754_CLASS_QNAN;\ 90 vc = IEEE754_CLASS_SNAN;\ 93 vc = IEEE754_CLASS_SNAN;\ 95 vc = IEEE754_CLASS_QNAN;\ 100 vc = IEEE754_CLASS_DNORM;\ 102 vc = IEEE754_CLASS_ZERO;\ 106 vc = IEEE754_CLASS_NORM;\ 119 #define EXPLODEDP(v, vc, vs, ve, vm) \ argument [all …]
|
/arch/powerpc/math-emu/ |
D | math_efp.c | 185 union dw_union vc, va, vb; in do_spe_mathemu() local 202 vc.wp[0] = current->thread.evr[fc]; in do_spe_mathemu() 203 vc.wp[1] = regs->gpr[fc]; in do_spe_mathemu() 212 pr_debug("vc: %08x %08x\n", vc.wp[0], vc.wp[1]); in do_spe_mathemu() 237 vc.wp[1] = va.wp[1] & ~SIGN_BIT_S; in do_spe_mathemu() 241 vc.wp[1] = va.wp[1] | SIGN_BIT_S; in do_spe_mathemu() 245 vc.wp[1] = va.wp[1] ^ SIGN_BIT_S; in do_spe_mathemu() 282 vc.wp[1] = 0x0; in do_spe_mathemu() 285 vc.wp[1] = (func == EFSCTSF) ? in do_spe_mathemu() 288 vc.wp[1] = (func == EFSCTSF) ? in do_spe_mathemu() [all …]
|
/arch/powerpc/kvm/ |
D | book3s_hv.c | 130 struct kvmppc_vcore *vc = vcpu->arch.vcore; in kvmppc_core_vcpu_load() local 133 if (vc->runner == vcpu && vc->vcore_state != VCORE_INACTIVE && in kvmppc_core_vcpu_load() 134 vc->preempt_tb != TB_NIL) { in kvmppc_core_vcpu_load() 135 vc->stolen_tb += mftb() - vc->preempt_tb; in kvmppc_core_vcpu_load() 136 vc->preempt_tb = TB_NIL; in kvmppc_core_vcpu_load() 148 struct kvmppc_vcore *vc = vcpu->arch.vcore; in kvmppc_core_vcpu_put() local 151 if (vc->runner == vcpu && vc->vcore_state != VCORE_INACTIVE) in kvmppc_core_vcpu_put() 152 vc->preempt_tb = mftb(); in kvmppc_core_vcpu_put() 443 static u64 vcore_stolen_time(struct kvmppc_vcore *vc, u64 now) in vcore_stolen_time() argument 455 if (vc->vcore_state != VCORE_INACTIVE && in vcore_stolen_time() [all …]
|
/arch/alpha/math-emu/ |
D | math.c | 105 unsigned long res, va, vb, vc, swcr, fpcr; in alpha_fp_emul() local 174 vc = 0x4000000000000000UL; in alpha_fp_emul() 184 case FOP_FNC_CMPxUN: if (res != 3) vc = 0; break; in alpha_fp_emul() 185 case FOP_FNC_CMPxEQ: if (res) vc = 0; break; in alpha_fp_emul() 186 case FOP_FNC_CMPxLT: if (res != -1) vc = 0; break; in alpha_fp_emul() 187 case FOP_FNC_CMPxLE: if ((long)res > 0) vc = 0; break; in alpha_fp_emul() 237 vc = 0; in alpha_fp_emul() 239 FP_TO_INT_ROUND_D(vc, DB, 64, 2); in alpha_fp_emul() 253 vc = ((vb & 0xc0000000) << 32 | /* sign and msb */ in alpha_fp_emul() 271 FP_PACK_SP(&vc, SR); in alpha_fp_emul() [all …]
|
/arch/powerpc/kernel/ |
D | vecemu.c | 262 unsigned int va, vb, vc, vd; in emulate_altivec() local 272 vc = (instr >> 6) & 0x1f; in emulate_altivec() 277 switch (vc) { in emulate_altivec() 335 vmaddfp(&vrs[vd], &vrs[va], &vrs[vb], &vrs[vc]); in emulate_altivec() 338 vnmsubfp(&vrs[vd], &vrs[va], &vrs[vb], &vrs[vc]); in emulate_altivec()
|
/arch/powerpc/include/asm/ |
D | kvm_host.h | 303 #define VCORE_ENTRY_COUNT(vc) ((vc)->entry_exit_count & 0xff) argument 304 #define VCORE_EXIT_COUNT(vc) ((vc)->entry_exit_count >> 8) argument
|