Home
last modified time | relevance | path

Searched refs:nCount (Results 1 – 17 of 17) sorted by relevance

/third_party/mingw-w64/mingw-w64-headers/include/
Ddxtmpl.h32 inline void DXConstructElements(TYPE *pElements,int nCount) { in DXConstructElements() argument
33 _ASSERT(nCount==0 || DXIsValidAddress(pElements,nCount *sizeof(TYPE),TRUE)); in DXConstructElements()
34 memset((void*)pElements,0,nCount *sizeof(TYPE)); in DXConstructElements()
38 inline void DXDestructElements(TYPE *pElements,int nCount) { in DXDestructElements() argument
39 _ASSERT((nCount==0 || DXIsValidAddress(pElements,nCount *sizeof(TYPE),TRUE))); in DXDestructElements()
41 nCount; in DXDestructElements()
45 inline void DXCopyElements(TYPE *pDest,const TYPE *pSrc,int nCount) { in DXCopyElements() argument
46 _ASSERT((nCount==0 || DXIsValidAddress(pDest,nCount *sizeof(TYPE),TRUE))); in DXCopyElements()
47 _ASSERT((nCount==0 || DXIsValidAddress(pSrc,nCount *sizeof(TYPE),FALSE))); in DXCopyElements()
48 memcpy(pDest,pSrc,nCount *sizeof(TYPE)); in DXCopyElements()
[all …]
Dsubsmgr.h161 …virtual HRESULT WINAPI ReadProperties(ULONG nCount,const LPCWSTR rgwszName[],VARIANT rgValue[]) = …
162 …virtual HRESULT WINAPI WriteProperties(ULONG nCount,const LPCWSTR rgwszName[],const VARIANT rgValu…
175 …HRESULT (WINAPI *ReadProperties)(ISubscriptionItem *This,ULONG nCount,const LPCWSTR rgwszName[],VA…
176 …HRESULT (WINAPI *WriteProperties)(ISubscriptionItem *This,ULONG nCount,const LPCWSTR rgwszName[],c…
191 …ine ISubscriptionItem_ReadProperties(This,nCount,rgwszName,rgValue) (This)->lpVtbl->ReadProperties… argument
192 …ne ISubscriptionItem_WriteProperties(This,nCount,rgwszName,rgValue) (This)->lpVtbl->WritePropertie… argument
203 …HRESULT WINAPI ISubscriptionItem_ReadProperties_Proxy(ISubscriptionItem *This,ULONG nCount,const L…
205 …HRESULT WINAPI ISubscriptionItem_WriteProperties_Proxy(ISubscriptionItem *This,ULONG nCount,const …
Dsynchapi.h52 …WINBASEAPI DWORD WINAPI WaitForMultipleObjectsEx (DWORD nCount, CONST HANDLE *lpHandles, WINBOOL b…
Drpcndr.h460 ULONG_PTR nCount; member
471 ULONG_PTR nCount; member
Dwingdi.h2318 DWORD nCount; member
2821 WINGDIAPI HRGN WINAPI ExtCreateRegion(CONST XFORM *lpx,DWORD nCount,CONST RGNDATA *lpData);
2884 WINGDIAPI DWORD WINAPI GetRegionData(HRGN hrgn,DWORD nCount,LPRGNDATA lpRgnData);
2903 …WINGDIAPI DWORD WINAPI GetCharacterPlacementA(HDC hdc,LPCSTR lpString,int nCount,int nMexExtent,LP…
2904 …WINGDIAPI DWORD WINAPI GetCharacterPlacementW(HDC hdc,LPCWSTR lpString,int nCount,int nMexExtent,L…
3407 …GDIAPI WINBOOL WINAPI CheckColorsInGamut(HDC hdc,LPVOID lpRGBTriple,LPVOID dlpBuffer,DWORD nCount);
Dwbemcli.h1901 ULONG nCount) = 0;
1946 ULONG nCount);
1966 #define IEnumWbemClassObject_Skip(This,lTimeout,nCount) (This)->lpVtbl->Skip(This,lTimeout,nCount)
1991 …CEINLINE HRESULT IEnumWbemClassObject_Skip(IEnumWbemClassObject* This,LONG lTimeout,ULONG nCount) {
1992 return This->lpVtbl->Skip(This,lTimeout,nCount);
Dicm.h444 …CheckColorsInGamut(HCMTRANSFORM hcmTransform,RGBTRIPLE *lpaRGBTriple,LPBYTE lpaResult,UINT nCount);
Dntgdi.h203 W32KAPI DWORD WINAPI NtGdiGetCharacterPlacementW(HDC hdc,LPWSTR pwsz,int nCount,int nMaxExtent,LPGC…
329 W32KAPI DWORD WINAPI NtGdiGetRegionData(HRGN hrgn,DWORD nCount,LPRGNDATA lpRgnData);
Dwbemcli.idl583 HRESULT Skip ([in] long lTimeout,[in] ULONG nCount);
Daxextend.idl402 DWORD nCount;
Dwinuser.h2848 …WINUSERAPI DWORD WINAPI MsgWaitForMultipleObjects(DWORD nCount,CONST HANDLE *pHandles,WINBOOL fWai…
2849 …WINUSERAPI DWORD WINAPI MsgWaitForMultipleObjectsEx(DWORD nCount,CONST HANDLE *pHandles,DWORD dwMi…
3348 …ingA(HDC hDC,HBRUSH hBrush,GRAYSTRINGPROC lpOutputFunc,LPARAM lpData,int nCount,int X,int Y,int nW…
3349 …ingW(HDC hDC,HBRUSH hBrush,GRAYSTRINGPROC lpOutputFunc,LPARAM lpData,int nCount,int X,int Y,int nW…
Dwinbase.h1283 …WINBASEAPI DWORD WINAPI WaitForMultipleObjects (DWORD nCount, CONST HANDLE *lpHandles, WINBOOL bWa…
Dcommctrl.h192 int nCount; member
Dstrmif.h4923 DWORD nCount; member
/third_party/boost/boost/winapi/
Dwait.hpp51 boost::winapi::DWORD_ nCount,
58 boost::winapi::DWORD_ nCount,
/third_party/uboot/u-boot-2020.01/tools/
Dimg2srec.c178 const uint8_t* data, int nCount) in BuildSRecord() argument
205 sRLen = addrLen + nCount + 1; in BuildSRecord()
215 for (i = 0; i < nCount; i++) { in BuildSRecord()
/third_party/sqlite/src/
Dsqlite3.c176848 int nCount;
176849 nCount = fts3DoclistCountDocids(
176852 if( ii==0 || nCount<nMinEst ) nMinEst = nCount;