/reactos/drivers/network/tcpip/lwip/src/core/ipv4/ |
H A D | ip4_addr.c | 150 u32_t parts[4]; in ip4addr_aton() local 151 u32_t *pp = parts; in ip4addr_aton() 194 if (pp >= parts + 3) { in ip4addr_aton() 213 switch (pp - parts + 1) { in ip4addr_aton() 225 if (parts[0] > 0xff) { in ip4addr_aton() 228 val |= parts[0] << 24; in ip4addr_aton() 235 if ((parts[0] > 0xff) || (parts[1] > 0xff)) { in ip4addr_aton() 238 val |= (parts[0] << 24) | (parts[1] << 16); in ip4addr_aton() 245 if ((parts[0] > 0xff) || (parts[1] > 0xff) || (parts[2] > 0xff)) { in ip4addr_aton() 248 val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8); in ip4addr_aton()
|
/reactos/drivers/filesystems/btrfs/ |
H A D | compress.c | 880 comp_part* parts; in write_compressed() local 910 if (!parts) { in write_compressed() 922 parts[i].buf, parts[i].inlen, &parts[i].cj); in write_compressed() 954 ExFreePool(parts); in write_compressed() 961 parts[i].outlen = parts[i].inlen - parts[i].cj->space_left; in write_compressed() 971 RtlZeroMemory(parts[i].buf + parts[i].outlen, newlen - parts[i].outlen); in write_compressed() 999 ExFreePool(parts); in write_compressed() 1010 RtlCopyMemory(buf2, parts[i].buf, parts[i].outlen); in write_compressed() 1075 ExFreePool(parts); in write_compressed() 1088 ExFreePool(parts); in write_compressed() [all …]
|
H A D | create.c | 380 InsertTailList(parts, &nb->list_entry); in split_path() 425 RemoveTailList(parts); in split_path() 444 while (!IsListEmpty(parts)) { in split_path() 1695 LIST_ENTRY parts; variable 1761 InitializeListHead(&parts); 1775 if (parent && !IsListEmpty(&parts)) { 1789 if (IsListEmpty(&parts)) { 1799 le = parts.Flink; 1802 bool lastpart = le->Flink == &parts || (has_stream && le->Flink->Flink == &parts); 1851 } while (le != &parts); [all …]
|
H A D | scrub.c | 48 LIST_ENTRY *le, parts; in log_file_checksum_error() local 76 InitializeListHead(&parts); in log_file_checksum_error() 120 InsertTailList(&parts, &pp->list_entry); in log_file_checksum_error() 231 le = parts.Blink; in log_file_checksum_error() 232 while (le != &parts) { in log_file_checksum_error() 239 RemoveTailList(&parts); in log_file_checksum_error() 246 le = parts.Flink; in log_file_checksum_error() 247 while (le != &parts) { in log_file_checksum_error() 263 le = parts.Blink; in log_file_checksum_error() 264 while (le != &parts) { in log_file_checksum_error() [all …]
|
/reactos/sdk/lib/crt/math/ |
H A D | s_modf.c | 88 } parts; member 102 } parts; member 115 (ix0) = ew_u.parts.msw; \ 116 (ix1) = ew_u.parts.lsw; \ 125 (i) = gh_u.parts.msw; \ 134 (i) = gl_u.parts.lsw; \ 142 iw_u.parts.msw = (ix0); \ 143 iw_u.parts.lsw = (ix1); \
|
/reactos/dll/win32/comctl32/ |
H A D | status.c | 73 STATUSWINDOWPART* parts; member 342 part = &infoPtr->parts[i]; in STATUSBAR_SetPartBounds() 343 r = &infoPtr->parts[i].bound; in STATUSBAR_SetPartBounds() 433 if (parts) { in STATUSBAR_GetParts() 439 parts[i] = infoPtr->parts[i].x; in STATUSBAR_GetParts() 662 infoPtr->parts = tmp; in STATUSBAR_SetParts() 666 if (infoPtr->parts[i].x != parts[i]) in STATUSBAR_SetParts() 673 infoPtr->parts[i].x = parts[i]; in STATUSBAR_SetParts() 874 Free (infoPtr->parts); in STATUSBAR_WMDestroy() 909 infoPtr->parts = 0; in STATUSBAR_WMCreate() [all …]
|
/reactos/modules/rostests/winetests/d3dcompiler_43/ |
H A D | blob.c | 76 static const D3D_BLOB_PART parts[] = variable 179 for (i = 0; i < ARRAY_SIZE(parts); i++) in test_get_blob_part() 210 for (i = 0; i < ARRAY_SIZE(parts); i++) in test_get_blob_part() 242 for (i = 0; i < ARRAY_SIZE(parts); i++) in test_get_blob_part() 286 for (i = 0; i < ARRAY_SIZE(parts); i++) in test_get_blob_part() 306 for (i = 0; i < ARRAY_SIZE(parts); i++) in test_get_blob_part() 326 for (i = 0; i < ARRAY_SIZE(parts); i++) in test_get_blob_part() 614 for (i = 0; i < ARRAY_SIZE(parts); i++) in test_get_blob_part2() 647 for (i = 0; i < ARRAY_SIZE(parts); i++) in test_get_blob_part2() 651 if (parts[i] == D3D_BLOB_ALL_SIGNATURE_BLOB in test_get_blob_part2() [all …]
|
/reactos/dll/win32/ws2_32/src/ |
H A D | addrconv.c | 75 u_long parts[4], *pp = parts; in inet_addr() local 112 if (pp >= parts + 4) return (INADDR_NONE); in inet_addr() 127 n = (u_long)(pp - parts); in inet_addr() 131 val = parts[0]; in inet_addr() 135 val = (parts[0] << 24) | (parts[1] & 0xffffff); in inet_addr() 139 val = (parts[0] << 24) | ((parts[1] & 0xff) << 16) | in inet_addr() 140 (parts[2] & 0xffff); in inet_addr() 144 val = (parts[0] << 24) | ((parts[1] & 0xff) << 16) | in inet_addr() 145 ((parts[2] & 0xff) << 8) | (parts[3] & 0xff); in inet_addr()
|
H A D | addrinfo.c | 97 DWORD parts[4], *pp = parts; in ParseV4Address() local 141 if (pp >= parts + 4) return FALSE; in ParseV4Address() 151 if (pp >= parts + 4) return FALSE; in ParseV4Address() 157 if ((DWORD)(pp - parts) != 4) return FALSE; in ParseV4Address() 158 if (parts[0] > 0xff || parts[1] > 0xff || parts[2] > 0xff || parts[3] > 0xff) return FALSE; in ParseV4Address() 159 val = (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3]; in ParseV4Address()
|
/reactos/sdk/lib/crt/math/ieee754/ |
H A D | ieee754.h | 13 } parts; member 20 (ix0) = ew_u.parts.msw; \ 21 (ix1) = ew_u.parts.lsw; \ 30 (i) = gh_u.parts.msw; \ 37 (i) = gl_u.parts.lsw; \
|
/reactos/base/applications/notepad/ |
H A D | dialog.c | 151 int parts[3]; in DIALOG_StatusBarAlignParts() local 155 parts[0] = rcStatusBar.right - (defaultWidths[1] + defaultWidths[2]); in DIALOG_StatusBarAlignParts() 156 parts[1] = rcStatusBar.right - defaultWidths[2]; in DIALOG_StatusBarAlignParts() 157 parts[2] = -1; // the right edge of the status bar in DIALOG_StatusBarAlignParts() 159 parts[0] = max(parts[0], defaultWidths[0]); in DIALOG_StatusBarAlignParts() 160 parts[1] = max(parts[1], defaultWidths[0] + defaultWidths[1]); in DIALOG_StatusBarAlignParts() 162 SendMessageW(Globals.hStatusBar, SB_SETPARTS, _countof(parts), (LPARAM)parts); in DIALOG_StatusBarAlignParts()
|
/reactos/sdk/lib/3rdparty/libxml2/ |
H A D | TODO_SCHEMAS | 10 - Implement the missing parts in the Structure part 28 bind code and associated parts of the Schemas spec
|
/reactos/dll/win32/winmm/ |
H A D | lolvldrv.c | 100 part = &lpDrv->parts[mld->type]; in MMDRV_Message() 293 WINE_MM_DRIVER_PART* part = &MMDrvs[mld->mmdIndex].parts[dstType]; in MMDRV_GetRelated() 361 WINE_MM_DRIVER_PART* part = &lpDrv->parts[type]; in MMDRV_InitPerType() 425 while (MMDrvs[i].parts[type].nIDMin <= k && k < MMDrvs[i].parts[type].nIDMax) { in MMDRV_InitPerType() 478 { lpDrv->parts[_w].fnMessage##_y = func; count++; \ in MMDRV_Install() 590 WINE_MM_DRIVER_PART* part = &lpDrv->parts[type]; in MMDRV_ExitPerType()
|
H A D | winemm.h | 89 WINE_MM_DRIVER_PART parts[MMDRV_MAX];/* Information for all known types */ member
|
/reactos/modules/rostests/unittests/interop/ |
H A D | LocaleTests.cpp | 67 std::map<E_STRING, PART_TEST> parts; variable 96 parts.insert(std::make_pair(pair.eString, pair.part_test)); in InitParts() 212 for (auto& p : parts) in TEST_NumParts() 234 auto s = parts[p->Num]; in LoadPart()
|
/reactos/drivers/network/tcpip/lwip/test/fuzz/ |
H A D | README | 24 parts of the code, and since you want to run one instance of afl-fuzz on each 34 expose different parts of the code.
|
/reactos/modules/rosapps/templates/mdi/ |
H A D | framewnd.c | 63 int parts[] = {300, 500}; in resize_frame_rect() local 66 SendMessage(hStatusBar, SB_SETPARTS, 2, (LPARAM)&parts); in resize_frame_rect()
|
/reactos/sdk/lib/smlib/ |
H A D | readme.txt | 27 - Initializes the main parts of the subsystem.
|
/reactos/modules/rosapps/applications/explorer-old/shell/ |
H A D | mainframe.cpp | 535 int parts[] = {300, 500}; in resize_frame() local 538 SendMessage(_hstatusbar, SB_SETPARTS, 2, (LPARAM)&parts); in resize_frame() 1231 int parts[] = {300, 500}; in resize_frame() local 1234 SendMessage(_hstatusbar, SB_SETPARTS, 2, (LPARAM)&parts); in resize_frame() 1557 int parts[] = {300, 500}; in resize_frame() local 1560 SendMessage(_hstatusbar, SB_SETPARTS, 2, (LPARAM)&parts); in resize_frame()
|
/reactos/sdk/lib/3rdparty/stlport/ |
H A D | README | 21 src - source for iostreams implementation and other parts
|
/reactos/drivers/storage/ide/uniata/ |
H A D | todo.txt | 20 initialization (move there some parts of code from ... 43 28. port/implement DMA-specific parts of interrupt handlers (12 ) 76 52. optimize DMA init (move similar parts of code to loops/functions ...
|
/reactos/drivers/input/i8042prt/ |
H A D | README.txt | 34 Some parts of the driver make little sense. This is because it implements
|
/reactos/dll/win32/syssetup/lang/ |
H A D | nl-NL.rc | 18 …developers would like to acknowledge the following Open Source projects, (parts of) which were use… 20 …LTEXT "ReactOS is licensed under the GPL, so if you want to reuse or redistribute (parts of) it yo…
|
H A D | en-GB.rc | 18 …developers would like to acknowledge the following Open Source projects, (parts of) which were use… 20 …LTEXT "ReactOS is licensed under the GPL, so if you want to reuse or redistribute (parts of) it yo…
|
/reactos/base/applications/games/solitaire/ |
H A D | solitaire.cpp | 622 int parts[] = { 150, -1 }; in WndProc() local 632 SendMessage(hwndStatus, SB_SETPARTS, 2, (LPARAM)parts); in WndProc()
|