/aoo41x/main/xmloff/source/core/ |
H A D | xmlehelp.cxx | 53 sal_Int32 nMul = 1000; in AddLength() local 68 nMul = 25400; // 25.4 * 1000 in AddLength() 84 nMul = 1000; in AddLength() 95 nMul = 100000; in AddLength() 107 nMul = 10; in AddLength() 124 nMul = 10; in AddLength() 132 nMul = 10; in AddLength() 140 nMul = 72000; in AddLength() 151 nMul = 100000; in AddLength() 171 nBigVal *= nMul; in AddLength() [all …]
|
/aoo41x/main/svx/source/svdraw/ |
H A D | svdmodel.cxx | 984 sal_Int64 nMul(1); in ImpSetUIUnit() local 1041 nMul *= 254; in ImpSetUIUnit() 1056 if(1 != nMul || 1 != nDiv) in ImpSetUIUnit() 1072 while(0 == (nMul % 10)) in ImpSetUIUnit() 1075 nMul /= 10; in ImpSetUIUnit() 1387 sal_Bool bNeg(nMul < 0); in TakePercentStr() 1392 if(nMul < 0) in TakePercentStr() 1393 nMul = -nMul; in TakePercentStr() 1398 nMul *= 100; in TakePercentStr() 1399 nMul += nDiv/2; in TakePercentStr() [all …]
|
H A D | svddrag.cxx | 120 long nMul=GetNow().X()-aRef1.X(); in GetXFact() local 123 if (bHorFixed) { nMul=1; nDiv=1; } in GetXFact() 124 return Fraction(nMul,nDiv); in GetXFact() 129 long nMul=GetNow().Y()-aRef1.Y(); in GetYFact() local 132 if (bVerFixed) { nMul=1; nDiv=1; } in GetYFact() 133 return Fraction(nMul,nDiv); in GetYFact()
|
H A D | svdtrans.cxx | 696 long BigMulDiv(long nVal, long nMul, long nDiv) in BigMulDiv() argument 699 aVal*=nMul; in BigMulDiv() 715 sal_Int32 nMul=rF.GetNumerator(); in Kuerzen() local 718 if (nMul<0) { nMul=-nMul; bNeg=!bNeg; } in Kuerzen() 720 if (nMul==0 || nDiv==0) return; in Kuerzen() 722 a=sal_uInt32(nMul); unsigned nMulZ=0; // Fuehrende Nullen zaehlen in Kuerzen() 735 nMul>>=nWeg; in Kuerzen() 737 if (nMul==0 || nDiv==0) { in Kuerzen() 741 if (bNeg) nMul=-nMul; in Kuerzen() 742 rF=Fraction(nMul,nDiv); in Kuerzen()
|
H A D | svdotext.cxx | 1117 long nMul=nWantWdt; in ImpSetCharStretching() local 1120 if (nMul>nDiv) nDiv+=(nMul-nDiv)/2; // und zwar nur um die haelfte des berechneten in ImpSetCharStretching() 1121 else nMul+=(nDiv-nMul)/2; // weil die EE ja eh wieder falsch rechnet in ImpSetCharStretching() 1123 nX=nX*nMul/nDiv; in ImpSetCharStretching()
|
H A D | svddrgmt.cxx | 3306 long nMul=(long)(nUmfang*NormAngle360(nPntWink)/36000); in MoveSdrDrag() local 3309 nMul*=2; in MoveSdrDrag() 3311 aNeuFact=Fraction(nMul,nMarkSize); in MoveSdrDrag() 3348 long nMul=bVertical ? dy1 : dx1; in MoveSdrDrag() local 3351 nMul=-nMul; in MoveSdrDrag() 3357 nMul*=2; in MoveSdrDrag() 3358 nMul=Abs(nMul); in MoveSdrDrag() 3361 aNeuFact=Fraction(nMul,nDiv); in MoveSdrDrag()
|
H A D | svdattr.cxx | 633 sal_Int32 nMul,nDiv; in SdrFractionItem() local 634 rIn>>nMul; in SdrFractionItem() 636 nValue=Fraction(nMul,nDiv); in SdrFractionItem() 994 FASTBOOL __EXPORT SdrMetricItem::ScaleMetrics(long nMul, long nDiv) in ScaleMetrics() argument 998 aVal*=nMul; in ScaleMetrics() 1391 FASTBOOL __EXPORT SdrTextAniAmountItem::ScaleMetrics(long nMul, long nDiv) in ScaleMetrics() argument 1395 aVal*=nMul; in ScaleMetrics()
|
/aoo41x/main/tools/source/generic/ |
H A D | fract.cxx | 589 unsigned long nMul = (unsigned long)( bNeg? -nNumerator: nNumerator ); in ReduceInaccurate() local 595 const int nMulBitsToLose = Max( ( impl_NumberOfBits( nMul ) - int( nSignificantBits ) ), 0 ); in ReduceInaccurate() 601 nMul >>= nToLose; in ReduceInaccurate() 604 if ( !nMul || !nDiv ) in ReduceInaccurate() 612 long n1 = GetGGT( nMul, nDiv ); in ReduceInaccurate() 615 nMul /= n1; in ReduceInaccurate() 619 nNumerator = bNeg? -long( nMul ): long( nMul ); in ReduceInaccurate()
|
H A D | bigint.cxx | 122 void BigInt::Mult( const BigInt &rVal, sal_uInt16 nMul ) in Mult() argument 127 sal_uInt32 nTmp = (sal_uInt32)rVal.nNum[i] * (sal_uInt32)nMul + nK; in Mult()
|
/aoo41x/main/sax/source/tools/ |
H A D | converter.cxx | 292 long nMul = 1000; in convertMeasure() 306 nMul = 25400; // 25.4 * 1000 in convertMeasure() 322 nMul = 1000; in convertMeasure() 333 nMul = 100000; in convertMeasure() 345 nMul = 10; in convertMeasure() 362 nMul = 10; in convertMeasure() 370 nMul = 10; in convertMeasure() 378 nMul = 72000; in convertMeasure() 389 nMul = 100000; in convertMeasure() 406 nBigVal *= nMul; in convertMeasure() [all …]
|
/aoo41x/main/filter/source/graphicfilter/ios2met/ |
H A D | ios2met.cxx | 1069 sal_uInt32 nMul; sal_uInt16 nMulS; in ReadFullArc() local 1084 if (nMul!=0x00010000) { in ReadFullArc() 1085 nP=(nP*nMul)>>16; in ReadFullArc() 1086 nQ=(nQ*nMul)>>16; in ReadFullArc() 1087 nR=(nR*nMul)>>16; in ReadFullArc() 1088 nS=(nS*nMul)>>16; in ReadFullArc() 1134 if (nMul!=0x00010000) { in ReadPartialArc() 1135 nP=(nP*nMul)>>16; in ReadPartialArc() 1136 nQ=(nQ*nMul)>>16; in ReadPartialArc() 1137 nR=(nR*nMul)>>16; in ReadPartialArc() [all …]
|
/aoo41x/main/filter/source/graphicfilter/eps/ |
H A D | eps.cxx | 2282 double nMul; in ImplGetScaling() local 2290 nMul = 1; in ImplGetScaling() 2293 nMul = 10; in ImplGetScaling() 2296 nMul = 100; in ImplGetScaling() 2299 nMul = 1000; in ImplGetScaling() 2302 nMul = 2.54; in ImplGetScaling() 2305 nMul = 25.4; in ImplGetScaling() 2308 nMul = 254; in ImplGetScaling() 2311 nMul = 2540; in ImplGetScaling() 2320 nMul = 1.0; in ImplGetScaling() [all …]
|
/aoo41x/main/sw/source/filter/html/ |
H A D | css1atr.cxx | 329 long nMul = 1000; in AddUnitPropertyValue() local 356 nMul = 2540; // 2.54 * 1000 in AddUnitPropertyValue() 368 nMul = 1000; in AddUnitPropertyValue() 373 nMul = 100; in AddUnitPropertyValue() 383 nMul = 10000; in AddUnitPropertyValue() 388 nMul = 1000; in AddUnitPropertyValue() 405 nMul = 100000; in AddUnitPropertyValue() 410 nMul = 1000; in AddUnitPropertyValue() 425 nBigVal *= nMul; in AddUnitPropertyValue() 454 nBigVal *= nMul; in AddUnitPropertyValue() [all …]
|
/aoo41x/main/svx/inc/svx/ |
H A D | svdtrans.hxx | 241 SVX_DLLPUBLIC long BigMulDiv(long nVal, long nMul, long nDiv); 256 FrPair(long nMul, long nDiv) : aX(nMul,nDiv),aY(nMul,nDiv) {} in FrPair() argument
|
H A D | sdtaaitm.hxx | 38 virtual FASTBOOL ScaleMetrics(long nMul, long nDiv);
|
H A D | sdmetitm.hxx | 44 virtual FASTBOOL ScaleMetrics(long nMul, long nDiv);
|
H A D | xflhtit.hxx | 62 virtual FASTBOOL ScaleMetrics(long nMul, long nDiv);
|
H A D | xlndsit.hxx | 66 virtual FASTBOOL ScaleMetrics(long nMul, long nDiv);
|
/aoo41x/main/svx/source/sdr/properties/ |
H A D | itemsettools.cxx | 108 sal_Int32 nMul(rScale.GetNumerator()); in ScaleItemSet() local 127 pNewItem->ScaleMetrics(nMul, nDiv); in ScaleItemSet()
|
/aoo41x/main/sd/source/ui/view/ |
H A D | drviewsb.cxx | 501 sal_uInt16 nMul = 1; in FuTemp02() local 536 nMul = 3; in FuTemp02() 543 nMul = 3; in FuTemp02() 598 aSize.Width() *= nMul; in FuTemp02()
|
/aoo41x/main/sw/source/core/txtnode/ |
H A D | fntcache.cxx | 1652 sal_uInt16 nMul = 3; in DrawText() local 1655 nMul = 1; in DrawText() 1657 const sal_uInt16 nDiv = nMul+1; in DrawText() 1724 nScrPos = ( nMul * nScrPos + pKernArray[i] ) / nDiv; in DrawText() 2048 sal_uInt16 nMul = 3; in GetTextSize() local 2050 nMul = 1; in GetTextSize() 2051 const sal_uInt16 nDiv = nMul+1; in GetTextSize() 2066 nScrPos = ( nMul * nScrPos + pKernArray[i] ) / nDiv; in GetTextSize()
|
/aoo41x/main/svx/source/xoutdev/ |
H A D | xattr.cxx | 88 long ScaleMetricValue( long nVal, long nMul, long nDiv ) in ScaleMetricValue() argument 92 aVal *= nMul; in ScaleMetricValue() 1112 FASTBOOL XLineDashItem::ScaleMetrics(long nMul, long nDiv) in ScaleMetrics() argument 1114 aDash.SetDotLen( ScaleMetricValue( aDash.GetDotLen(), nMul, nDiv ) ); in ScaleMetrics() 1115 aDash.SetDashLen( ScaleMetricValue( aDash.GetDashLen(), nMul, nDiv ) ); in ScaleMetrics() 1116 aDash.SetDistance( ScaleMetricValue( aDash.GetDistance(), nMul, nDiv ) ); in ScaleMetrics() 4491 FASTBOOL XFillHatchItem::ScaleMetrics(long nMul, long nDiv) in ScaleMetrics() argument 4493 aHatch.SetDistance( ScaleMetricValue( aHatch.GetDistance(), nMul, nDiv ) ); in ScaleMetrics()
|
/aoo41x/main/filter/source/msfilter/ |
H A D | msdffimp.cxx | 3261 long nMul=aFact.GetNumerator(); in SetModel() local 3263 aFact=Fraction(nMul,nDiv); // nochmal versuchen zu kuerzen in SetModel() 3273 nMul=aFact.GetNumerator(); in SetModel() 3275 aFact=Fraction(nMul,nDiv); // nochmal versuchen zu kuerzen in SetModel()
|