Searched refs:iMax (Results 1 - 15 of 15) sorted by relevance

/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dsortarray.cpp58 int iMax = pArray->cSize; local
61 while (iMin < iMax)
63 i = (iMax + iMin) / 2;
71 iMax = i;
146 int iMax = pArray->cSize; local
150 if (!iMax)
153 while (iMin < iMax)
155 i = (iMax + iMin) / 2;
163 iMax = i;
/vbox/src/VBox/ValidationKit/testboxscript/
H A Dtestboxconnection.py91 def getIntChecked(self, sField, iMin = None, iMax = None):
96 The iMin and iMax values are inclusive.
106 or (iMax is not None and iValue > iMax):
108 % (iValue, sField, iMin, iMax));
/vbox/src/VBox/ValidationKit/testmanager/webui/
H A Dwuimain.py640 cItemsPerPage = self.getIntParam(self.ksParamItemsPerPage, iMin = 2, iMax = 9999, iDefault = 128)
641 iPage = self.getIntParam(self.ksParamPageNo, iMin = 0, iMax = 999999, iDefault = 0)
643 iGroupMemberId = self.getIntParam(self.ksParamGroupMemberId, iMin = -1, iMax = 999999, iDefault = -1)
824 cbChunk = self.getIntParam(self.ksParamLogChunkSize, iMin = 256, iMax = 16777216, iDefault = 65536);
826 iMax = config.g_kcMbMaxMainLog * 1048576 / cbChunk, iDefault = 0);
884 cPeriods = self.getIntParam(self.ksParamReportPeriods, iMin = 2, iMax = 99, iDefault = 7);
885 cHoursPerPeriod = self.getIntParam(self.ksParamReportPeriodInHours, iMin = 1, iMax = 168, iDefault = 24);
920 cPeriods = self.getIntParam(self.ksParamReportPeriods, iMin = 1, iMax = 1, iDefault = 1); # Not needed yet.
934 cx = self.getIntParam(self.ksParamGraphWizWidth, iMin = 128, iMax = 8192, iDefault = 1280);
935 cy = self.getIntParam(self.ksParamGraphWizHeight, iMin = 128, iMax
[all...]
H A Dwuibase.py332 def getIntParam(self, sName, iMin = None, iMax = None, iDefault = None):
336 or if outside the range defined by iMin and iMax.
349 or (iMax is not None and iValue > iMax):
351 % (self._sAction, sName, iValue, iMin, iMax));
391 def getListOfIntParams(self, sName, iMin = None, iMax = None, aiDefaults = None):
395 values are not valid integers or outside the range defined by iMin and iMax.
414 or (iMax is not None and iValue > iMax):
416 % (self._sAction, sName, iValue, iMin, iMax));
[all...]
H A Dwuiadmin.py553 idEntry = self.getIntParam(sParamId, iMin = 1, iMax = 0x7fffffe)
/vbox/src/VBox/ValidationKit/testmanager/core/
H A Dbase.py256 iMax = getattr(self, 'kiMax_' + sAttr, 0x7ffffffe));
280 iMin = 1, iMax = 0x7ffffffe);
478 def validateInt(sValue, iMin = 0, iMax = 0x7ffffffe, aoNilValues = tuple([-1, None, '']), fAllowNull = True):
498 elif iValue > iMax:
499 return (iValue, 'Value too high (max %d)' % (iMax,));
714 def validateListOfInts(asValues, iMin = 0, iMax = 0x7ffffffe, aoNilValues = tuple([[], None]), fAllowNull = True):
731 elif iValue > iMax:
732 sThisErr = 'Value %d is too high (max %d)' % (iValue, iMax,);
750 def _validateInt(dErrors, sName, sValue, iMin = 0, iMax = 0x7ffffffe, aoNilValues = tuple([-1, None, ''])):
752 (sValue, sError) = ModelDataBase.validateInt(sValue, iMin, iMax, aoNilValue
[all...]
H A Dtestboxcontroller.py194 def _getIntParam(self, sName, iMin = None, iMax = None):
198 isn't in the range defined by iMin and iMax.
208 or (iMax is not None and iValue > iMax):
210 % (self._sAction, sName, iValue, iMin, iMax));
H A Dtestgroup.py103 iMin = -1, iMax = 0x7ffffffe);
336 aidSelected = oDisp.getListOfIntParams(sParam, iMin = 1, iMax = 0x7ffffffe, aiDefaults = [])
H A Dschedgroup.py370 aidSelected = oDisp.getListOfIntParams(sParam, iMin = 1, iMax = 0x7ffffffe, aiDefaults = [])
/vbox/src/VBox/Runtime/testcase/
H A DtstRand.cpp77 uint32_t iMax = 0; local
82 if (iMax < pacHits[iRange])
83 iMax = pacHits[iRange];
90 iMin, (iAvg - iMin) * 100 / iAvg, iMax,
91 (iMax - iAvg) * 100 / iAvg,
95 CHECK_EXPR(iMax <= iAvg + iAvg / 4);
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/
H A DUIMachineSettingsDisplay.h194 static int calcPageStep(int iMax);
H A DUIMachineSettingsDisplay.cpp923 int UIMachineSettingsDisplay::calcPageStep(int iMax) argument
926 uint page = ((uint)iMax + 31) / 32;
/vbox/src/VBox/Runtime/r3/posix/
H A Dsched-posix.cpp454 int iMax = sched_get_priority_max(SavedPriority.iPthreadPolicy); local
456 if (iMax - iMin >= 32)
460 while (i <= iMax)
468 if (i == iMax)
/vbox/src/VBox/Devices/Graphics/testcase/
H A Ddump-vmwgfx.c509 uint32_t i, iMin, iMax; local
516 iMax = pau32Fifo[1] / sizeof(uint32_t);
517 printf(" FIFO_MAX: %#09x -- iMax=%#08x\n", pau32Fifo[1], iMax);
/vbox/src/VBox/Devices/PC/
H A DDevAPIC.cpp1924 int iMax; local
1930 while ((iMax = Apic256BitReg_FindLastSetBit(&pending, -1)) != -1)
1932 pHlp->pfnPrintf(pHlp, " %02x", iMax);
1933 Apic256BitReg_ClearBit(&pending, iMax);

Completed in 213 milliseconds