Home
last modified time | relevance | path

Searched refs:partitionSize (Results 1 – 25 of 104) sorted by relevance

12345

/dports/misc/fq/fq-0.0.2/internal/progressreadseeker/
H A Dprogressreaderseeker.go13 partitionSize int64 member
20 partitionSize := totalSize / precision
22 partitionSize++
27 partitionSize: partitionSize,
38 partStart := prs.pos / prs.partitionSize
39 partEnd := newPos / prs.partitionSize
50 readBytes := prs.partitionSize * prs.partitionsReadCount
/dports/math/jts/jts-jts-1.18.1/modules/lab/src/main/java/org/locationtech/jts/operation/union/
H A DDisjointSets.java35 private int[] partitionSize; field in DisjointSets
46 partitionSize = arrayOfValue(size, 1); in DisjointSets()
66 if ((partitionSize[rootj] > partitionSize[rooti]) in merge()
67 || (partitionSize[rooti] == partitionSize[rootj] && rootj <= rooti)) { in merge()
73 partitionSize[dest] += partitionSize[src]; in merge()
74 partitionSize[src] = 0; in merge()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/model/elements/
H A DVariableContentProvider.java136 int partitionSize = computeParitionSize(indexedValue); in getValueChildren() local
137 if (partitionSize > 1) { in getValueChildren()
140 int numPartitions = length / partitionSize; in getValueChildren()
141 int remainder = length % partitionSize; in getValueChildren()
147 partitions[i] = new IndexedVariablePartition(parent, indexedValue, offset, partitionSize); in getValueChildren()
148 offset = offset + partitionSize; in getValueChildren()
151 remainder = partitionSize; in getValueChildren()
175 int partitionSize = 1; in computeParitionSize() local
191 partitionSize = partitionSize * preferredSize; in computeParitionSize()
195 return partitionSize; in computeParitionSize()
/dports/games/avp/avp-20170505/src/avp/win95/
H A Dkzsort.c137 unsigned int partitionSize;
145 for (partitionSize=1;partitionSize<noOfItems;partitionSize*=2)
159 partitionSize,
161 partitionSize,
164 offSet += partitionSize*2;
184 partitionSize,
223 unsigned int partitionSize; in SortModules() local
232 for (partitionSize=1;partitionSize<noOfItems;partitionSize*=2) in SortModules()
246 partitionSize, in SortModules()
248 partitionSize, in SortModules()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/coreclr/
H A DSorterArray.cs84 int partitionSize = hi - lo + 1; in IntroSort()
85 if (partitionSize <= IntrospectiveSortUtilities.IntrosortSizeThreshold) in IntroSort()
87 if (partitionSize == 1) in IntroSort()
91 if (partitionSize == 2) in IntroSort()
96 if (partitionSize == 3) in IntroSort()
290 int partitionSize = hi - lo + 1; in IntroSort()
291 if (partitionSize <= IntrospectiveSortUtilities.IntrosortSizeThreshold) in IntroSort()
293 if (partitionSize == 1) in IntroSort()
297 if (partitionSize == 2) in IntroSort()
302 if (partitionSize == 3) in IntroSort()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Core/System/Linq/Parallel/Enumerables/
H A DRangeEnumerable.cs55 int partitionSize = (i < biggerPartitionCount) ? stride + 1 : stride; in GetPartitions()
58 partitionSize, in GetPartitions()
60 doneCount += partitionSize; in GetPartitions()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Parallel/src/System/Linq/Parallel/Enumerables/
H A DRangeEnumerable.cs51 int partitionSize = (i < biggerPartitionCount) ? stride + 1 : stride; in GetPartitions()
54 partitionSize, in GetPartitions()
56 doneCount += partitionSize; in GetPartitions()
/dports/devel/spark/spark-2.1.1/sql/core/src/main/scala/org/apache/spark/sql/execution/window/
H A DAggregateProcessor.scala60 val partitionSize: Option[AttributeReference] = { constant
67 partitionSize.foreach { n =>
97 val initialProj = newMutableProjection(initialValues, partitionSize.toSeq)
108 partitionSize.isDefined)
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/libp2p/go-libp2p-pubsub/
H A Ddiscovery_test.go227 partitionSize := GossipSubDlo - 1
228 numHosts := partitionSize * 2
243 if i >= partitionSize {
264 waitUntilGossipsubMeshCount(ps, topic, partitionSize-1)
267 for i := 0; i < partitionSize; i++ {
268 …if _, err := server1.Advertise("floodsub:"+topic, *host.InfoFromHost(hosts[i+partitionSize]), ttl)…
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.CoreLib/src/System/Collections/Generic/
H A DArraySortHelper.cs183 int partitionSize = hi - lo + 1; in IntroSort()
184 if (partitionSize <= IntrospectiveSortUtilities.IntrosortSizeThreshold) in IntroSort()
186 if (partitionSize == 1) in IntroSort()
190 if (partitionSize == 2) in IntroSort()
195 if (partitionSize == 3) in IntroSort()
450 int partitionSize = hi - lo + 1; in IntroSort()
451 if (partitionSize <= IntrospectiveSortUtilities.IntrosortSizeThreshold) in IntroSort()
453 if (partitionSize == 1) in IntroSort()
457 if (partitionSize == 2) in IntroSort()
462 if (partitionSize == 3) in IntroSort()
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go112 partitionSize int64
116 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
124 targetClusters := partitionSize / clusterSize
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Parallel/tests/Helpers/
H A DCustomPartitioners.cs102 int partitionSize = Math.Max(1, (int)Math.Ceiling(_count / (double)partitionCount)); in GetOrderablePartitions()
105 int start = partitionSize * i; in GetOrderablePartitions()
106 int count = Math.Max(0, Math.Min(_count - start, partitionSize)); in GetOrderablePartitions()
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/docker/moby-20.10.2/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go107 partitionSize int64
111 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
119 targetClusters := partitionSize / clusterSize
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/cli/cli-20.10.2/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go107 partitionSize int64
111 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
119 targetClusters := partitionSize / clusterSize
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/containerd/containerd/containerd-1.4.3/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go107 partitionSize int64
111 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
119 targetClusters := partitionSize / clusterSize
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/containerd/containerd/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go107 partitionSize int64
111 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
119 targetClusters := partitionSize / clusterSize
/dports/net/concourse-fly/concourse-6.7.1/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go112 partitionSize int64
116 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
124 targetClusters := partitionSize / clusterSize
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go107 partitionSize int64
111 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
119 targetClusters := partitionSize / clusterSize
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/docker/docker/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go107 partitionSize int64
111 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
119 targetClusters := partitionSize / clusterSize
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/containerd/containerd/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go107 partitionSize int64
111 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
119 targetClusters := partitionSize / clusterSize
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/Microsoft/hcsshim/test/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go107 partitionSize int64
111 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
119 targetClusters := partitionSize / clusterSize
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/containerd/containerd/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go107 partitionSize int64
111 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
119 targetClusters := partitionSize / clusterSize
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/docker/docker/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go107 partitionSize int64
111 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
119 targetClusters := partitionSize / clusterSize
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go107 partitionSize int64
111 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
119 targetClusters := partitionSize / clusterSize
/dports/sysutils/helm/helm-3.5.2/vendor/github.com/containerd/containerd/vendor/github.com/Microsoft/hcsshim/internal/wclayer/
H A Dexpandscratchsize.go107 partitionSize int64
111 …e.Fd()), _IOCTL_DISK_GET_LENGTH_INFO, nil, 0, (*byte)(unsafe.Pointer(&partitionSize)), 8, &bytes, …
119 targetClusters := partitionSize / clusterSize

12345