Searched refs:iMin (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/Devices/Graphics/testcase/
H A Ddump-vmwgfx.c509 uint32_t i, iMin, iMax; local
514 iMin = pau32Fifo[0] / sizeof(uint32_t);
515 printf(" FIFO_MIN: %#09x -- iMin=%#08x\n", pau32Fifo[0], iMin);
526 if (iMin > 4)
531 if (iMin > 5)
533 if (iMin > 6)
535 if (iMin > 7)
537 if (iMin > 8)
539 if (iMin >
[all...]
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dsortarray.cpp57 int iMin = 0; local
61 while (iMin < iMax)
63 i = (iMax + iMin) / 2;
69 iMin = i + 1;
145 int iMin = 0; local
153 while (iMin < iMax)
155 i = (iMax + iMin) / 2;
161 iMin = i + 1;
/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)
822 idTestSet = self.getIntParam(self.ksParamLogSetId, iMin = 1);
823 idLogFile = self.getIntParam(self.ksParamLogFileId, iMin = 0, iDefault = 0);
824 cbChunk = self.getIntParam(self.ksParamLogChunkSize, iMin = 256, iMax = 16777216, iDefault = 65536);
825 iChunk = self.getIntParam(self.ksParamLogChunkNo, iMin = 0,
845 idTestSet = self.getIntParam(self.ksParamGetFileSetId, iMin = 1);
846 idFile = self.getIntParam(self.ksParamGetFileId, iMin = 0, iDefault = 0);
884 cPeriods = self.getIntParam(self.ksParamReportPeriods, iMin
[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.
348 if (iMin is not None and iValue < iMin) \
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.
413 if (iMin is not None and iValue < iMin) \
416 % (self._sAction, sName, iValue, iMin, iMa
[all...]
H A Dwuiadmin.py553 idEntry = self.getIntParam(sParamId, iMin = 1, iMax = 0x7fffffe)
586 aidTestBoxes = self.getListOfIntParams(TestBoxData.ksParam_idTestBox, iMin = 1, aiDefaults = []);
/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.
105 if (iMin is not None and iValue < iMin) \
108 % (iValue, sField, iMin, iMax));
/vbox/src/VBox/ValidationKit/testmanager/core/
H A Dbase.py255 iMin = getattr(self, 'kiMin_' + sAttr, 0),
280 iMin = 1, iMax = 0x7ffffffe);
478 def validateInt(sValue, iMin = 0, iMax = 0x7ffffffe, aoNilValues = tuple([-1, None, '']), fAllowNull = True):
496 if iValue < iMin:
497 return (iValue, 'Value too small (min %d)' % (iMin,));
714 def validateListOfInts(asValues, iMin = 0, iMax = 0x7ffffffe, aoNilValues = tuple([[], None]), fAllowNull = True):
729 if iValue < iMin:
730 sThisErr = 'Value %d is too small (min %d)' % (iValue, iMin,);
750 def _validateInt(dErrors, sName, sValue, iMin = 0, iMax = 0x7ffffffe, aoNilValues = tuple([-1, None, ''])):
752 (sValue, sError) = ModelDataBase.validateInt(sValue, iMin, iMa
[all...]
H A Dtestboxcontroller.py194 def _getIntParam(self, sName, iMin = None, iMax = None):
198 isn't in the range defined by iMin and iMax.
207 if (iMin is not None and iValue < iMin) \
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/r3/posix/
H A Dsched-posix.cpp455 int iMin = sched_get_priority_min(SavedPriority.iPthreadPolicy); local
456 if (iMax - iMin >= 32)
459 int i = iMin;
589 int iMin = sched_get_priority_min(SavedPriority.iPolicy); local
595 + pCfg->iDelta + iMin;
/vbox/src/VBox/Runtime/testcase/
H A DtstRand.cpp76 uint32_t iMin = UINT32_MAX; local
84 if (iMin > pacHits[iRange])
85 iMin = pacHits[iRange];
90 iMin, (iAvg - iMin) * 100 / iAvg, iMax,
94 CHECK_EXPR(iMin >= iAvg - iAvg / 4);
/vbox/src/VBox/Runtime/tools/
H A DRTNtDbgHelp.cpp99 * @param iMin The minimum verbosity level for this message.
103 static void infoPrintf(int iMin, const char *pszFormat, ...) argument
105 if (g_iOptVerbose >= iMin)

Completed in 707 milliseconds