Home
last modified time | relevance | path

Searched refs:part (Results 1 – 25 of 268) sorted by relevance

1234567891011

/reactos/sdk/lib/3rdparty/adns/src/
H A Ddlist.h34 #define LIST_UNLINK_PART(list,node,part) \ argument
36 if ((node)->part back) (node)->part back->part next= (node)->part next; \
37 else (list).head= (node)->part next; \
38 if ((node)->part next) (node)->part next->part back= (node)->part back; \
39 else (list).tail= (node)->part back; \
42 #define LIST_LINK_TAIL_PART(list,node,part) \ argument
44 (node)->part next= 0; \
45 (node)->part back= (list).tail; \
46 if ((list).tail) (list).tail->part next= (node); else (list).head= (node); \
H A Dcheck.c36 #define DLIST_CHECK(list, nodevar, part, body) \
38 assert(! (list).head->part back); \
39 for ((nodevar)= (list).head; (nodevar); (nodevar)= (nodevar)->part next) { \
40 assert((nodevar)->part next \
41 ? (nodevar) == (nodevar)->part next->part back \
59 #define DLIST_CHECK2(list, nodevar, part, body) \ argument
61 assert(! (list).head->part.back); \
63 assert((nodevar)->part.next \
64 ? (nodevar) == (nodevar)->part.next->part.back \
70 #define DLIST_ASSERTON(node, nodevar, list, part) \ argument
[all …]
/reactos/sdk/tools/isohybrid/
H A Disohybrid.c834 struct gpt_part_header *part; in initialise_gpt() local
884 part++; in initialise_gpt()
889 part->lastLBA = lendian_64(part->firstLBA + efi_count - 1); in initialise_gpt()
897 part++; in initialise_gpt()
902 part->lastLBA = lendian_64(part->firstLBA + mac_count - 1); in initialise_gpt()
905 part--; in initialise_gpt()
908 part--; in initialise_gpt()
926 strcpy(part->name, "Apple"); in initialise_apm()
938 strcpy(part->name, "EFI"); in initialise_apm()
952 strcpy(part->name, "EFI"); in initialise_apm()
[all …]
/reactos/dll/win32/comctl32/
H A Dstatus.c162 RECT r = part->bound; in STATUSBAR_DrawPart()
184 if (part->hIcon) { in STATUSBAR_DrawPart()
229 if (part->bound.right < part->bound.left) return; in STATUSBAR_RefreshPart()
350 if (part->x == -1) in STATUSBAR_SetPartBounds()
506 result = part->text ? lstrlenW (part->text) : 0; in STATUSBAR_GetTextW()
508 if (part->text && buf) in STATUSBAR_GetTextW()
531 if ((~part->style & SBT_OWNERDRAW) && part->text) in STATUSBAR_GetTextLength()
773 if (!changed && part->text && !lstrcmpW(ntext, part->text)) { in STATUSBAR_SetTextT()
784 part->text = ntext; in STATUSBAR_SetTextT()
1082 Free (part->text); in STATUSBAR_WMSetText()
[all …]
H A Dipaddress.c253 part->LowerLimit = 0; in IPADDRESS_Create()
254 part->UpperLimit = 255; in IPADDRESS_Create()
257 part->EditHwnd = in IPADDRESS_Create()
264 part->OrigProc = (WNDPROC) in IPADDRESS_Create()
284 SetWindowLongPtrW (part->EditHwnd, GWLP_WNDPROC, (DWORD_PTR)part->OrigProc); in IPADDRESS_Destroy()
392 if ( (value >= part->LowerLimit) && (value <= part->UpperLimit) ) { in IPADDRESS_SetAddress()
417 const IPPART_INFO *part; in IPADDRESS_ConstrainField() local
434 if (newValue < part->LowerLimit) newValue = part->LowerLimit; in IPADDRESS_ConstrainField()
435 if (newValue > part->UpperLimit) newValue = part->UpperLimit; in IPADDRESS_ConstrainField()
512 IPPART_INFO *part; in IPADDRESS_SubclassProc() local
[all …]
H A Dtheme_scrollbar.c155 static void redraw_part(HWND hwnd, HTHEME theme, enum SCROLL_HITTEST part) in redraw_part() argument
163 if (part == SCROLL_NOWHERE) { /* redraw everything */ in redraw_part()
206 if (part == SCROLL_TOP_ARROW) { in redraw_part()
211 } else if (part == SCROLL_BOTTOM_ARROW) { in redraw_part()
229 if (part == SCROLL_TOP_RECT) { in redraw_part()
237 } else if (part == SCROLL_THUMB) { in redraw_part()
245 } else if (part == SCROLL_BOTTOM_RECT) { in redraw_part()
/reactos/base/applications/mspaint/
H A Dhistory.cpp60 if (!part.m_bPartial) in SwapPart()
62 Swap(m_hbmMaster, part.m_hbmImage); in SwapPart()
68 putSubImage(hbmMaster, part.m_rcPart, part.m_hbmImage); in SwapPart()
69 ::DeleteObject(part.m_hbmImage); in SwapPart()
70 part.m_hbmImage = hbmPart; in SwapPart()
150 part.clear(); in PushImageForUndo()
151 part.m_hbmImage = m_hbmMaster; in PushImageForUndo()
163 part.clear(); in PushImageForUndo()
164 part.m_bPartial = TRUE; in PushImageForUndo()
165 part.m_rcPart = rcPartial; in PushImageForUndo()
[all …]
/reactos/dll/win32/winmm/
H A Dlolvldrv.c76 WINE_MM_DRIVER_PART* part; in MMDRV_Message() local
100 part = &lpDrv->parts[mld->type]; in MMDRV_Message()
104 if (!(part->nIDMin <= devID)) in MMDRV_Message()
106 if (!(devID < part->nIDMax)) in MMDRV_Message()
110 assert(part->fnMessage32); in MMDRV_Message()
294 if (part->nIDMin < part->nIDMax) in MMDRV_GetRelated()
367 part->nIDMin = part->nIDMax = 0; in MMDRV_InitPerType()
371 if (part->fnMessage32) { in MMDRV_InitPerType()
399 part->nIDMin = llTypes[type].wMaxId; in MMDRV_InitPerType()
404 part->nIDMin, part->nIDMax, llTypes[type].wMaxId, in MMDRV_InitPerType()
[all …]
/reactos/dll/directx/wine/d3dcompiler_43/
H A Dblob.c165 static BOOL check_blob_part(DWORD tag, D3D_BLOB_PART part) in check_blob_part() argument
169 switch(part) in check_blob_part()
229 if (part > D3D_BLOB_TEST_COMPILE_PERF in d3dcompiler_get_blob_part()
230 || (part < D3D_BLOB_TEST_ALTERNATE_SHADER && part > D3D_BLOB_XNA_SHADER)) in d3dcompiler_get_blob_part()
232 WARN("Invalid D3D_BLOB_PART: part %s\n", debug_d3dcompiler_d3d_blob_part(part)); in d3dcompiler_get_blob_part()
255 if (check_blob_part(section->tag, part)) in d3dcompiler_get_blob_part()
270 switch(part) in d3dcompiler_get_blob_part()
304 …if (count == 1 && (part == D3D_BLOB_DEBUG_INFO || part == D3D_BLOB_LEGACY_SHADER || part == D3D_BL… in d3dcompiler_get_blob_part()
305 || part == D3D_BLOB_XNA_SHADER)) in d3dcompiler_get_blob_part()
424 data_size, debug_d3dcompiler_d3d_blob_part(part), flags, blob); in D3DGetBlobPart()
[all …]
/reactos/sdk/tools/mkisofs/schilytools/mkisofs/
H A Dboot.c50 LOCAL void dup_sun_label __PR((int part));
332 fdisk_part.part[0].pr_status = STATUS_ACTIVE; in make_sunx86_label()
333 fdisk_part.part[0].pr_type = TYPE_SOLARIS; in make_sunx86_label()
334 li_to_4_byte(fdisk_part.part[0].pr_partoff, partoff); in make_sunx86_label()
347 dup_sun_label(part) in dup_sun_label() argument
348 int part; in dup_sun_label()
355 if (part < 1 || part >= NDKMAP)
356 part = 1;
357 cyl = a_to_4_byte(cd_label.dkl_map[part-1].dkl_cylno);
360 for (i = part; i < NDKMAP; i++) {
[all …]
/reactos/sdk/lib/3rdparty/libmpg123/compat/
H A Dcompat.c621 ssize_t part = write(fd, (char*)buffer+written, bytes); in unintr_write() local
622 if(part < 0 && errno != EINTR) in unintr_write()
624 bytes -= part; in unintr_write()
625 written += part; in unintr_write()
636 ssize_t part = read(fd, (char*)buffer+got, bytes); in unintr_read() local
637 if(part < 0 && errno != EINTR) in unintr_read()
639 bytes -= part; in unintr_read()
640 got += part; in unintr_read()
/reactos/modules/rosapps/drivers/vfd/
H A Dvfdpnp.c431 PCM_PARTIAL_RESOURCE_LIST part = &(full->PartialResourceList); in VfdReportDevice() local
432 PCM_PARTIAL_RESOURCE_DESCRIPTOR desc = &(part->PartialDescriptors[0]);; in VfdReportDevice()
439 part->Version = 1; in VfdReportDevice()
440 part->Revision = 1; in VfdReportDevice()
441 part->Count = 1; in VfdReportDevice()
/reactos/drivers/storage/partmgr/
H A Dpartmgr.c97 PPARTITION_INFORMATION part = &Layout->PartitionEntry[i]; in PartMgrConvertLayoutToExtended() local
101 .StartingOffset = part->StartingOffset, in PartMgrConvertLayoutToExtended()
102 .PartitionLength = part->PartitionLength, in PartMgrConvertLayoutToExtended()
103 .RewritePartition = part->RewritePartition, in PartMgrConvertLayoutToExtended()
104 .PartitionNumber = part->PartitionNumber, in PartMgrConvertLayoutToExtended()
106 .PartitionType = part->PartitionType, in PartMgrConvertLayoutToExtended()
107 .BootIndicator = part->BootIndicator, in PartMgrConvertLayoutToExtended()
108 .RecognizedPartition = part->RecognizedPartition, in PartMgrConvertLayoutToExtended()
109 .HiddenSectors = part->HiddenSectors, in PartMgrConvertLayoutToExtended()
723 PPARTITION_INFORMATION part = &layoutInfo->PartitionEntry[i]; in FdoIoctlDiskSetDriveLayout() local
[all …]
/reactos/dll/shellext/netshell/lang/
H A Den-US.rc114 …AUTORADIOBUTTON "No, this computer will be part of a workgroup instead.", IDC_SELECT_WORKGROUP, 33…
115 …AUTORADIOBUTTON "Yes, this computer will be part of a domain.", IDC_SELECT_DOMAIN, 33, 47, 253, 20…
118 …LTEXT "NOTE: If this computer isn't going to be part of a network, you don't have sufficient right…
173 …RKDOMAINSUBTITLE "Specify how the computer will be used - as part of a workgroup or as part of a n…
H A Dbg-BG.rc114 …AUTORADIOBUTTON "No, this computer will be part of a workgroup instead.", IDC_SELECT_WORKGROUP, 33…
115 …AUTORADIOBUTTON "Yes, this computer will be part of a domain.", IDC_SELECT_DOMAIN, 33, 47, 253, 20…
118 …LTEXT "NOTE: If this computer isn't going to be part of a network, you don't have sufficient right…
/reactos/sdk/tools/create_nls/
H A DReadme6 are not part of the ReactOS source tree.
20 Since the binary .nls files are part of the ReactOS source tree it is not
/reactos/base/shell/explorer/
H A Dtraydeskbtn.cpp325 int part = 0; in OnDraw() local
340 part = TP_BUTTON; in OnDraw()
356 if (::IsThemeBackgroundPartiallyTransparent(theme, part, state)) in OnDraw()
359 ::DrawThemeBackground(theme, hdc, part, state, lpRc, lpRc); in OnDraw()
/reactos/dll/win32/uxtheme/
H A Dmsstyles.c316 WCHAR part[60] = {'\0'}; in MSSTYLES_ParseIniSectionName() local
345 lstrcpynW(part, comp, sizeof(part)/sizeof(part[0])); in MSSTYLES_ParseIniSectionName()
355 lstrcpynW(part, comp, sizeof(part)/sizeof(part[0])); in MSSTYLES_ParseIniSectionName()
376 …return MSSTYLES_LookupPartState(szClassName, part[0]?part:NULL, state[0]?state:NULL, iPartId, iSta… in MSSTYLES_ParseIniSectionName()
H A Ddraw.c916 static COLORREF get_edge_color (int edgeType, HTHEME theme, int part, int state) in get_edge_color() argument
920 || FAILED (GetThemeColor (theme, part, state, in get_edge_color()
933 return CreateSolidBrush (get_edge_color (edgeType, theme, part, state)); in get_edge_brush()
941 static HRESULT draw_diag_edge (HDC hdc, HTHEME theme, int part, int state, in draw_diag_edge() argument
1004 if(InnerI != -1) InnerPen = get_edge_pen (InnerI, theme, part, state); in draw_diag_edge()
1005 if(OuterI != -1) OuterPen = get_edge_pen (OuterI, theme, part, state); in draw_diag_edge()
1154 theme, part, state); in draw_diag_edge()
1157 theme, part, state); in draw_diag_edge()
1191 static HRESULT draw_rect_edge (HDC hdc, HTHEME theme, int part, int state, in draw_rect_edge() argument
1247 if(LTInnerI != -1) LTInnerPen = get_edge_pen (LTInnerI, theme, part, state); in draw_rect_edge()
[all …]
/reactos/sdk/lib/3rdparty/libmpg123/
H A Dreaders.c640 ssize_t part = 0; in bc_add() local
649 part = bc->last->realsize - bc->last->size; in bc_add()
650 if(part > size) part = size; in bc_add()
652 debug2("bc_add: adding %"SSIZE_P" B to existing block %p", (ssize_p)part, (void*)bc->last); in bc_add()
653 memcpy(bc->last->data+bc->last->size, data, part); in bc_add()
654 bc->last->size += part; in bc_add()
655 size -= part; in bc_add()
656 bc->size += part; in bc_add()
657 data += part; in bc_add()
/reactos/base/applications/network/telnet/doc/
H A D00readme.avs105 it is for comment a big part of text. can be nested.
170 pages, for example, on former USSR part of world most unix's hosts
195 in body of this part you can combine keymaps and set charmap,
208 you can not define ': <vk_name> ...' part, but for rests
210 The ': <vk_name> ...' part define a key for switch to this
/reactos/sdk/lib/crt/math/libm_sse2/
H A Dremainder_piby2f_forAsm.asm54 ;get the unbiased exponent and the mantissa part of x
73 shr rcx,12 ;rcx = mantissa part of input x
106 xor rdx,rdx ;rdx = sign of x(i.e first part of x * 2bypi)
/reactos/sdk/lib/3rdparty/adns/
H A Daclocal.m46 # It is part of adns, which is
10 # This file is part of adns, which is Copyright (C) 1997-1999 Ian Jackson
/reactos/sdk/include/ndk/
H A Dreadme.txt43 voids your usage rights of the NDK and will lead to legal action on the part of the
69 legal action on the part of the author.
168 …are only documented in the IFS kit, and are part of some native definitions. It will be deprecated…
197 …* winternl.h: This header, part of the PSDK, was released by Microsoft as part of one of the gover…
198 …lawsuits against it, and documents a certain (minimal) part of the Native API and/or types. Unfort…
/reactos/dll/3rdparty/libtiff/
H A Dtif_aux.c361 struct _Int64Parts part; member
371 if (i.part.high >= 0) { in _TIFFUInt64ToFloat()
387 if (i.part.high >= 0) { in _TIFFUInt64ToDouble()

1234567891011