Searched refs:msw (Results 1 - 14 of 14) sorted by relevance

/linux-master/arch/x86/math-emu/
H A Dpoly_sin.c68 accumulator.lsw = accumulator.midw = accumulator.msw = 0;
76 argSqrd.msw = st0_ptr->sigh;
81 argTo4.msw = argSqrd.msw;
95 accumulator.msw |= 0x80000000; /* Add 1.0 */
169 if (argSqrd.msw & 0xffc00000) {
171 fix_up -= mul_32_32(0x898cc517, argSqrd.msw) / 6;
220 accumulator.lsw = accumulator.midw = accumulator.msw = 0;
226 argSqrd.msw = st0_ptr->sigh;
236 argTo4.msw
[all...]
H A Dpoly_tan.c116 accumulatoro.msw = accumulatoro.midw = accumulatoro.lsw = 0;
126 accumulatore.msw = accumulatore.midw = accumulatore.lsw = 0;
142 if (accumulatore.msw == 0) {
181 adj = accum.msw >> -(exponent + 1); /* tan */
187 fix_up.msw += adj;
188 if (!(fix_up.msw & 0x80000000)) { /* did fix_up overflow ? */
191 fix_up.msw |= 0x80000000;
202 accumulatoro.msw = 0x80000000;
H A Dpoly_2xm1.c74 shift = (argSignif.msw & 0x40000000) ? 3 : 2;
94 accumulator.lsw = accumulator.midw = accumulator.msw = 0;
107 accumulator.msw |= 0x80000000; /* add 1.0 */
109 accumulator.msw &= 0x3fffffff; /* subtract 1.0 */
128 Denom.msw |= 0x80000000; /* add 1.0 */
H A Dpoly_l2.c55 accumulator.msw = accumulator.midw = accumulator.lsw = 0;
65 expon_accum.msw = exponent;
85 if (accumulator.msw == 0) {
194 Denom.msw |= 0x80000000;
199 if (Denom.msw & 0x80000000) {
206 argSignif.msw = Numer.msw;
213 if ((exponent > -2) || (argSignif.msw > (unsigned)0xafb0ccc0)) {
230 accumulator.msw = accumulator.midw = accumulator.lsw = 0;
243 accum_result->msw
[all...]
H A Dpoly_atan.c97 || ((exponent == -2) && (argSignif.msw > 0xd413ccd0))) {
106 (argSignif.msw == 0x80000000))) {
111 argSignif.msw = 0; /* Make the transformed arg -> 0.0 */
121 Denom.msw |= 0x80000000;
133 argSq.msw = argSignif.msw;
138 argSqSq.msw = argSq.msw;
151 accumulator.msw = accumulator.midw = accumulator.lsw = 0;
163 accumulatore.msw |
[all...]
H A Dpoly.h27 unsigned long msw; member in struct:__anon1489
/linux-master/drivers/clocksource/
H A Dbcm_kona_timer.c60 kona_timer_get_counter(void __iomem *timer_base, uint32_t *msw, uint32_t *lsw) argument
77 *msw = readl(timer_base + KONA_GPTIMER_STCHI_OFFSET);
79 if (*msw == readl(timer_base + KONA_GPTIMER_STCHI_OFFSET))
104 uint32_t lsw, msw; local
108 ret = kona_timer_get_counter(timers.tmr_regs, &msw, &lsw);
/linux-master/fs/afs/
H A Dprotocol_yfs.h60 __be32 msw; member in struct:yfs_xdr_u64
66 return ((u64)ntohl(x.msw) << 32) | ntohl(x.lsw);
71 return (struct yfs_xdr_u64){ .msw = htonl(x >> 32), .lsw = htonl(x) };
/linux-master/drivers/memstick/core/
H A Dms_block.h114 unsigned short msw; member in struct:ms_cis_idi
/linux-master/arch/m68k/ifpsp060/src/
H A Dilsp.S283 # if the divisor msw is 0, use simpler algorithm then the full blown
340 # Now calculate an estimate of the quotient words (msw first, then lsw).
353 divu.w %d3, %d1 # use quotient of mslw/msw
459 mulu.w %d3, %d5 # %d5 <- msw-dest*lsw-source
460 mulu.w %d4, %d2 # %d2 <- msw-source*lsw-dest
461 mulu.w %d4, %d3 # %d3 <- msw*msw
465 add.w %d5, %d6 # add msw of l*l to lsw of m*l product
/linux-master/sound/pci/ac97/
H A Dac97_codec.c2751 struct snd_kcontrol *msw = ctl_find(ac97, "Master Playback Switch", NULL); local
2753 if (! msw || ! mvol)
2755 msw->put = bind_hp_volsw_put;
2858 struct snd_kcontrol *msw = ctl_find(ac97, "Master Playback Switch", NULL); local
2859 if (! msw)
2861 msw->put = master_mute_sw_put;
2893 struct snd_kcontrol *msw = ctl_find(ac97, "Master Playback Switch", NULL); local
2895 if (! msw || ! mvol)
2897 msw->put = hp_master_mute_sw_put;
/linux-master/drivers/net/fddi/
H A Ddefza.h384 u32 msw; member in struct:fza_counter
/linux-master/arch/x86/include/asm/
H A Dkvm_host.h2071 void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw);
/linux-master/arch/x86/kvm/
H A Dx86.c1012 void kvm_lmsw(struct kvm_vcpu *vcpu, unsigned long msw) argument
1014 (void)kvm_set_cr0(vcpu, kvm_read_cr0_bits(vcpu, ~0x0eul) | (msw & 0x0f));

Completed in 202 milliseconds