Searched refs:iVer (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dstring.c473 int iVer = crStrParseGlSubver(ver, &ver, true); local
474 if(iVer <= 0)
476 crWarning("parsing major version returned %d, '%s'", iVer, initVer);
477 return iVer;
480 if (iVer > CR_GLVERSION_MAX_MAJOR)
482 crWarning("major version %d is bigger than the max supported %#x, this is somewhat not expected, failing", iVer, CR_GLVERSION_MAX_MAJOR);
486 iVer <<= CR_GLVERSION_OFFSET_MAJOR;
502 crWarning("minor version %d is bigger than the max supported %#x, this is somewhat not expected, failing", iVer, CR_GLVERSION_MAX_MAJOR);
506 iVer |= tmp << CR_GLVERSION_OFFSET_MINOR;
527 iVer |
[all...]
/vbox/src/VBox/Main/src-client/win/
H A Ddllmain.cpp331 unsigned iVer = RT_ELEMENTS(g_apszTypelibVersions); local
332 while (iVer-- > 0)
335 rc = RegOpenKeyExA(hkeyTyplib, g_apszTypelibVersions[iVer], NULL, KEY_READ, &hkeyVer);
352 //RTAssertMsg2("Should delete HCR\\%s\\%s\n", g_apszTypelibGuidKeys[i], g_apszTypelibVersions[iVer]);
353 rc = SHDeleteKeyA(hkeyTyplib, g_apszTypelibVersions[iVer]);
/vbox/src/VBox/Frontends/VirtualBox/src/
H A DVBoxGLSupportInfo.cpp221 int iVer = vboxVHWAGlParseSubver(ver, &ver, true); local
222 if(iVer)
224 iVer <<= 16;
230 iVer |= tmp << 8;
236 iVer |= tmp;
241 iVer = -1;
248 iVer = -1;
252 return iVer;
/vbox/src/VBox/VMM/VMMR3/
H A DSSM.cpp7724 int iVer = RT_ELEMENTS(s_aVers);
7725 while (iVer-- > 0)
7726 if (!memcmp(uHdr.v2_0.szMagic, s_aVers[iVer].szMagic, sizeof(uHdr.v2_0.szMagic)))
7728 if (iVer < 0)
7733 pSSM->u.Read.uFmtVerMajor = s_aVers[iVer].uFmtVerMajor;
7734 pSSM->u.Read.uFmtVerMinor = s_aVers[iVer].uFmtVerMinor;
7735 pSSM->u.Read.cbFileHdr = s_aVers[iVer].cbHdr;

Completed in 269 milliseconds