Searched refs:DxSize (Results 1 – 2 of 2) sorted by relevance
/reactos/win32ss/gdi/gdi32/objects/ |
H A D | text.c | 589 ULONG DxSize = 0; in ExtTextOutW() local 597 DxSize = (cwc * sizeof(INT)) * (fuOptions & ETO_PDY ? 2 : 1); in ExtTextOutW() 598 cjSize += DxSize; in ExtTextOutW() 629 pgO->Size = DxSize; // of lpDx then string after. in ExtTextOutW() 631 if (lpDx) RtlCopyMemory( &pgO->Buffer, lpDx, DxSize); in ExtTextOutW() 633 … if (cwc) RtlCopyMemory( &pgO->String[DxSize/sizeof(WCHAR)], lpString, cwc * sizeof(WCHAR)); in ExtTextOutW()
|
/reactos/win32ss/gdi/ntgdi/ |
H A D | freetype.c | 7375 ULONG BufSize, StringSize, DxSize = 0; in NtGdiExtTextOutW() local 7391 DxSize = (Count * sizeof(INT)) * ((fuOptions & ETO_PDY) ? 2 : 1); in NtGdiExtTextOutW() 7392 BufSize += DxSize; in NtGdiExtTextOutW() 7410 SafeString = (LPCWSTR)(((ULONG_PTR)Buffer) + DxSize); in NtGdiExtTextOutW() 7421 ProbeForRead(UnsafeDx, DxSize, 1); in NtGdiExtTextOutW() 7422 RtlCopyMemory(SafeDx, UnsafeDx, DxSize); in NtGdiExtTextOutW()
|