Searched defs:cbInput (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Runtime/testcase/
H A DtstRTDigest-2.cpp50 size_t cbInput; member in struct:TESTRTDIGEST
124 RTTESTI_CHECK_RC_RETV(RTCrDigestUpdate(hDigest, paTests[iTest].pvInput, paTests[iTest].cbInput), VINF_SUCCESS);
139 size_t cbInput = paTests[iTest].cbInput;
140 while (cbInput > 0)
142 size_t cbUpdate = RT_MIN(cbInput, cbChunk);
145 cbInput -= cbUpdate;
/vbox/src/VBox/Runtime/r3/posix/
H A Dutf8-posix.cpp125 * @param cbInput Size (in bytes) of input string. Excludes any terminators.
135 static int rtstrConvertCached(const void *pvInput, size_t cbInput, const char *pszInputCS, argument
147 cbOutput2 = cbInput * cFactor;
192 size_t cbInLeft = cbInput;
263 * @param cbInput Size (in bytes) of input string. Excludes any terminators.
272 static int rtStrConvertUncached(const void *pvInput, size_t cbInput, const char *pszInputCS, argument
284 cbOutput2 = cbInput * cFactor;
322 size_t cbInLeft = cbInput;
/vbox/src/VBox/Runtime/common/zip/
H A Dzip.cpp238 size_t cbInput; member in struct:RTZIPDECOMP::__anon16593::__anon16595
954 unsigned cbInput = (unsigned)RT_MIN(RTZIPLZF_MAX_UNCOMPRESSED_DATA_SIZE, cbBuf); local
955 unsigned cbOutput = lzf_compress(pbBuf, cbInput, pZip->u.LZF.pbOutput, cbFree);
961 cbInput /= 2;
962 if (!cbInput)
967 cbOutput = lzf_compress(pbBuf, cbInput, pZip->u.LZF.pbOutput, cbFree);
976 //pHdr->u32CRC = RTCrc32(pbBuf, cbInput); - too slow
977 pHdr->cbUncompressed = cbInput;
980 cbBuf -= cbInput;
981 pbBuf += cbInput;
[all...]
/vbox/src/VBox/Main/src-client/
H A DConsoleVRDPServer.cpp1166 DECLCALLBACK(void) ConsoleVRDPServer::VRDPCallbackInput(void *pvCallback, int type, const void *pvInput, unsigned cbInput) argument
1175 if (cbInput == sizeof(VRDEINPUTSCANCODE))
1206 if (cbInput == sizeof(VRDEINPUTPOINT))
1263 if (cbInput == sizeof(VRDEINPUTSYNCH))
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPDrv-win.cpp281 static BOOLEAN _stdcall VBoxDrvNtFastIoDeviceControl(PFILE_OBJECT pFileObj, BOOLEAN fWait, PVOID pvInput, ULONG cbInput,
1001 * @param cbInput The size of the input buffer.
1008 static BOOLEAN _stdcall VBoxDrvNtFastIoDeviceControl(PFILE_OBJECT pFileObj, BOOLEAN fWait, PVOID pvInput, ULONG cbInput, argument
1070 pDevExt, uCmd, pvInput, cbInput, pvOutput, cbOutput, pSession));
1086 if (cbInput >= sizeof(Hdr) && cbOutput >= sizeof(Hdr))
1103 ULONG cbBuf = RT_MAX(cbInput, cbOutput);
1104 if ( cbInput == Hdr.cbIn
1114 RtlCopyMemory(pHdr, pvInput, cbInput);
1115 if (cbInput < cbBuf)
1116 RtlZeroMemory((uint8_t *)pHdr + cbInput, cbBu
[all...]

Completed in 123 milliseconds