Searched defs:iVer (Results 1 - 3 of 3) sorted by relevance

/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/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/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;

Completed in 35 milliseconds