Home
last modified time | relevance | path

Searched refs:sizeInBytes (Results 1 – 25 of 2203) sorted by relevance

12345678910>>...89

/dports/audio/pms-devel/pms-c94e3c6/vendor/github.com/blevesearch/bleve/index/scorch/segment/mem/
H A Dsegment.go99 sizeInBytes uint64 member
111 var sizeInBytes uint64
130 sizeInBytes += (segment.SizeOfSlice * 2)
137 sizeInBytes += (segment.SizeOfSlice * 2)
145 sizeInBytes += (segment.SizeOfSlice * 2)
170 sizeInBytes += segment.SizeOfSlice
183 sizeInBytes += segment.SizeOfSlice
187 sizeInBytes += (segment.SizeOfMap * 3)
197 sizeInBytes += uint64(8)
199 s.sizeInBytes = sizeInBytes
[all …]
/dports/devel/spark/spark-2.1.1/sql/core/src/main/scala/org/apache/spark/sql/execution/columnar/
H A DColumnStats.scala51 private[columnar] var sizeInBytes = 0L
60 sizeInBytes += 4
92 sizeInBytes += BOOLEAN.defaultSize
110 sizeInBytes += BYTE.defaultSize
128 sizeInBytes += SHORT.defaultSize
146 sizeInBytes += INT.defaultSize
164 sizeInBytes += LONG.defaultSize
182 sizeInBytes += FLOAT.defaultSize
200 sizeInBytes += DOUBLE.defaultSize
218 sizeInBytes += STRING.actualSize(row, ordinal)
[all …]
/dports/devel/spark/spark-2.1.1/sql/catalyst/src/main/java/org/apache/spark/sql/catalyst/expressions/
H A DUnsafeMapData.java41 private int sizeInBytes; field in UnsafeMapData
45 public int getSizeInBytes() { return sizeInBytes; } in getSizeInBytes()
67 public void pointTo(Object baseObject, long baseOffset, int sizeInBytes) { in pointTo() argument
73 final int valueArraySize = sizeInBytes - (int)keyArraySize - 8; in pointTo()
83 this.sizeInBytes = sizeInBytes; in pointTo()
102 Platform.copyMemory(baseObject, baseOffset, target, targetOffset, sizeInBytes); in writeToMemory()
111 buffer.position(pos + sizeInBytes); in writeTo()
117 final byte[] mapDataCopy = new byte[sizeInBytes]; in copy()
119 baseObject, baseOffset, mapDataCopy, Platform.BYTE_ARRAY_OFFSET, sizeInBytes); in copy()
120 mapCopy.pointTo(mapDataCopy, Platform.BYTE_ARRAY_OFFSET, sizeInBytes); in copy()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/src/world/
H A Dthinker.cpp63 Impl(thinker_s *podThinkerToTake, dsize sizeInBytes) in DENG2_PIMPL_NOREF()
64 : size(sizeInBytes) in DENG2_PIMPL_NOREF()
118 Thinker::Thinker(dsize sizeInBytes, IData *data) in Thinker() argument
119 : d(new Impl(AllocateStandard, sizeInBytes, data)) in Thinker()
127 : d(new Impl(alloc, sizeInBytes, data)) in Thinker()
140 : d(new Impl(alloc, sizeInBytes, 0)) in Thinker()
143 DENG2_ASSERT(d->size == sizeInBytes); in Thinker()
144 memcpy(d->base, &podThinker, sizeInBytes); in Thinker()
157 : d(new Impl(podThinkerToTake, sizeInBytes)) in Thinker()
212 dsize Thinker::sizeInBytes() const in sizeInBytes() function in Thinker
[all …]
/dports/databases/prometheus-postgresql-adapter/prometheus-postgresql-adapter-0.6.0/vendor/github.com/prometheus/prometheus/vendor/github.com/prometheus/tsdb/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/prometheus/prometheus/tsdb/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/security/vault/vault-1.8.2/vendor/go.etcd.io/etcd/pkg/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/security/certmgr/certmgr-3.0.3/vendor/github.com/google/certificate-transparency-go/certificate-transparency-go-1.0.21/vendor/github.com/coreos/etcd/pkg/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/cortexproject/cortex/vendor/github.com/prometheus/prometheus/tsdb/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/cortexproject/cortex/vendor/github.com/coreos/etcd/pkg/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/coreos/etcd/pkg/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/docker/docker/vendor/github.com/coreos/etcd/pkg/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/www/gitea/gitea-1.16.5/vendor/go.etcd.io/etcd/pkg/v3/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/docker/docker/vendor/github.com/coreos/etcd/pkg/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/sysutils/docker/docker-ce-18.09.5/components/engine/vendor/github.com/coreos/etcd/pkg/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/docker/docker/vendor/github.com/coreos/etcd/pkg/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/databases/timescaledb-backup/timescaledb-backup-0.1.1/vendor/github.com/docker/docker/vendor/github.com/coreos/etcd/pkg/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/docker/docker/vendor/github.com/coreos/etcd/pkg/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/net-mgmt/prometheus2/prometheus-2.30.3/tsdb/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/vendor/github.com/coreos/etcd/pkg/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/grafana/loki/vendor/github.com/prometheus/prometheus/tsdb/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/prometheus/prometheus/tsdb/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/prometheus/prometheus/tsdb/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/docker/docker/vendor/github.com/coreos/etcd/pkg/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)
/dports/net-im/nextcloud-spreed-signaling/nextcloud-spreed-signaling-0.2.0/vendor/src/go.etcd.io/etcd/pkg/fileutil/
H A Dpreallocate.go27 func Preallocate(f *os.File, sizeInBytes int64, extendFile bool) error {
28 if sizeInBytes == 0 {
33 return preallocExtend(f, sizeInBytes)
35 return preallocFixed(f, sizeInBytes)
38 func preallocExtendTrunc(f *os.File, sizeInBytes int64) error {
43 size, err := f.Seek(sizeInBytes, io.SeekEnd)
50 if sizeInBytes > size {
53 return f.Truncate(sizeInBytes)

12345678910>>...89