Searched defs:cBytes (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Devices/PC/ACPI/
H A DVBoxAcpi.cpp121 uint32_t cBytes = pabAml[i + 2]; local
122 AssertReleaseMsg((cBytes >> 6) == 0,
126 for (uint32_t j = 0; j < cBytes + 2; j++)
129 /* Can increase i by cBytes + 1, but not really worth it */
177 uint32_t cBytes = 0; local
183 cBytes = pabAmlPkgLength[0];
189 cBytes = pabAmlPkgLength[0] & 0xF;
193 cBytes |= pabAmlPkgLength[idxLengthByte] << (4*idxLengthByte);
210 for (uint32_t idxAmlCpu = 0; idxAmlCpu < cBytes - 7; idxAmlCpu++)
257 for (uint32_t j = 0; j < cBytes
[all...]
/vbox/src/VBox/Runtime/common/zip/
H A Dunzipcmd.cpp343 RTFOFF cBytes = 0; local
344 rcExit = pfnCallback(pOpts, hVfsObj, pszName, rcExit, &cBytes);
346 cBytesSum += cBytes;
460 RTFOFF cBytes = 0; local
468 RTEXITCODE rcExit = rtZipUnzipDoWithMembers(&Opts, rtZipUnzipCmdListCallback, &cFiles, &cBytes);
471 cBytes, cFiles, cFiles != 1 ? "s" : "");
477 return rtZipUnzipDoWithMembers(&Opts, rtZipUnzipCmdExtractCallback, &cFiles, &cBytes);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dusp10.h169 int cBytes; member in struct:tag_SCRIPT_FONTPROPERTIES
H A Doaidl.h422 ULONG cBytes; member in struct:tagPARAMDESCEX
H A Dwinbase.h174 BYTE cBytes; member in struct:_OFSTRUCT
H A Dobjidl.h5080 LARGE_INTEGER cBytes; member in struct:tagStorageLayout
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dusp10.h171 int cBytes; member in struct:tag_SCRIPT_FONTPROPERTIES
H A Doaidl.h422 ULONG cBytes; member in struct:tagPARAMDESCEX
H A Dwinbase.h163 BYTE cBytes; member in struct:_OFSTRUCT
H A Dobjidl.h5080 LARGE_INTEGER cBytes; member in struct:tagStorageLayout
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageInfo.cpp293 LONG64 cBytes = cMaxBytesPerSec; local
294 if (cBytes == 0)
299 else if (!(cBytes % _1G))
302 cBytes /= _1G;
304 else if (!(cBytes % _1M))
307 cBytes /= _1M;
309 else if (!(cBytes % _1K))
312 cBytes /= _1K;
337 RTPrintf("Name: '%ls', Type: %s, Limit: %lld %sbits/sec (%lld %sbytes/sec)\n", strName.raw(), pszType, cBits, pszNetUnits, cBytes, pszUnits);
341 RTPrintf("Name: '%ls', Type: %s, Limit: %lld %sbytes/sec\n", strName.raw(), pszType, cBytes, pszUnit
[all...]

Completed in 1541 milliseconds