/trunk/main/basic/inc/basic/ |
H A D | sbxvar.hxx | 38 sal_Int32 nHigh; sal_uInt32 nLow; member 41 SbxINT64() : nHigh( 0 ), nLow( 0 ) {} in SbxINT64() 42 SbxINT64( sal_uInt8 n ) : nHigh( 0 ), nLow( n ) {} in SbxINT64() 43 SbxINT64( sal_uInt16 n ) : nHigh( 0 ), nLow( n ) {} in SbxINT64() 44 SbxINT64( sal_uInt32 n ) : nHigh( 0 ), nLow( n ) {} in SbxINT64() 50 SbxINT64( SbxINT64 &r ) : nHigh( r.nHigh ), nLow( r.nLow ) {} in SbxINT64() 57 nLow ^= (sal_uInt32)-1; in CHS() 59 nLow++; in CHS() 60 if( !nLow ) in CHS() 117 sal_uInt32 nHigh; sal_uInt32 nLow; member [all …]
|
/trunk/main/sal/textenc/ |
H A D | tcvtbyte.c | 342 nLow = 0; in ImplGetReplaceChar() 346 nMid = (nLow+nHigh)/2; in ImplGetReplaceChar() 358 nLow = nMid+1; in ImplGetReplaceChar() 363 while ( nLow <= nHigh ); in ImplGetReplaceChar() 436 nLow = 0; in ImplGetReplaceString() 440 nMid = (nLow+nHigh)/2; in ImplGetReplaceString() 452 nLow = nMid+1; in ImplGetReplaceString() 457 while ( nLow <= nHigh ); in ImplGetReplaceString() 671 nLow = 0; in ImplConvertUnicodeCharToChar() 675 nMid = (nLow+nHigh)/2; in ImplConvertUnicodeCharToChar() [all …]
|
H A D | unichars.c | 127 sal_uInt32 ImplCombineSurrogates(sal_uInt32 nHigh, sal_uInt32 nLow) in ImplCombineSurrogates() argument 129 OSL_ENSURE(ImplIsHighSurrogate(nHigh) && ImplIsLowSurrogate(nLow), in ImplCombineSurrogates() 131 return (((nHigh & 0x3FF) << 10) | (nLow & 0x3FF)) + 0x10000; in ImplCombineSurrogates()
|
H A D | unichars.h | 51 sal_uInt32 ImplCombineSurrogates(sal_uInt32 nHigh, sal_uInt32 nLow)
|
/trunk/main/tools/source/memtools/ |
H A D | table.cxx | 42 sal_uIntPtr nLow; in ImplGetIndex() local 49 nLow = 0; in ImplGetIndex() 55 nMid = (nLow + nHigh) / 2; in ImplGetIndex() 62 nLow = nMid + 1; in ImplGetIndex() 67 while ( nLow <= nHigh ); in ImplGetIndex() 73 nMid = (nLow + nHigh) / 2; in ImplGetIndex() 80 nLow = nMid + 1; in ImplGetIndex() 85 while ( nLow <= nHigh ); in ImplGetIndex()
|
/trunk/main/chart2/source/view/charttypes/ |
H A D | Splines.cxx | 912 lcl_tSizeType nLow = 0; in CalculateBSplines() local 924 while ( u[nLow] <= ux) in CalculateBSplines() 926 ++nLow; in CalculateBSplines() 928 --nLow; in CalculateBSplines() 931 for (lcl_tSizeType i = nLow-p; i <= nLow; ++i) in CalculateBSplines() 938 for (lcl_tSizeType i = nLow; i >= nLow + lcl_Degree - p; --i) in CalculateBSplines() 944 pNewX[nNewIndex] = aP[nLow]; in CalculateBSplines() 947 for (lcl_tSizeType i = nLow - p; i <= nLow; ++i) in CalculateBSplines() 954 for (lcl_tSizeType i = nLow; i >= nLow +lcl_Degree - p; --i) in CalculateBSplines() 960 pNewY[nNewIndex] = aP[nLow]; in CalculateBSplines()
|
/trunk/main/basic/source/sbx/ |
H A D | sbxvals.cxx | 53 p->nLow = ((sal_uInt32)nNum[1] << 16) | (sal_uInt32)nNum[0]; in INT64() 71 *this += (sal_uInt16)(r.nLow >> 16); in BigInt() 73 *this += (sal_uInt16)r.nLow; in BigInt() 82 p->nLow = ((sal_uInt32)nNum[1] << 16) | (sal_uInt32)nNum[0]; in UINT64() 102 *this += (sal_uInt16)(r.nLow >> 16); in BigInt() 104 *this += (sal_uInt16)r.nLow; in BigInt()
|
H A D | sbxvalue.cxx | 82 nLow &= r.nLow; in operator &=() 88 nLow |= r.nLow; in operator |=() 94 nLow ^= r.nLow; in operator ^=() 132 a.nLow = r.nLow & l.nLow; in operator &() 139 a.nLow = r.nLow | l.nLow; in operator |() 146 a.nLow = r.nLow ^ l.nLow; in operator ^() 160 a.nLow = ~r.nLow; in operator ~() 1666 r >> aData.nULong64.nHigh >> aData.nULong64.nLow; in LoadData() 1672 r >> aData.nLong64.nHigh >> aData.nLong64.nLow; in LoadData() 1783 r << aData.nULong64.nHigh << aData.nULong64.nLow; in StoreData() [all …]
|
H A D | sbxcurr.cxx | 373 { return (double)r.nHigh*(double)4294967296.0 + (double)r.nLow; } in ImpINT64ToDouble() 383 { return (double)r.nHigh*(double)4294967296.0 + (double)r.nLow; } in ImpUINT64ToDouble()
|
/trunk/main/vcl/source/window/ |
H A D | accel.cxx | 62 sal_uLong nLow; in DBG_NAME() local 77 nLow = 0; in DBG_NAME() 81 nMid = (nLow + nHigh) / 2; in DBG_NAME() 88 nLow = nMid + 1; in DBG_NAME() 93 while ( nLow <= nHigh ); in DBG_NAME()
|
/trunk/main/cui/source/tabpages/ |
H A D | grfpage.cxx | 638 long nLow = lcl_GetValue(aBottomMF, eUnit ); in CalcMinMaxBorder() local 639 nMin = nMinHeight - (nLow >= 0 ? nLow : 0); in CalcMinMaxBorder() 677 long nLow = lcl_GetValue(aBottomMF, eUnit ); in GraphicHasChanged() local 678 if((nUp + nLow) < - aOrigSize.Height()) in GraphicHasChanged()
|
/trunk/main/svtools/source/control/ |
H A D | ctrltool.cxx | 194 sal_uLong nLow = 0; in ImplFind() local 200 nMid = (nLow + nHigh) / 2; in ImplFind() 212 nLow = nMid + 1; in ImplFind() 220 while ( nLow <= nHigh ); in ImplFind()
|
/trunk/main/idl/source/objects/ |
H A D | slot.cxx | 1056 sal_uInt16 nMid = 0, nLow = 0; in Insert() local 1059 while ( !bFound && nLow <= nHigh ) in Insert() 1061 nMid = (nLow + nHigh) >> 1; in Insert() 1072 nLow = nMid + 1; in Insert() 1073 if ( nLow == 0 ) in Insert() 1081 nPos = bFound ? nMid : nLow; in Insert()
|
/trunk/main/svl/source/misc/ |
H A D | inettype.cxx | 811 sal_Size nLow = 0; in seekEntry() local 813 while (nLow != nHigh) in seekEntry() 815 sal_Size nMiddle = (nLow + nHigh) / 2; in seekEntry() 827 nLow = nMiddle + 1; in seekEntry()
|
/trunk/main/sfx2/source/control/ |
H A D | bindings.cxx | 987 sal_uInt16 nLow = nStartSearchAt; in GetSlotPos() local 992 while ( !bFound && nLow <= nHigh ) in GetSlotPos() 994 nMid = (nLow + nHigh) >> 1; in GetSlotPos() 1003 { nLow = nMid + 1; in GetSlotPos() 1004 if ( nLow == 0 ) in GetSlotPos() 1010 sal_uInt16 nPos = bFound ? nMid : nLow; in GetSlotPos()
|
H A D | dispatch.cxx | 3017 sal_uInt16 nLow = 0, nMid = 0, nHigh; in IsAllowed() local 3021 while ( !bFound && nLow <= nHigh ) in IsAllowed() 3023 nMid = (nLow + nHigh) >> 1; in IsAllowed() 3035 nLow = nMid + 1; in IsAllowed() 3036 if ( nLow == 0 ) in IsAllowed() 3045 sal_uInt16 nPos = bFound ? nMid : nLow; in IsAllowed()
|
/trunk/main/sc/inc/ |
H A D | externalrefmgr.hxx | 169 void getAllRows(::std::vector<SCROW>& rRows, SCROW nLow = 0, SCROW nHigh = MAXROW) const; 173 …void getAllCols(SCROW nRow, ::std::vector<SCCOL>& rCols, SCCOL nLow = 0, SCCOL nHigh = MAXCOL) con…
|
/trunk/main/vcl/source/control/ |
H A D | ilstbox.cxx | 172 sal_uLong nLow, nHigh, nMid; in InsertEntry() local 193 nLow = mnMRUCount; in InsertEntry() 194 pTemp = (ImplEntryType*)GetEntry( (sal_uInt16)nLow ); in InsertEntry() 207 nMid = (nLow + nHigh) / 2; in InsertEntry() 217 nLow = nMid + 1; in InsertEntry() 222 while ( nLow <= nHigh ); in InsertEntry()
|
/trunk/main/store/source/ |
H A D | storbase.hxx | 317 explicit OStorePageKey (sal_uInt32 nLow = 0, sal_uInt32 nHigh = 0) in OStorePageKey() 318 : m_nLow (store::htonl(nLow)), in OStorePageKey()
|
/trunk/main/sw/source/core/layout/ |
H A D | frmtool.cxx | 3301 long nLow = pLow->Frm().Height(); in lcl_CalcCellRstHeight() local 3303 nLow += ((SwTxtFrm*)pLow)->GetParHeight()-pLow->Prt().Height(); in lcl_CalcCellRstHeight() 3305 nLow += ((SwSectionFrm*)pLow)->Undersize(); in lcl_CalcCellRstHeight() 3306 nFlyAdd = Max( 0L, nFlyAdd - nLow ); in lcl_CalcCellRstHeight() 3308 nHeight += nLow; in lcl_CalcCellRstHeight()
|
/trunk/main/editeng/inc/editeng/ |
H A D | ulspitem.hxx | 54 SvxULSpaceItem( const sal_uInt16 nUp, const sal_uInt16 nLow,
|
/trunk/main/vcl/win/source/gdi/ |
H A D | salgdi3.cxx | 463 int nLow = 0; in MapCharToLanguage() local 465 while( nLow <= nHigh ) in MapCharToLanguage() 467 int nMiddle = (nHigh + nLow) / 2; in MapCharToLanguage() 471 nLow = nMiddle + 1; in MapCharToLanguage()
|
/trunk/main/sc/source/ui/docshell/ |
H A D | externalrefmgr.cxx | 292 void ScExternalRefCache::Table::getAllRows(vector<SCROW>& rRows, SCROW nLow, SCROW nHigh) const in getAllRows() argument 298 if (nLow <= itr->first && itr->first <= nHigh) in getAllRows() 326 void ScExternalRefCache::Table::getAllCols(SCROW nRow, vector<SCCOL>& rCols, SCCOL nLow, SCCOL nHig… in getAllCols() argument 338 if (nLow <= itrCol->first && itrCol->first <= nHigh) in getAllCols()
|
/trunk/main/tools/source/generic/ |
H A D | poly.cxx | 1449 ImplEdgePointFilter( int nEdge, long nLow, long nHigh, in ImplEdgePointFilter() argument 1452 mnLow( nLow ), in ImplEdgePointFilter()
|
/trunk/main/scripting/source/stringresource/ |
H A D | stringresource.cxx | 1330 sal_Int8 nLow = sal_Int8( n & 0xff ); in write16BitInt() local 1333 p[0] = nLow; in write16BitInt()
|