Searched refs:divisor (Results 1 - 5 of 5) sorted by relevance

/netgear-R7800-V1.0.2.28/target/linux/at91/image/dfboot/src/
H A D_udivsi3.S5 divisor .req r1 label
17 cmp divisor, #0
21 cmp dividend, divisor
24 @ Unless the divisor is very big, shift it up in multiples of
26 @ division loop. Continue shifting until the divisor is
28 cmp divisor, #0x10000000
29 cmpcc divisor, dividend
30 movcc divisor, divisor, lsl #4
36 cmp divisor, #
[all...]
H A D_umodsi3.S6 divisor .req r1 label
18 cmp divisor, #0
21 cmp dividend, divisor
24 @ Unless the divisor is very big, shift it up in multiples of
26 @ division loop. Continue shifting until the divisor is
28 cmp divisor, #0x10000000
29 cmpcc divisor, dividend
30 movcc divisor, divisor, lsl #4
36 cmp divisor, #
[all...]
/netgear-R7800-V1.0.2.28/target/linux/generic/image/lzma-loader/src/
H A Duart16550.c56 uint32 divisor; local
61 /* set divisor */
62 divisor = MAX_BAUD / baud;
63 UART16550_WRITE(OFS_DIVISOR_LSB, divisor & 0xff);
64 UART16550_WRITE(OFS_DIVISOR_MSB, (divisor & 0xff00)>>8);
/netgear-R7800-V1.0.2.28/target/linux/generic/files/crypto/ocf/kirkwood/mvHal/linux_oss/
H A DmvOs.h201 static INLINE MV_U64 mvOsDivMod64(MV_U64 divided, MV_U64 divisor, MV_U64* modulu) argument
205 if(divisor == 1)
208 while(divided >= divisor)
211 divided -= divisor;
/netgear-R7800-V1.0.2.28/target/linux/s3c24xx/files-2.6.30/arch/arm/mach-s3c2442/
H A Dmach-gta02.c152 u16 divisor = 0xffff; local
166 divisor = FIQ_DIVISOR_VIBRATOR;
171 divisor = FIQ_DIVISOR_HDQ;
174 if (divisor == 0xffff) /* mask the fiq irq source */
178 __raw_writel(divisor, S3C2410_TCNTB(gta02_fiq_timer_index));

Completed in 92 milliseconds