/arch/mips/kernel/ |
D | spinlock_test.c | 94 struct spin_multi_state ms; in multi_get() local 97 ms.lock = __RAW_SPIN_LOCK_UNLOCKED("multi_get"); in multi_get() 98 ms.loops = 1000000; in multi_get() 100 atomic_set(&ms.start_wait, 2); in multi_get() 101 atomic_set(&ms.enter_wait, 2); in multi_get() 102 atomic_set(&ms.exit_wait, 2); in multi_get() 103 t1.state = &ms; in multi_get() 104 t2.state = &ms; in multi_get()
|
/arch/ia64/kernel/ |
D | mca.c | 897 const pal_min_state_area_t *ms = sos->pal_min_state; in finish_pt_regs() local 904 regs->cr_iip = ms->pmsa_iip; in finish_pt_regs() 905 regs->cr_ipsr = ms->pmsa_ipsr; in finish_pt_regs() 906 regs->cr_ifs = ms->pmsa_ifs; in finish_pt_regs() 908 regs->cr_iip = ms->pmsa_xip; in finish_pt_regs() 909 regs->cr_ipsr = ms->pmsa_xpsr; in finish_pt_regs() 910 regs->cr_ifs = ms->pmsa_xfs; in finish_pt_regs() 912 sos->iip = ms->pmsa_iip; in finish_pt_regs() 913 sos->ipsr = ms->pmsa_ipsr; in finish_pt_regs() 914 sos->ifs = ms->pmsa_ifs; in finish_pt_regs() [all …]
|
/arch/s390/kernel/ |
D | machine_kexec_file.c | 30 struct module_signature *ms; in s390_verify_sig() local 46 ms = (void *)kernel + kernel_len - sizeof(*ms); in s390_verify_sig() 47 kernel_len -= sizeof(*ms); in s390_verify_sig() 49 sig_len = be32_to_cpu(ms->sig_len); in s390_verify_sig() 54 if (ms->id_type != PKEY_ID_PKCS7) in s390_verify_sig() 57 if (ms->algo != 0 || in s390_verify_sig() 58 ms->hash != 0 || in s390_verify_sig() 59 ms->signer_len != 0 || in s390_verify_sig() 60 ms->key_id_len != 0 || in s390_verify_sig() 61 ms->__pad[0] != 0 || in s390_verify_sig() [all …]
|
/arch/m68k/fpsp040/ |
D | sgetem.S | 94 movel LOCAL_HI(%a0),%d0 |load ms mant in d0 97 movel %d0,LOCAL_HI(%a0) |put ms mant back on stack 106 | ms mantissa part in d0 111 tstl %d0 |if any bits set in ms mant 113 | ;else no bits set in ms mant 119 exg %d0,%d1 |shift ls mant to ms mant 121 lsll %d3,%d0 |shift first 1 to integer bit in ms mant 128 lsll %d3,%d0 |shift ms mant until j-bit is set 134 | ;be shifted into ms mant 135 orl %d6,%d0 |shift the ls mant bits into the ms mant
|
D | x_store.S | 118 | extended -> |s| exp | |1| ms mant | | ls mant | 154 movel LOCAL_HI(%a1),%d1 |get ms mantissa 155 bfextu %d1{#1:#20},%d1 |get upper 20 bits of ms 156 orl %d1,%d0 |put these bits in ms word of double 158 movel LOCAL_HI(%a1),%d1 |get ms mantissa
|
D | round.S | 299 | FP_SCR1 = exponent, ms mantissa part, ls mantissa part 327 lsll %d0,%d1 |shift ms mant by count 332 orl %d6,%d1 |shift the ls mant bits into the ms mant 365 movel LOCAL_HI(%a0),%d0 |d0 has ms mant 375 | ;be shifted into ms mant 376 orl %d1,%d0 |shift the ls mant bits into the ms mant 377 movel %d0,LOCAL_HI(%a0) |store ms mant into memory 382 | We get here if ms mant was = 0, and we assume ls mant has bits 388 subw #32,%d0 |account for ms mant being all zeros 391 lsll %d7,%d1 |shift first 1 to integer bit in ms mant [all …]
|
/arch/h8300/ |
D | Makefile | 16 cflags-$(CONFIG_CPU_H8S) := -ms 17 aflags-$(CONFIG_CPU_H8S) := -ms -Wa,--mach=h8300s
|
/arch/arm64/boot/dts/allwinner/ |
D | sun50i-a64-pine64-plus.dts | 30 * Ethernet PHY needs 30ms to properly power up and some more 31 * to initialize. 100ms should be plenty of time to finish
|
D | sun50i-h5-nanopi-neo-plus2.dts | 65 regulator-ramp-delay = <50>; /* 4ms */ 74 post-power-on-delay-ms = <200>;
|
D | sun50i-a64-sopine-baseboard.dts | 127 * Ethernet PHY needs 30ms to properly power up and some more 128 * to initialize. 100ms should be plenty of time to finish
|
D | sun50i-h5-emlid-neutis-n5-devboard.dts | 37 regulator-ramp-delay = <50>; /* 4ms */
|
/arch/powerpc/sysdev/xive/ |
D | spapr.c | 120 unsigned int ms = 0; in plpar_busy_delay_time() local 123 ms = get_longbusy_msecs(rc); in plpar_busy_delay_time() 125 ms = 10; /* seems appropriate for XIVE hcalls */ in plpar_busy_delay_time() 128 return ms; in plpar_busy_delay_time() 133 unsigned int ms; in plpar_busy_delay() local 135 ms = plpar_busy_delay_time(rc); in plpar_busy_delay() 136 if (ms) in plpar_busy_delay() 137 mdelay(ms); in plpar_busy_delay() 139 return ms; in plpar_busy_delay()
|
/arch/powerpc/kernel/ |
D | rtas.c | 493 unsigned int ms = 0; in rtas_busy_delay_time() local 496 ms = 1; in rtas_busy_delay_time() 500 for (ms = 1; order > 0; order--) in rtas_busy_delay_time() 501 ms *= 10; in rtas_busy_delay_time() 504 return ms; in rtas_busy_delay_time() 511 unsigned int ms; in rtas_busy_delay() local 514 ms = rtas_busy_delay_time(status); in rtas_busy_delay() 515 if (ms && need_resched()) in rtas_busy_delay() 516 msleep(ms); in rtas_busy_delay() 518 return ms; in rtas_busy_delay()
|
/arch/arm/mach-pxa/include/mach/ |
D | regs-lcd.h | 197 #define SMART_DELAY(ms) (SMART_CMD_DELAY | ((ms) & 0xff)) argument
|
/arch/arm/boot/dts/ |
D | rk3288-veyron-edp.dtsi | 51 post-pwm-on-delay-ms = <10>; 52 pwm-off-delay-ms = <10>;
|
D | sunxi-bananapi-m2-plus-v1.2.dtsi | 21 regulator-ramp-delay = <50>; /* 4ms */
|
D | imx6qdl-tx6-mb7.dtsi | 45 turn-on-delay-ms = <35>; 51 turn-on-delay-ms = <35>;
|
D | sun8i-a23-polaroid-mid2809pxe04.dts | 58 /* The esp8089 needs 200 ms after driving wifi-en high */ 59 post-power-on-delay-ms = <200>;
|
D | sun8i-h3-emlid-neutis-n5h3-devboard.dts | 26 regulator-ramp-delay = <50>; /* 4ms */
|
D | lpc3250-phy3250.dts | 122 nxp,debounce-delay-ms = <3>; 123 nxp,scan-delay-ms = <34>;
|
D | sun8i-a23-polaroid-mid2407pxe03.dts | 58 /* The esp8089 needs 200 ms after driving wifi-en high */ 59 post-power-on-delay-ms = <200>;
|
D | sun8i-q8-common.dtsi | 75 /* The esp8089 needs 200 ms after driving wifi-en high */ 76 post-power-on-delay-ms = <200>;
|
/arch/arm64/boot/dts/rockchip/ |
D | rk3399-gru-chromebook.dtsi | 120 * Need to wait 1ms + ramp-up time before we can power on WiFi. 121 * This has been approximated as 8ms total. 179 * 1ms after its regulators have ramped up (max rampup time is ~7ms). 274 realtek,dmic-init-delay-ms = <20>;
|
/arch/x86/kernel/ |
D | tsc.c | 388 static unsigned long pit_calibrate_tsc(u32 latch, unsigned long ms, int loopmin) in pit_calibrate_tsc() argument 450 do_div(delta, ms); in pit_calibrate_tsc() 720 unsigned long flags, latch, ms; in pit_hpet_ptimer_calibrate_cpu() local 750 ms = CAL_MS; in pit_hpet_ptimer_calibrate_cpu() 764 tsc_pit_khz = pit_calibrate_tsc(latch, ms, loopmin); in pit_hpet_ptimer_calibrate_cpu() 811 ms = CAL2_MS; in pit_hpet_ptimer_calibrate_cpu()
|
/arch/s390/include/asm/ |
D | nmi.h | 58 u64 ms : 1; /* 21 psw mask and key validity */ member
|