/vbox/src/bldprogs/ |
H A D | scmdiff.cpp | 117 * @param iRight Where the difference starts on the right side. 122 size_t iRight, size_t cRight) 142 if (c >= iRight) 143 cRight = c - iRight; 146 iRight = c; 166 RTStrmPrintf(pState->pDiff, "%zu,%zu%c%zu,%zu\n", iLeft + 1, iLeft + cLeft, ch, iRight + 1, iRight + cRight); 168 RTStrmPrintf(pState->pDiff, "%zu,%zu%c%zu\n", iLeft + 1, iLeft + cLeft, ch, iRight + 1); 170 RTStrmPrintf(pState->pDiff, "%zu%c%zu,%zu\n", iLeft + 1, ch, iRight + 1, iRight 120 scmDiffReport(PSCMDIFFSTATE pState, size_t cMatches, size_t iLeft, size_t cLeft, size_t iRight, size_t cRight) argument 257 scmDiffCompareLines(PSCMDIFFSTATE pState, size_t iLeft, size_t iRight, size_t cLines) argument [all...] |
/vbox/src/VBox/Frontends/VirtualBox/src/net/ |
H A D | UINetworkRequestWidget.cpp | 91 int iLeft, iTop, iRight, iBottom; local 93 m_pMainLayout->getContentsMargins(&iLeft, &iTop, &iRight, &iBottom); 95 iMinimumWidth -= iRight; 97 layout()->getContentsMargins(&iLeft, &iTop, &iRight, &iBottom); 99 iMinimumWidth -= iRight; 102 pParentLayout->getContentsMargins(&iLeft, &iTop, &iRight, &iBottom); 104 iMinimumWidth -= iRight;
|
/vbox/src/VBox/Frontends/VirtualBox/src/extensions/ |
H A D | QIAdvancedToolBar.h | 50 void setToolBarMargins(int iLeft, int iTop, int iRight, int iBottom);
|
H A D | QIAdvancedToolBar.cpp | 123 void QIAdvancedToolBar::setToolBarMargins(int iLeft, int iTop, int iRight, int iBottom) argument 125 m_pMainLayout->setContentsMargins(iLeft, iTop, iRight, iBottom);
|
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/ |
H A D | UIPopupStack.cpp | 134 int iLeft, iTop, iRight, iBottom; local 135 m_pMainLayout->getContentsMargins(&iLeft, &iTop, &iRight, &iBottom); 298 int iLeft, iTop, iRight, iBottom; local 299 m_pMainLayout->getContentsMargins(&iLeft, &iTop, &iRight, &iBottom); 300 iWidth -= (iLeft + iRight);
|
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/ |
H A D | UIWizard.cpp | 239 int iLeft, iTop, iRight, iBottom; local 240 pPage->layout()->getContentsMargins(&iLeft, &iTop, &iRight, &iBottom); 241 int iCurrentLabelWidth = iPageWidth - iLeft - iRight; 314 int iLeft, iTop, iRight, iBottom; local 315 pPage->layout()->getContentsMargins(&iLeft, &iTop, &iRight, &iBottom);
|
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/ |
H A D | UIStatusBarEditorWindow.cpp | 361 int iLeft, iTop, iRight, iBottom; local 362 m_pMainLayout->getContentsMargins(&iLeft, &iTop, &iRight, &iBottom); 366 iRight = qMin(iRight, 10); 375 m_pMainLayout->setContentsMargins(iLeft, iTop, iRight, iBottom);
|
H A D | UIMenuBarEditorWindow.cpp | 264 int iLeft, iTop, iRight, iBottom; local 265 m_pMainLayout->getContentsMargins(&iLeft, &iTop, &iRight, &iBottom); 269 iRight = qMin(iRight, 10); 277 iRight += 5; 280 m_pMainLayout->setContentsMargins(iLeft, iTop, iRight, iBottom);
|
/vbox/src/VBox/Runtime/common/asn1/ |
H A D | asn1-ut-integer.cpp | 220 uint32_t iRight = RTAsn1Integer_UnsignedLastBit(pRight); local 221 if (iLeft != iRight) 222 return iLeft < iRight ? -1 : 1;
|
/vbox/include/iprt/ |
H A D | bignum.h | 160 RTDECL(int) RTBigNumCompareWithS64(PRTBIGNUM pLeft, int64_t iRight);
|
/vbox/src/VBox/Runtime/common/crypto/ |
H A D | x509-certpaths.cpp | 1419 for (uint32_t iRight = 0; iRight < cRight; iRight++) 1421 if (!rtCrX509CpvCheckSubtreeValidity(pThis, &paRight[iRight])) 1424 RTCRX509GENERALNAMECHOICE const enmRightChoice = paRight[iRight].Base.enmChoice; 1431 if (RTCrX509GeneralSubtree_Compare(papLeft[iLeft], &paRight[iRight]) == 0) 1439 else if (RTCrX509GeneralSubtree_ConstraintMatch(papLeft[iLeft], &paRight[iRight])) 1444 rtCrX509CpvAddPermittedSubtrees(pThis, 1, &paRight[iRight]); 1447 else if (RTCrX509GeneralSubtree_ConstraintMatch(&paRight[iRight], papLeft[iLeft]))
|
H A D | x509-core.cpp | 555 for (uint32_t iRight = 0; iRight < cItems; iRight++) 556 if (RTCrX509AttributeTypeAndValue_MatchAsRdnByRfc5280(pLeftAttr, &pRight->paItems[iRight]))
|
/vbox/src/VBox/Runtime/common/math/ |
H A D | bignum.cpp | 1099 RTDECL(int) RTBigNumCompareWithS64(PRTBIGNUM pLeft, int64_t iRight) 1105 if (pLeft->fNegative == (iRight < 0)) 1107 AssertCompile(RTBIGNUM_ELEMENT_SIZE <= sizeof(iRight)); 1108 if (pLeft->cUsed * RTBIGNUM_ELEMENT_SIZE <= sizeof(iRight)) 1110 uint64_t uRightMagn = !pLeft->fNegative ? (uint64_t)iRight : (uint64_t)-iRight;
|
/vbox/src/VBox/Frontends/VirtualBox/src/extradata/ |
H A D | UIExtraDataManager.cpp | 3577 int iLeft = 0, iRight = 0; local 3584 iRight = data[1].toInt(&fOk); 3593 hints << iRight; local
|