Searched refs:uAlign (Results 1 - 14 of 14) sorted by relevance

/vbox/src/VBox/ExtPacks/VBoxDTrace/include/
H A DVBoxDTraceTypes.h97 #define IS_P2ALIGNED(uWhat, uAlign) ( !((uWhat) & ((uAlign) - 1)) )
98 #define P2ROUNDUP(uWhat, uAlign) ( ((uWhat) + (uAlign) - 1) & ~(uAlign - 1) )
/vbox/src/VBox/Devices/Audio/
H A DDrvHostDSound.cpp241 if ( (pv1 && (cb1 & pProps->uAlign))
242 || (pv2 && (cb2 & pProps->uAlign)))
276 if ( (pv1 && (cb1 & pProps->uAlign))
277 || (pv2 && (cb2 & pProps->uAlign)))
448 if (bc.dwBufferBytes & pDSoundStrmOut->hw.Props.uAlign)
451 bc.dwBufferBytes, pDSoundStrmOut->hw.Props.uAlign + 1));
787 if (bc.dwBufferBytes & pDSoundStrmIn->hw.Props.uAlign)
790 bc.dwBufferBytes, pDSoundStrmIn->hw.Props.uAlign + 1));
1140 cbLive &= ~pHstStrmOut->Props.uAlign;
1336 if (cbReadPos & pHstStrmIn->Props.uAlign)
[all...]
H A DDrvAudioCommon.cpp357 pProps->uAlign = (1 << pProps->cShift) - 1;
H A DDrvHostOSSAudio.cpp588 if (obtStream.cFragments * obtStream.cbFragmentSize & pHstStrmIn->Props.uAlign)
591 pHstStrmIn->Props.uAlign + 1));
665 if (obtStream.cFragments * obtStream.cbFragmentSize & pHstStrmOut->Props.uAlign)
668 pHstStrmOut->Props.uAlign + 1));
/vbox/src/VBox/Runtime/r0drv/solaris/
H A Dalloc-r0drv-solaris.c62 extern void *contig_alloc(size_t cb, ddi_dma_attr_t *pDmaAttr, size_t uAlign, int fCanSleep);
/vbox/src/VBox/VMM/VMMR3/
H A DPGMDbg.cpp405 * @param uAlign The alignment restriction of the result.
407 static const uint8_t *pgmR3DbgAlignedMemChr(const uint8_t *pb, uint8_t b, size_t cb, uint32_t uAlign) argument
410 if (uAlign <= 32)
413 if ((uintptr_t)pbRet & (uAlign - 1))
425 } while ((uintptr_t)pbRet & (uAlign - 1));
440 if (cb <= uAlign)
442 cb -= uAlign;
443 pb += uAlign;
461 * @param uAlign The needle alignment. This is of course less than a page.
471 static bool pgmR3DbgScanPage(const uint8_t *pbPage, int32_t *poff, uint32_t cb, uint32_t uAlign, argument
[all...]
H A DDBGFMem.cpp119 * @param uAlign The alignment restriction imposed on the result.
127 VMMR3DECL(int) DBGFR3MemScan(PUVM pUVM, VMCPUID idCpu, PCDBGFADDRESS pAddress, RTGCUINTPTR cbRange, RTGCUINTPTR uAlign, argument
133 pUVM, idCpu, pAddress, &cbRange, &uAlign, pvNeedle, cbNeedle, pHitAddress);
/vbox/include/VBox/vmm/
H A Dpdmaudioifs.h196 uint32_t uAlign; member in struct:PDMPCMPROPS
H A Ddbgf.h949 VMMR3DECL(int) DBGFR3MemScan(PUVM pUVM, VMCPUID idCpu, PCDBGFADDRESS pAddress, RTGCUINTPTR cbRange, RTGCUINTPTR uAlign,
/vbox/src/VBox/Debugger/testcase/
H A DtstDBGCStubs.cpp181 VMMR3DECL(int) DBGFR3MemScan(PUVM pUVM, VMCPUID idCpu, PCDBGFADDRESS pAddress, RTGCUINTPTR cbRange, RTGCUINTPTR uAlign, const void *pabNeedle, size_t cbNeedle, PDBGFADDRESS pHitAddress) argument
/vbox/src/VBox/Main/src-client/
H A DDrvAudioVideoRec.cpp170 pProps->uAlign = (1 << pProps->cShift) - 1;
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dcommctrl.h3555 UINT uAlign; member in struct:LVGROUP
3573 #define LVGROUP_V5_SIZE CCSIZEOF_STRUCT(LVGROUP, uAlign)
3655 UINT uAlign; /* (_WIN32_IE >= 0x560) */ member in struct:tagNMLVCUSTOMDRAW
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dcommctrl.h3629 UINT uAlign; member in struct:LVGROUP
3647 #define LVGROUP_V5_SIZE CCSIZEOF_STRUCT(LVGROUP, uAlign)
3729 UINT uAlign; /* (_WIN32_IE >= 0x560) */ member in struct:tagNMLVCUSTOMDRAW
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPHardenedVerifyImage-win.cpp1512 uint64_t uAlign; member in union:__anon16384

Completed in 154 milliseconds