Searched refs:sdiv (Results 1 - 10 of 10) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-s5p/include/plat/
H A Dpll.h33 u32 mdiv, pdiv, sdiv; local
38 sdiv = (pll_con >> PLL45XX_SDIV_SHIFT) & PLL45XX_SDIV_MASK;
41 sdiv = sdiv - 1;
44 do_div(fvco, (pdiv << sdiv));
67 u32 mdiv, pdiv, sdiv, kdiv; local
72 sdiv = (pll_con0 >> PLL46XX_SDIV_SHIFT) & PLL46XX_SDIV_MASK;
79 do_div(tmp, (pdiv << sdiv));
83 do_div(tmp, (pdiv << sdiv));
103 u32 mdiv, pdiv, sdiv, kdi local
135 u32 mdiv, pdiv, sdiv; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-samsung/include/plat/
H A Dpll6553x.h30 u32 mdiv, pdiv, sdiv, kdiv; local
35 sdiv = (pll0 >> PLL6553X_SDIV_SHIFT) & PLL6553X_SDIV_MASK;
47 do_div(tmp, (pdiv << sdiv));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-s3c64xx/include/mach/
H A Dpll.h28 u32 mdiv, pdiv, sdiv; local
33 sdiv = (pllcon >> S3C6400_PLL_SDIV_SHIFT) & S3C6400_PLL_SDIV_MASK;
36 do_div(fvco, (pdiv << sdiv));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-s3c24xx/include/plat/
H A Dpll.h22 unsigned int mdiv, pdiv, sdiv; local
27 sdiv = pllval >> S3C24XX_PLLCON_SDIVSHIFT;
31 sdiv &= S3C24XX_PLLCON_SDIVMASK;
34 do_div(fvco, (pdiv + 2) << sdiv);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-s3c2410/include/mach/
H A Dregs-s3c2443-clock.h126 unsigned int mdiv, pdiv, sdiv; local
131 sdiv = pllval >> S3C2443_PLLCON_SDIVSHIFT;
135 sdiv &= S3C2443_PLLCON_SDIVMASK;
138 do_div(fvco, pdiv << sdiv);
146 unsigned int mdiv, pdiv, sdiv; local
151 sdiv = pllval >> S3C2443_PLLCON_SDIVSHIFT;
155 sdiv &= S3C2443_PLLCON_SDIVMASK;
158 do_div(fvco, (pdiv + 2) << sdiv);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/bn/
H A Dbn_div.c194 BIGNUM *tmp, wnum, *snum, *sdiv, *res; local
246 sdiv = BN_CTX_get(ctx);
251 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL)
256 if (!(BN_lshift(sdiv, divisor, norm_shift)))
258 sdiv->neg = 0;
266 * Since we don't know whether snum is larger than sdiv, we pad snum
269 if (snum->top <= sdiv->top + 1) {
270 if (bn_wexpand(snum, sdiv->top + 2) == NULL)
272 for (i = snum->top; i < sdiv->top + 2; i++)
274 snum->top = sdiv
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/bn/
H A Dbn_div.c194 BIGNUM *tmp, wnum, *snum, *sdiv, *res; local
246 sdiv = BN_CTX_get(ctx);
251 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL)
256 if (!(BN_lshift(sdiv, divisor, norm_shift)))
258 sdiv->neg = 0;
266 * Since we don't know whether snum is larger than sdiv, we pad snum
269 if (snum->top <= sdiv->top + 1) {
270 if (bn_wexpand(snum, sdiv->top + 2) == NULL)
272 for (i = snum->top; i < sdiv->top + 2; i++)
274 snum->top = sdiv
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/
H A Dbn_div.c183 BIGNUM *tmp,wnum,*snum,*sdiv,*res; local
210 sdiv=BN_CTX_get(ctx);
214 if (sdiv == NULL || res == NULL) goto err;
218 if (!(BN_lshift(sdiv,divisor,norm_shift))) goto err;
219 sdiv->neg=0;
223 div_n=sdiv->top;
235 /* Get the top 2 words of sdiv */
236 /* div_n=sdiv->top; */
237 d0=sdiv->d[div_n-1];
238 d1=(div_n == 1)?0:sdiv
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/soc/ep93xx/
H A Dep93xx-i2s.c248 unsigned word_len, div, sdiv, lrdiv; local
274 * Calculate the sdiv (bit clock) and lrdiv (left/right clock) values.
280 for (sdiv = 2; sdiv <= 4; sdiv += 2)
282 if (sdiv * lrdiv == div) {
290 err = clk_set_rate(info->sclk, clk_get_rate(info->mclk) / sdiv);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/lib/
H A DMakefile7 lib-$(CONFIG_SPARC32) += mul.o rem.o sdiv.o udiv.o umul.o urem.o ashrdi3.o

Completed in 120 milliseconds