Home
last modified time | relevance | path

Searched refs:nCalc (Results 1 – 15 of 15) sorted by relevance

/dports/games/libretro-fbneo/FBNeo-bbe3c05/src/burn/drv/capcom/
H A Dcps_rw.cpp42 static INT32 nCalc[2] = {0, 0}; variable
446 return (UINT16)((nCalc[0] * nCalc[1]) >> 16); in CpsReadWord()
450 return (UINT16)((nCalc[0] * nCalc[1])); in CpsReadWord()
462 nCalc[0] = d; in CpsWriteWord()
464 nCalc[1] = d; in CpsWriteWord()
/dports/games/libretro-fbalpha/fbalpha-84eb9d9/src/burn/drv/capcom/
H A Dcps_rw.cpp42 static INT32 nCalc[2] = {0, 0}; variable
446 return (UINT16)((nCalc[0] * nCalc[1]) >> 16); in CpsReadWord()
450 return (UINT16)((nCalc[0] * nCalc[1])); in CpsReadWord()
462 nCalc[0] = d; in CpsWriteWord()
464 nCalc[1] = d; in CpsWriteWord()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/ui/vba/
H A Dvbatablehelper.cxx100 sal_Int32 nCalc = 0; in getColumnStr() local
104 nCalc = nCol % coDiff; in getColumnStr()
105 if( nCalc >= 26 ) in getColumnStr()
106 sRet = OUStringChar( sal_Unicode('a' - 26 + nCalc) ) + sRet; in getColumnStr()
108 sRet = OUStringChar( sal_Unicode('A' + nCalc) ) + sRet; in getColumnStr()
110 nCol = nCol - nCalc; in getColumnStr()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/source/ui/vba/
H A Dvbatablehelper.cxx101 sal_Int32 nCalc = 0; in getColumnStr() local
105 nCalc = nCol % coDiff; in getColumnStr()
106 if( nCalc >= 26 ) in getColumnStr()
107 sRet = OUStringChar( sal_Unicode('a' - 26 + nCalc) ) + sRet; in getColumnStr()
109 sRet = OUStringChar( sal_Unicode('A' + nCalc) ) + sRet; in getColumnStr()
111 if( 0 == ( nCol = nCol - nCalc ) ) in getColumnStr()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sc/source/core/tool/
H A Deditutil.cxx732 sal_Int32 nCalc; in lcl_GetCharStr() local
735 nCalc = nNo % coDiff; in lcl_GetCharStr()
736 if( !nCalc ) in lcl_GetCharStr()
737 nCalc = coDiff; in lcl_GetCharStr()
738 aStr = OUStringChar( sal_Unicode('a' - 1 + nCalc) ) + aStr; in lcl_GetCharStr()
739 nNo = sal::static_int_cast<sal_Int32>( nNo - nCalc ); in lcl_GetCharStr()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sc/source/core/tool/
H A Deditutil.cxx786 sal_Int32 nCalc; in lcl_GetCharStr() local
789 nCalc = nNo % coDiff; in lcl_GetCharStr()
790 if( !nCalc ) in lcl_GetCharStr()
791 nCalc = coDiff; in lcl_GetCharStr()
792 aStr = OUStringChar( sal_Unicode('a' - 1 + nCalc) ) + aStr; in lcl_GetCharStr()
793 nNo = sal::static_int_cast<sal_Int32>( nNo - nCalc ); in lcl_GetCharStr()
/dports/science/jmol/jmol-14.32.7/src/org/jmol/minimize/forcefield/
H A DCalculations.java189 int nCalc; in calc() local
191 if (calcs == null || (nCalc = calcs.size()) == 0) in calc()
195 for (int ii = 0; ii < nCalc; ii++) in calc()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/filter/ww8/
H A DWW8TableInfo.cxx213 SwTwips nCalc = nSz; in getGridColsOfRow() local
215 nCalc = ( nCalc * nPageSize ) / nTableSz; in getGridColsOfRow()
217 pResult->push_back( nCalc ); in getGridColsOfRow()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/source/filter/ww8/
H A DWW8TableInfo.cxx215 SwTwips nCalc = nSz; in getGridColsOfRow() local
217 nCalc = ( nCalc * nPageSize ) / nTableSz; in getGridColsOfRow()
219 pResult->push_back( nCalc ); in getGridColsOfRow()
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/window/
H A Dwindow2.cxx395 tools::Long Window::CalcZoom( tools::Long nCalc ) const in CalcZoom()
401 double n = double(nCalc * rZoom); in CalcZoom()
402 nCalc = WinFloatRound( n ); in CalcZoom()
404 return nCalc; in CalcZoom()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/source/window/
H A Dwindow2.cxx397 long Window::CalcZoom( long nCalc ) const in CalcZoom()
403 double n = double(nCalc * rZoom); in CalcZoom()
404 nCalc = WinFloatRound( n ); in CalcZoom()
406 return nCalc; in CalcZoom()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/core/table/
H A Dswtable.cxx1785 const sal_uInt16 nCalc = nCol % coDiff; in sw_GetTableBoxColStr() local
1786 if( nCalc >= 26 ) in sw_GetTableBoxColStr()
1787 rNm = OUStringChar( sal_Unicode('a' - 26 + nCalc) ) + rNm; in sw_GetTableBoxColStr()
1789 rNm = OUStringChar( sal_Unicode('A' + nCalc) ) + rNm; in sw_GetTableBoxColStr()
1791 nCol = nCol - nCalc; in sw_GetTableBoxColStr()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/source/core/table/
H A Dswtable.cxx1791 const sal_uInt16 nCalc = nCol % coDiff; in sw_GetTableBoxColStr() local
1792 if( nCalc >= 26 ) in sw_GetTableBoxColStr()
1793 rNm = OUStringChar( sal_Unicode('a' - 26 + nCalc) ) + rNm; in sw_GetTableBoxColStr()
1795 rNm = OUStringChar( sal_Unicode('A' + nCalc) ) + rNm; in sw_GetTableBoxColStr()
1797 if( 0 == (nCol = nCol - nCalc) ) in sw_GetTableBoxColStr()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/core/text/
H A Dpormulti.cxx674 SwTwips nCalc = nLineDiff / sal_Int32(nCharCnt - nSub); in Adjust_() local
676 if( nCalc < SHRT_MAX ) in Adjust_()
677 nTmp = -short(nCalc); in Adjust_()
682 nLineDiff -= nCalc * (sal_Int32(nCharCnt) - 1); in Adjust_()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/source/core/text/
H A Dpormulti.cxx678 SwTwips nCalc = nLineDiff / sal_Int32(nCharCnt - nSub); in Adjust_() local
680 if( nCalc < SHRT_MAX ) in Adjust_()
681 nTmp = -short(nCalc); in Adjust_()
686 nLineDiff -= nCalc * (sal_Int32(nCharCnt) - 1); in Adjust_()