| /src/sys/arch/evbarm/stand/board/ |
| sscom.c | 208 int sdiv = (pllcon & PLLCON_SDIV_MASK) >> PLLCON_SDIV_SHIFT; local 211 clk = (XTAL_CLK * 1000000 * (8 + mdiv)) / ((pdiv + 2) << sdiv); 213 clk = (XTAL_CLK * (8 + mdiv)) / ((pdiv + 2) << sdiv); 216 /*printf( "M=%d P=%d S=%d\n", mdiv, pdiv, sdiv);*/
|
| /src/lib/libarch/sparc/v8/ |
| sparc_v8.S | 72 sdiv %o0, %o1, %o0 98 sdiv %o0, %o1, %g2
|
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/clk/ |
| nouveau_nvkm_subdev_clk_gk104.c | 127 u32 sdiv = (sctl & 0x0000003f) + 2; local 128 return (sclk * 2) / sdiv; 154 u32 sclk, sdiv; local 160 sdiv = 1; 163 sdiv = 0; 172 sdiv = 1; 174 sdiv = 0; 178 sdiv = 0; 183 if (sdiv) 184 sdiv = ((sctl & 0x00003f00) >> 8) + 2 [all...] |
| nouveau_nvkm_subdev_clk_gt215.c | 69 u32 sctl, sdiv, sclk; local 105 sdiv = ((sctl & 0x003f0000) >> 16) + 2; 106 return (sclk * 2) / sdiv; 196 u32 oclk, sclk, sdiv; local 213 sdiv = min((sclk * 2) / khz, (u32)65); 214 oclk = (sclk * 2) / sdiv; 220 sdiv++; 221 oclk = (sclk * 2) / sdiv; 228 if (sdiv > 4) { 229 info->clk = (((sdiv - 2) << 16) | 0x00003100) [all...] |
| nouveau_nvkm_subdev_clk_gf100.c | 107 u32 sclk, sctl, sdiv = 2; local 127 sdiv = (sctl & 0x3f) + 2; 131 return (sclk * 2) / sdiv; 143 u32 sclk, sdiv; local 150 sdiv = ((sctl & 0x00003f00) >> 8) + 2; 153 sdiv = ((sctl & 0x0000003f) >> 0) + 2; 157 return (sclk * 2) / sdiv;
|
| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/arm/ |
| divsi3.S | 43 sdiv r0, r0, r1
|
| modsi3.S | 40 sdiv r2, r0, r1
|
| divmodsi4.S | 43 sdiv r0, r3, r1
|
| /src/sys/arch/evbarm/smdk2xx0/ |
| smdk2410_start.S | 178 .macro clock_data hdivn, pdivn, mdiv, pdiv, sdiv 180 .word (\mdiv)<<PLLCON_MDIV_SHIFT | (\pdiv)<<PLLCON_PDIV_SHIFT | (\sdiv)<<PLLCON_SDIV_SHIFT
|
| /src/sys/arch/arm/s3c2xx0/ |
| s3c2410.c | 209 int mdiv, pdiv, sdiv; local 217 sdiv = (pllcon & PLLCON_SDIV_MASK) >> PLLCON_SDIV_SHIFT; 219 f = ((mdiv + 8) * S3C2XX0_XTAL_CLK) / ((pdiv + 2) * (1 << sdiv));
|
| s3c2440.c | 241 int mdiv, pdiv, sdiv; local 250 sdiv = (pllcon & PLLCON_SDIV_MASK) >> PLLCON_SDIV_SHIFT; 252 f = ((mdiv + 8) * S3C2XX0_XTAL_CLK) / ((pdiv + 2) * (1 << sdiv)) * 2;
|
| s3c2800.c | 208 int mdiv, pdiv, sdiv; local 216 sdiv = (pllcon & PLLCON_SDIV_MASK) >> PLLCON_SDIV_SHIFT; 218 f = ((mdiv + 8) * S3C2XX0_XTAL_CLK) / ((pdiv + 2) * (1 << sdiv));
|
| /src/sys/arch/evbarm/stand/boot2440/ |
| main.c | 411 int mdiv, pdiv, sdiv; local 420 sdiv = (pllcon & PLLCON_SDIV_MASK) >> PLLCON_SDIV_SHIFT; 422 f = ((mdiv + 8) * S3C2XX0_XTAL_CLK) / ((pdiv + 2) * (1 << sdiv)) * 2;
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| ConstantRange.cpp | 810 case Instruction::SDiv: 811 return sdiv(Other); 1135 ConstantRange ConstantRange::sdiv(const ConstantRange &RHS) const { 1151 PosRes = ConstantRange(PosL.Lower.sdiv(PosR.Upper - 1), 1152 (PosL.Upper - 1).sdiv(PosR.Lower) + 1); 1161 APInt Lo = (NegL.Upper - 1).sdiv(NegR.Lower); 1175 ConstantRange(Lo, NegL.Lower.sdiv(AdjNegRUpper - 1) + 1)); 1191 AdjNegLLower.sdiv(NegR.Upper - 1) + 1)); 1195 ConstantRange(std::move(Lo), NegL.Lower.sdiv(NegR.Upper - 1) + 1)); 1202 NegRes = ConstantRange((PosL.Upper - 1).sdiv(NegR.Upper - 1) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| APSInt.h | 129 *this = sdiv(RHS); 138 return IsUnsigned ? APSInt(udiv(RHS), true) : APSInt(sdiv(RHS), false);
|
| APInt.h | 63 /// of the operation. For example, sdiv and udiv. However, because the bit 1075 APInt sdiv(const APInt &RHS) const; 1076 APInt sdiv(int64_t RHS) const;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| ConstantRange.h | 412 ConstantRange sdiv(const ConstantRange &Other) const;
|
| /src/external/apache2/llvm/dist/llvm/lib/ProfileData/ |
| ProfileSummaryBuilder.cpp | 143 Temp = Temp.sdiv(D);
|
| /src/external/apache2/llvm/dist/llvm/utils/vim/syntax/ |
| llvm.vim | 33 syn keyword llvmStatement olt one or ord phi ptrtoint resume ret sdiv select
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| double-int.h | 147 double_int sdiv (double_int, unsigned) const;
|
| /src/external/gpl3/gcc/dist/gcc/ |
| double-int.h | 147 double_int sdiv (double_int, unsigned) const;
|
| internal-fn.def | 281 DEF_INTERNAL_SIGNED_COND_FN (DIV, ECF_CONST, first, sdiv, udiv, binary) 283 DEF_INTERNAL_COND_FN (RDIV, ECF_CONST, sdiv, binary)
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| DependenceAnalysis.cpp | 1432 Q = Delta.sdiv(G); 1533 APInt TC = CM.sdiv(G); 1541 APInt TB = BM.sdiv(G); 1560 APInt TA = AM.sdiv(G); 1925 APInt TC = CM.sdiv(G); 1933 APInt TB = BM.sdiv(G); 1950 APInt TA = AM.sdiv(G); 3122 APInt CdivB = Charlie.sdiv(Beta); 3137 APInt CdivA = Charlie.sdiv(Alpha); 3151 APInt CdivA = Charlie.sdiv(Alpha) [all...] |
| /src/sys/arch/macppc/dev/ |
| snapper.c | 1637 * SCLK = MCLK / sdiv 1648 int clksrc, mdiv, sdiv; local 1675 sdiv = mclk_fs / 64; /* 4 */ 1692 switch (sdiv) { 1700 reg |= ((sdiv / 2 - 1) << 20) & 0x00f00000;
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| APInt.cpp | 1671 APInt APInt::sdiv(const APInt &RHS) const { 1682 APInt APInt::sdiv(int64_t RHS) const { 1984 return sdiv(RHS); 1991 Overflow = Res.sdiv(RHS) != *this || Res.sdiv(*this) != RHS; 2857 // Currently sdiv rounds towards zero. 2859 return A.sdiv(B);
|