Home
last modified time | relevance | path

Searched refs:EncryptedSize (Results 1 – 25 of 224) sorted by relevance

123456789

/dports/net/storj/storj-1.45.3/vendor/storj.io/common/storj/
H A Dredundancy_test.go49 EncryptedSize int32
53 EncryptedSize: 1,
57 EncryptedSize: 7,
61 EncryptedSize: 57,
65 EncryptedSize: 63,
69 EncryptedSize: 64,
73 EncryptedSize: 65,
79 assert.Equal(t, c.StripesLen, scheme.StripeCount(c.EncryptedSize))
/dports/net/storj/storj-1.45.3/satellite/audit/
H A Dreservoir.go47 reservoir.wSum += int64(segment.EncryptedSize)
49 reservoir.wSum += int64(segment.EncryptedSize)
50 p := float64(segment.EncryptedSize) / float64(reservoir.wSum)
65 EncryptedSize int32 // size of the whole segment (not a piece) member
74 EncryptedSize: loopSegment.EncryptedSize,
H A Dreservoir_test.go49 EncryptedSize: 10,
55 EncryptedSize: 5,
61 EncryptedSize: 2,
67 EncryptedSize: 1,
/dports/net/storj/storj-1.45.3/satellite/metabase/
H A Dcommit_object_test.go250 EncryptedSize: 1024,
268 EncryptedSize: 1024,
312 EncryptedSize: 1024,
410 EncryptedSize: 1024,
455 EncryptedSize: 1024,
473 EncryptedSize: 1024,
515 EncryptedSize: 1024,
579 EncryptedSize: 1024,
597 EncryptedSize: 1024,
703 EncryptedSize: 1024,
[all …]
H A Dcommit_object.go87 totalEncryptedSize += int64(seg.EncryptedSize)
177 EncryptedSize int32 member
194 …err := rows.Scan(&segment.Position, &segment.EncryptedSize, &segment.PlainOffset, &segment.PlainSi…
212 EncryptedSize int32 member
241 EncryptedSize: b.EncryptedSize,
259 EncryptedSize: seg.EncryptedSize,
H A Dcommit_test.go1159 EncryptedSize: -1,
1200 EncryptedSize: 1024,
1221 EncryptedSize: 1024,
1247 EncryptedSize: 1024,
1306 EncryptedSize: 1024,
1323 EncryptedSize: 1024,
1845 EncryptedSize: 3,
1919 EncryptedSize: 3,
2035 EncryptedSize: 0,
2094 EncryptedSize: 3,
[all …]
H A Dlist_segments_test.go78 EncryptedSize: 1024,
196 EncryptedSize: 1024,
237 EncryptedSize: 1024,
336 EncryptedSize: 1024,
461 EncryptedSize: 1024,
502 EncryptedSize: 1024,
557 EncryptedSize: 1024,
602 EncryptedSize: 1024,
H A Ddelete_objects_test.go141 EncryptedSize: 1060,
285 EncryptedSize: 1024,
322 EncryptedSize: 1024,
378 EncryptedSize: 1024,
428 EncryptedSize: 1060,
H A Dcommit.go271 EncryptedSize int32 // segment size after encryption member
301 case opts.EncryptedSize <= 0:
355 opts.EncryptedSize, opts.PlainOffset, opts.PlainSize, opts.EncryptedETag,
369 mon.IntVal("segment_commit_encrypted_size").Observe(int64(opts.EncryptedSize))
532 totalEncryptedSize += int64(seg.EncryptedSize)
H A Dstreamstat_test.go113 EncryptedSize: 1024,
135 EncryptedSize: 1024,
H A Dmove_object_test.go72 expectedRawSegments[i].EncryptedSize = 1060
251 expectedSegments[i].EncryptedSize = int32(expectedEncryptedSize)
300 expectedSegments[i].EncryptedSize = int32(expectedEncryptedSize)
351 expectedSegments[i].EncryptedSize = int32(expectedEncryptedSize)
H A Draw.go57 EncryptedSize int32 // size of the whole segment (not a piece) member
205 &seg.EncryptedSize,
H A Dget.go211 &segment.EncryptedSize, &segment.PlainOffset, &segment.PlainSize,
273 &segment.EncryptedSize, &segment.PlainOffset, &segment.PlainSize,
338 &segment.EncryptedSize, &segment.PlainOffset, &segment.PlainSize,
406 &segment.EncryptedSize, &segment.PlainOffset, &segment.PlainSize,
/dports/net/storj/storj-1.45.3/satellite/metainfo/
H A Dvalidation.go277 if int64(commitRequest.EncryptedSize) > maxAllowed || commitRequest.EncryptedSize < 0 {
278 …d segment size %v is out of range, maximum allowed is %v", commitRequest.EncryptedSize, maxAllowed)
282 if commitRequest.PlainSize > commitRequest.EncryptedSize {
283 …e %v is out of range, maximum allowed is %v", commitRequest.PlainSize, commitRequest.EncryptedSize)
/dports/net/storj/storj-1.45.3/satellite/metrics/
H A Dcounter.go52 counter.TotalRemoteBytes += int64(segment.EncryptedSize)
68 counter.TotalInlineBytes += int64(segment.EncryptedSize)
/dports/net/storj/storj-1.45.3/cmd/metabase-verify/verify/
H A Dsegmentsizes.go50 if seg.PlainSize > seg.EncryptedSize {
56 zap.Int32("encrypted size", seg.EncryptedSize))
/dports/net/storj/storj-1.45.3/satellite/metabase/metabasetest/
H A Dcreate.go62 EncryptedSize: 1024,
105 EncryptedSize: 1024,
156 EncryptedSize: 1024,
239 EncryptedSize: 1060,
H A Ddefaults.go42 EncryptedSize: 1024,
/dports/net/storj/storj-1.45.3/satellite/repair/repairer/
H A Dsegments.go162 mon.IntVal("repair_segment_size").Observe(int64(segment.EncryptedSize)) //mon:locked
163 stats.repairSegmentSize.Observe(int64(segment.EncryptedSize))
289 …et(ctx, getOrderLimits, cachedIPsAndPorts, getPrivateKey, redundancy, int64(segment.EncryptedSize))
374 pieceSize := eestream.CalcPieceSize(int64(segment.EncryptedSize), redundancy)
/dports/www/beehive/beehive-0.4.0/vendor/github.com/minio/minio-go/examples/s3/
H A Dputobject-client-encryption.go66 encSize, err := sio.EncryptedSize(uint64(objectStat.Size()))
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/minio/minio-go/v6/examples/s3/
H A Dputobject-client-encryption.go66 encSize, err := sio.EncryptedSize(uint64(objectStat.Size()))
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/minio/minio-go/v6/minio-go-6.0.57/examples/s3/
H A Dputobject-client-encryption.go66 encSize, err := sio.EncryptedSize(uint64(objectStat.Size()))
/dports/www/minio-client/mc-RELEASE.2021-12-10T00-14-28Z/vendor/github.com/minio/minio-go/v7/examples/s3/
H A Dputobject-client-encryption.go71 encSize, err := sio.EncryptedSize(uint64(objectStat.Size()))
/dports/sysutils/restic/restic-0.12.1/vendor/github.com/minio/minio-go/v7/examples/s3/
H A Dputobject-client-encryption.go71 encSize, err := sio.EncryptedSize(uint64(objectStat.Size()))
/dports/net/freerdp/freerdp-2.5.0/libfreerdp/common/
H A Dassistance.c551 size_t EncryptedSize; in freerdp_assistance_encrypt_pass_stub() local
576 EncryptedSize = cbPassStubW + 4; in freerdp_assistance_encrypt_pass_stub()
577 pbIn = (BYTE*)calloc(1, EncryptedSize); in freerdp_assistance_encrypt_pass_stub()
578 pbOut = (BYTE*)calloc(1, EncryptedSize); in freerdp_assistance_encrypt_pass_stub()
594 cbIn = EncryptedSize; in freerdp_assistance_encrypt_pass_stub()
613 *pEncryptedSize = EncryptedSize; in freerdp_assistance_encrypt_pass_stub()

123456789