Home
last modified time | relevance | path

Searched refs:NodeCount (Results 1 – 20 of 20) sorted by relevance

/reactos/drivers/usb/usbaudio/
H A Dfilter.c329 ULONG NodeCount = 0, Length, Index; in CountTopologyComponents() local
348 NodeCount++; in CountTopologyComponents()
365 NodeCount++; in CountTopologyComponents()
367 NodeCount++; in CountTopologyComponents()
369 NodeCount++; in CountTopologyComponents()
371 NodeCount++; in CountTopologyComponents()
373 NodeCount++; in CountTopologyComponents()
375 NodeCount++; in CountTopologyComponents()
390 NodeCount++; in CountTopologyComponents()
404 return NodeCount; in CountTopologyComponents()
[all …]
H A Dusbaudio.h172 ULONG NodeCount; member
/reactos/sdk/lib/drivers/hidparser/
H A Dcontext.c48 for(Index = 0; Index < Collection->NodeCount; Index++) in HidParser_CalculateCollectionSize()
56 Size += (Collection->ReportCount + Collection->NodeCount) * sizeof(ULONG); in HidParser_CalculateCollectionSize()
112 …nSize = sizeof(HID_COLLECTION) + sizeof(ULONG) * (Collection->ReportCount + Collection->NodeCount); in HidParser_StoreCollection()
160 for(Index = 0; Index < Collection->NodeCount; Index++) in HidParser_StoreCollection()
250 for(Index = 0; Index < Collection->NodeCount; Index++) in HidParser_SearchReportInCollection()
307 ULONG Count = Collection->NodeCount; in HidParser_GetCollectionCount()
310 for(Index = 0; Index < Collection->NodeCount; Index++) in HidParser_GetCollectionCount()
H A Dparser.c136 CollectionCount = CurrentCollection->NodeCount + 1; in HidParser_AddCollection()
150 if (CurrentCollection->NodeCount) in HidParser_AddCollection()
155 …CopyFunction(NewAllocCollection, CurrentCollection->Nodes, CurrentCollection->NodeCount * sizeof(P… in HidParser_AddCollection()
166 NewAllocCollection[CurrentCollection->NodeCount] = (struct __HID_COLLECTION__*)NewCollection; in HidParser_AddCollection()
173 CurrentCollection->NodeCount++; in HidParser_AddCollection()
209 for(Index = 0; Index < Collection->NodeCount; Index++) in HidParser_FindReportInCollection()
608 for(Index = 0; Index < Collection->NodeCount; Index++) in HidParser_UpdateCurrentCollectionReport()
1257 ASSERT(ParserContext->RootCollection->NodeCount); in HidParser_GetCollection()
1262 if (CollectionNumber < ParserContext->RootCollection->NodeCount) in HidParser_GetCollection()
1294 ASSERT(ParserContext->RootCollection->NodeCount); in HidParser_NumberOfTopCollections()
[all …]
H A Dparser.h212 ULONG NodeCount; member
/reactos/modules/rosapps/applications/net/roshttpd/include/
H A Dlist.h52 LONG NodeCount; variable
102 return NodeCount; in Count()
111 if ((index < 0) || (index >= NodeCount)) in Get()
130 NodeCount++; in Insert()
143 NodeCount--; in Remove()
163 NodeCount = 0; in RemoveAll()
/reactos/sdk/lib/skiplist/
H A Dskiplist.c89 pUpdate[i]->Distance[i] = Skiplist->NodeCount + 1; in _InsertElementSkiplistWithInformation()
123 ++Skiplist->NodeCount; in _InsertElementSkiplistWithInformation()
198 --Skiplist->NodeCount; in DeleteElementSkiplist()
230 Skiplist->NodeCount = 0; in InitializeSkiplist()
419 if (ElementIndex >= Skiplist->NodeCount) in LookupNodeByIndexSkiplist()
H A Dskiplist.h39 DWORD NodeCount; member
/reactos/drivers/wdm/audio/backpln/portcls/
H A Dundoc.cpp241 if (PropertyRequest->Node < Descriptor->DeviceDescriptor->NodeCount) in PropertyItemDispatch()
636 …DPRINT("NodeCount %lu NodeSize %lu StandardSize %lu\n", FilterDescription->NodeCount, FilterDescri… in DumpFilterDescriptor()
679 for(Index = 0; Index < FilterDescription->NodeCount; Index++) in DumpFilterDescriptor()
897 if (FilterDescription->NodeCount) in PcCreateSubdeviceDescriptor()
900 …onst GUID *)AllocateItem(NonPagedPool, sizeof(GUID) * FilterDescription->NodeCount, TAG_PORTCLASS); in PcCreateSubdeviceDescriptor()
905 …onst GUID *)AllocateItem(NonPagedPool, sizeof(GUID) * FilterDescription->NodeCount, TAG_PORTCLASS); in PcCreateSubdeviceDescriptor()
913 for(Index = 0; Index < FilterDescription->NodeCount; Index++) in PcCreateSubdeviceDescriptor()
958 Descriptor->Topology->TopologyNodesCount = FilterDescription->NodeCount; in PcCreateSubdeviceDescriptor()
/reactos/boot/freeldr/freeldr/arch/i386/pc98/
H A Dpc98hw.c1058 ULONG NodeCount = 0; in DetectPnpBios() local
1079 x = PnpBiosGetDeviceNodeCount(&NodeSize, &NodeCount); in DetectPnpBios()
1086 NodeCount &= 0xFF; // needed since some fscked up BIOSes return in DetectPnpBios()
1089 if (x != 0 || NodeSize == 0 || NodeCount == 0) in DetectPnpBios()
1094 TRACE("MaxNodeSize %u NodeCount %u\n", NodeSize, NodeCount); in DetectPnpBios()
1095 TRACE("Estimated buffer size %u\n", NodeSize * NodeCount); in DetectPnpBios()
1099 + (NodeSize * NodeCount); in DetectPnpBios()
1154 if (FoundNodeCount >= NodeCount) in DetectPnpBios()
/reactos/boot/freeldr/freeldr/arch/i386/pc/
H A Dmachpc.c247 ULONG NodeCount = 0; in DetectPnpBios() local
268 x = PnpBiosGetDeviceNodeCount(&NodeSize, &NodeCount); in DetectPnpBios()
275 NodeCount &= 0xFF; // needed since some fscked up BIOSes return in DetectPnpBios()
278 if (x != 0 || NodeSize == 0 || NodeCount == 0) in DetectPnpBios()
283 TRACE("MaxNodeSize %u NodeCount %u\n", NodeSize, NodeCount); in DetectPnpBios()
284 TRACE("Estimated buffer size %u\n", NodeSize * NodeCount); in DetectPnpBios()
288 + (NodeSize * NodeCount); in DetectPnpBios()
343 if (FoundNodeCount >= NodeCount) in DetectPnpBios()
/reactos/boot/freeldr/freeldr/include/arch/pc/
H A Dhardware.h87 ULONG *NodeCount);
/reactos/sdk/lib/rtl/
H A Dheappage.c828 ULONG NodeCount, i; in RtlpDphAddNewPool() local
831 NodeCount = (ULONG)(Size / sizeof(DPH_HEAP_BLOCK)); in RtlpDphAddNewPool()
835 for (DphNode = Virtual, i=NodeCount-1; i > 0; i--) in RtlpDphAddNewPool()
853 DphRoot->nUnusedNodes += NodeCount; in RtlpDphAddNewPool()
/reactos/drivers/bus/acpi/acpica/include/
H A Dactbl3.h593 UINT16 NodeCount; member
H A Dactbl2.h448 UINT32 NodeCount; member
/reactos/drivers/wdm/audio/drivers/ac97/
H A Dmintopo.cpp561 for(index = 0; index < FilterDescriptor->NodeCount; index++) in DumpTopology()
1561 FilterDescriptor->NodeCount = Index; in BuildNodeDescriptors()
H A Dminiport.cpp1236 MiniportFilterDescriptor.NodeCount = SIZEOF_ARRAY(MiniportNodes) - 1; in STDMETHODIMP_()
/reactos/win32ss/printing/providers/localspl/
H A Dprinters.c527 (*ppPrinterInfo)->cJobs = pPrinter->JobList.NodeCount; in _LocalGetPrinterLevel0()
654 (*ppPrinterInfo)->cJobs = pPrinter->JobList.NodeCount; in _LocalGetPrinterLevel2()
/reactos/sdk/include/ddk/
H A Dd3dkmthk.h3483 ULONG NodeCount; member
3540 ULONG NodeCount; member
3594 ULONG NodeCount; member
H A Dportcls.h360 ULONG NodeCount; member