Searched defs:uSize (Results 1 - 17 of 17) sorted by relevance

/vbox/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/
H A DUIWizardCloneVD.cpp61 qulonglong uSize = field("mediumSize").toULongLong(); local
64 AssertReturn(uSize > 0, false);
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/newvd/
H A DUIWizardNewVD.cpp65 qulonglong uSize = field("mediumSize").toULongLong(); local
68 AssertReturn(uSize > 0, false);
91 CProgress progress = virtualDisk.CreateBaseStorage(uSize, variants);
H A DUIWizardNewVDPageBasic3.cpp234 void UIWizardNewVDPage3::updateSizeToolTips(qulonglong uSize) argument
236 QString strToolTip = UIWizardNewVD::tr("<nobr>%1 (%2 B)</nobr>").arg(vboxGlobal().formatSize(uSize)).arg(uSize);
/vbox/src/VBox/Devices/Audio/
H A Dfilteraudio.c122 uint32_t uSize = 0; local
135 uSize = RT_MIN(cReqSize, RT_MIN(pBuffer->cBufSize - pBuffer->uReadPos, uUsed));
136 if (uSize > 0)
141 *pcSize = uSize;
159 uint32_t uSize; local
172 uSize = RT_MIN(cReqSize, RT_MIN(pBuffer->cBufSize - pBuffer->uWritePos, uFree));
173 if (uSize > 0)
178 *pcSize = uSize;
H A DDrvHostCoreAudio.cpp198 UInt32 uSize = sizeof(uFlag); local
199 OSStatus err = AudioObjectGetPropertyData(deviceID, &propAdr, 0, NULL, &uSize, &uFlag);
238 UInt32 uSize = sizeof(AudioValueTranslation); local
239 OSStatus err = AudioObjectGetPropertyData(kAudioObjectSystemObject, &propAdr, 0, NULL, &uSize, &translation);
352 UInt32 uSize = sizeof(pStreamIn->deviceID); local
354 err = AudioObjectGetPropertyData(kAudioObjectSystemObject, &propAdr, 0, NULL, &uSize, &uResp);
663 UInt32 uSize = 0; local
669 uSize = sizeof(pStreamIn->deviceID);
670 err = AudioObjectGetPropertyData(kAudioObjectSystemObject, &propAdr, 0, NULL, &uSize, &pStreamIn->deviceID);
685 uSize
1008 UInt32 uSize = 0; local
[all...]
H A Dcoreaudio.c136 uint32_t uSize = 0; local
149 uSize = RT_MIN(cReqSize, RT_MIN(pBuffer->cBufSize - pBuffer->uReadPos, uUsed));
150 if (uSize > 0)
155 *pcSize = uSize;
173 uint32_t uSize; local
186 uSize = RT_MIN(cReqSize, RT_MIN(pBuffer->cBufSize - pBuffer->uWritePos, uFree));
187 if (uSize > 0)
192 *pcSize = uSize;
358 UInt32 uSize = sizeof(uFlag); local
364 &uSize,
423 UInt32 uSize; local
550 UInt32 uSize = 0; local
663 UInt32 uSize = 0; /* temporary size of properties */ local
1205 UInt32 uSize = 0; local
1486 UInt32 uSize = 0; /* temporary size of properties */ local
[all...]
/vbox/src/VBox/Main/src-client/
H A DGuestFileImpl.cpp745 int GuestFile::i_readData(uint32_t uSize, uint32_t uTimeoutMS, argument
751 LogFlowThisFunc(("uSize=%RU32, uTimeoutMS=%RU32, pvData=%p, cbData=%zu\n",
752 uSize, uTimeoutMS, pvData, cbData));
780 paParms[i++].setUInt32(uSize /* Size (in bytes) to read */);
803 int GuestFile::i_readDataAt(uint64_t uOffset, uint32_t uSize, uint32_t uTimeoutMS, argument
806 LogFlowThisFunc(("uOffset=%RU64, uSize=%RU32, uTimeoutMS=%RU32, pvData=%p, cbData=%zu\n",
807 uOffset, uSize, uTimeoutMS, pvData, cbData));
836 paParms[i++].setUInt32(uSize /* Size (in bytes) to read */);
H A DEbmlWriter.cpp331 uint64_t uSize = uPos - m_Elements.top().offset - 8; local
335 writeUnsignedInteger(uSize | UINT64_C(0x0100000000000000));
H A DGuestProcessImpl.cpp833 int GuestProcess::i_readData(uint32_t uHandle, uint32_t uSize, uint32_t uTimeoutMS, argument
836 LogFlowThisFunc(("uPID=%RU32, uHandle=%RU32, uSize=%RU32, uTimeoutMS=%RU32, pvData=%p, cbData=%RU32, pGuestRc=%p\n",
837 mData.mPID, uHandle, uSize, uTimeoutMS, pvData, cbData, pGuestRc));
838 AssertReturn(uSize, VERR_INVALID_PARAMETER);
840 AssertReturn(cbData >= uSize, VERR_INVALID_PARAMETER);
/vbox/src/VBox/Devices/VirtIO/
H A DVirtio.cpp58 + sizeof(VRINGDESC) * pQueue->VRing.uSize;
60 pQueue->VRing.addrAvail + RT_OFFSETOF(VRINGAVAIL, auRing[pQueue->VRing.uSize]),
74 pVRing->addrDescriptors + sizeof(VRINGDESC) * (uIndex % pVRing->uSize),
83 pVRing->addrAvail + RT_OFFSETOF(VRINGAVAIL, auRing[uIndex % pVRing->uSize]),
195 pVRing->addrUsed + RT_OFFSETOF(VRINGUSED, aRing[uIndex % pVRing->uSize]),
365 *(uint16_t*)pu32 = pState->Queues[pState->uQueueSelector].VRing.uSize;
652 " VRing.uSize = %u\n"
660 pState->Queues[i].VRing.uSize,
699 rc = SSMR3PutU16(pSSM, pState->Queues[i].VRing.uSize);
747 rc = SSMR3GetU16(pSSM, &pState->Queues[i].VRing.uSize);
921 vpciAddQueue(VPCISTATE* pState, unsigned uSize, PFNVPCIQUEUECALLBACK pfnCallback, const char *pcszName) argument
[all...]
H A DVirtio.h103 uint16_t uSize; member in struct:VRing
267 PVQUEUE vpciAddQueue(VPCISTATE* pState, unsigned uSize, PFNVPCIQUEUECALLBACK pfnCallback, const char *pcszName);
/vbox/src/VBox/VMM/include/
H A DCSAMInternal.h85 uint32_t uSize; member in struct:__anon16876
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxInternalManage.cpp114 uint64_t uSize; member in struct:HOSTPARTITION
861 pCP->uSize = (end +1) - start;/*+1 LBA because the last address is included*/
893 pCP->uSize = RT_MAKE_U32_FROM_U8(p[12], p[13], p[14], p[15]);
955 pCP->uSize = RT_MAKE_U32_FROM_U8(p[12], p[13], p[14], p[15]);
1053 uPrevEnd = pPart->aPartitions[i].uStart + pPart->aPartitions[i].uSize;
1114 partitions.aPartitions[i].uSize / 2048,
1681 pPartDesc->cbData = partitions.aPartitions[i].uSize * 512;
/vbox/src/VBox/Devices/Network/
H A DDevVirtioNet.cpp876 unsigned int uSize = (unsigned int)RT_MIN(elem.aSegsIn[nSeg].cb - (nSeg?0:cbReserved), local
879 uOffset += uSize;
880 uElemSize += uSize;
1197 unsigned int uSize = 0; local
1201 uSize += elem.aSegsOut[i].cb;
1203 INSTANCE(pThis), uSize));
1204 Assert(uSize <= VNET_MAX_FRAME_SIZE);
1220 int rc = pThis->pDrv->pfnAllocBuf(pThis->pDrv, uSize, pGso, &pSgBuf);
1232 pSgBuf->cbUsed = uSize;
1233 vnetPacketDump(pThis, (uint8_t*)pSgBuf->aSegs[0].pvSeg, uSize, "
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dshellapi.h46 { UINT uSize; member in struct:_DRAGINFOA
54 { UINT uSize; member in struct:_DRAGINFOW
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dshellapi.h46 { UINT uSize; member in struct:_DRAGINFOA
54 { UINT uSize; member in struct:_DRAGINFOW
/vbox/src/VBox/Storage/
H A DVMDK.cpp817 uint32_t uSize = DeflateState.iOffset; local
818 if (uSize % 512)
820 uint32_t uSizeAlign = RT_ALIGN(uSize, 512);
821 memset((uint8_t *)pExtent->pvCompGrain + uSize, '\0',
822 uSizeAlign - uSize);
823 uSize = uSizeAlign;
827 *pcbMarkerData = uSize;
835 uOffset, pMarker, uSize);

Completed in 100 milliseconds