Searched refs:divisor (Results 176 - 186 of 186) sorted by last modified time

12345678

/linux-master/arch/arm/mach-orion5x/
H A Dtsx09-common.c26 /* 19200 baud divisor */
27 const unsigned divisor = ((orion5x_tclk + (8 * 19200)) / (16 * 19200)); local
33 writel(divisor & 0xff, UART1_REG(DLL));
34 writel((divisor >> 8) & 0xff, UART1_REG(DLM));
H A Dterastation_pro2-setup.c269 /* 38400 baud divisor */
270 const unsigned divisor = ((orion5x_tclk + (8 * 38400)) / (16 * 38400)); local
276 writel(divisor & 0xff, UART1_REG(DLL));
277 writel((divisor >> 8) & 0xff, UART1_REG(DLM));
/linux-master/drivers/video/fbdev/via/
H A Dvia_clock.h27 u8 divisor; member in struct:via_pll_config
50 return ref_freq / pll.divisor * pll.multiplier;
H A Dvia_clock.c25 | pll.divisor;
30 return ((pll.divisor - 2) << 16)
37 return (pll.divisor << 16)
H A Dhw.h481 u8 divisor; member in struct:pll_limit
H A Dhw.c1382 cur.divisor = limits[i].divisor;
1383 cur.multiplier = clk / ((f0 / cur.divisor)>>cur.rshift);
/linux-master/arch/arm/lib/
H A Dlib1funcs.S40 .macro ARM_DIV_BODY dividend, divisor, result, curbit
44 clz \curbit, \divisor
48 mov \divisor, \divisor, lsl \result
54 @ Initially shift the divisor left 3 bits if possible,
58 tst \divisor, #0xe0000000
59 moveq \divisor, \divisor, lsl #3
63 @ Unless the divisor is very big, shift it up in multiples of
65 @ division loop. Continue shifting until the divisor i
[all...]
/linux-master/arch/x86/boot/
H A Dearly_serial_console.c29 unsigned divisor; local
36 divisor = 115200 / baud;
39 outb(divisor & 0xff, port + DLL);
40 outb((divisor >> 8) & 0xff, port + DLH);
/linux-master/drivers/acpi/acpica/
H A Dutmath.c243 * divisor - 32-bit divisor
257 u32 divisor, u64 *out_quotient, u32 *out_remainder)
265 /* Always check for a zero divisor */
267 if (divisor == 0) {
278 ACPI_DIV_64_BY_32(0, dividend_ovl.part.hi, divisor,
281 ACPI_DIV_64_BY_32(remainder32, dividend_ovl.part.lo, divisor,
316 union uint64_overlay divisor; local
327 /* Always check for a zero divisor */
334 divisor
256 acpi_ut_short_divide(u64 dividend, u32 divisor, u64 *out_quotient, u32 *out_remainder) argument
444 acpi_ut_short_divide(u64 in_dividend, u32 divisor, u64 *out_quotient, u32 *out_remainder) argument
[all...]
/linux-master/arch/m68k/ifpsp060/src/
H A Dilsp.S74 # 0x4(sp) = divisor #
89 # codes before performing the final "rts". If the divisor was equal to #
134 mov.l 0x8(%a6),%d7 # fetch divisor
136 beq.w ldiv64eq0 # divisor is = 0!!!
145 # save the sign of the divisor
146 # make divisor unsigned if it's negative
147 tst.l %d7 # chk sign of divisor
148 slt NDIVISOR(%a6) # save sign of divisor
150 neg.l %d7 # complement negative divisor
165 # - is (hi(dividend) == 0 && (divisor <
[all...]
/linux-master/drivers/net/wireless/ath/ath9k/
H A Dcommon-beacon.c24 unsigned int offset, divisor; local
27 divisor = TU_TO_USEC(interval);
28 div_u64_rem(tsf, divisor, &offset);
30 return (u32) tsf + divisor - offset;

Completed in 352 milliseconds

12345678