Home
last modified time | relevance | path

Searched refs:Bytes (Results 1 – 25 of 13009) sorted by relevance

12345678910>>...521

/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/io/encoding/
H A DTestSeekToBlockWithEncoders.java47 KeyValue kv1 = new KeyValue(Bytes.toBytes("aaa"), Bytes.toBytes("f1"), Bytes.toBytes("q1"), in testSeekToBlockWithNonMatchingSeekKey()
50 KeyValue kv2 = new KeyValue(Bytes.toBytes("aab"), Bytes.toBytes("f1"), Bytes.toBytes("q1"), in testSeekToBlockWithNonMatchingSeekKey()
53 KeyValue kv3 = new KeyValue(Bytes.toBytes("aac"), Bytes.toBytes("f1"), Bytes.toBytes("q1"), in testSeekToBlockWithNonMatchingSeekKey()
56 KeyValue kv4 = new KeyValue(Bytes.toBytes("aad"), Bytes.toBytes("f1"), Bytes.toBytes("q1"), in testSeekToBlockWithNonMatchingSeekKey()
59 KeyValue kv5 = new KeyValue(Bytes.toBytes("bba"), Bytes.toBytes("f1"), Bytes.toBytes("q1"), in testSeekToBlockWithNonMatchingSeekKey()
73 KeyValue kv1 = new KeyValue(Bytes.toBytes("aaa"), Bytes.toBytes("f1"), Bytes.toBytes("q1"), in testSeekingToBlockWithBiggerNonLength1()
115 Bytes.toBytes("q1"), Bytes.toBytes("val")); in testSeekingToBlockToANotAvailableKey()
126 Bytes.toBytes("q1"), Bytes.toBytes("val")); in testSeekToBlockWithDecreasingCommonPrefix()
129 Bytes.toBytes("q2"), Bytes.toBytes("val")); in testSeekToBlockWithDecreasingCommonPrefix()
132 Bytes.toBytes("q3"), Bytes.toBytes("val")); in testSeekToBlockWithDecreasingCommonPrefix()
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-common/src/test/java/org/apache/hadoop/hbase/util/
H A DTestBytes.java141 assertEquals(ints[i], Bytes.toInt(b2, 1, Bytes.SIZEOF_INT)); in testToInt()
344 assertTrue(Bytes.startsWith(Bytes.toBytes("hello"), Bytes.toBytes("h"))); in testStartsWith()
345 assertTrue(Bytes.startsWith(Bytes.toBytes("hello"), Bytes.toBytes(""))); in testStartsWith()
346 assertTrue(Bytes.startsWith(Bytes.toBytes("hello"), Bytes.toBytes("hello"))); in testStartsWith()
347 assertFalse(Bytes.startsWith(Bytes.toBytes("hello"), Bytes.toBytes("helloworld"))); in testStartsWith()
348 assertFalse(Bytes.startsWith(Bytes.toBytes(""), Bytes.toBytes("hello"))); in testStartsWith()
428 String bytes = Bytes.toStringBinary(Bytes.toBytes(2.17)); in testToStringBinary_toBytesBinary_Reversable()
445 int a2 = Bytes.toInt(Bytes.unsignedCopyAndIncrement(a), 0); in testUnsignedIncrement()
474 assertTrue(Bytes.contains(array, Bytes.toBytes("world"))); in testContains()
475 assertTrue(Bytes.contains(array, Bytes.toBytes("ello"))); in testContains()
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/filter/
H A DTestMultiRowRangeFilter.java111 ranges.add(new RowRange(Bytes.toBytes(""), true, Bytes.toBytes(20), false)); in testMergeAndSortWithEmptyStartRow()
112 ranges.add(new RowRange(Bytes.toBytes(15), true, Bytes.toBytes(40), false)); in testMergeAndSortWithEmptyStartRow()
122 ranges.add(new RowRange(Bytes.toBytes(10), true, Bytes.toBytes(20), false)); in testMergeAndSortWithEmptyStopRow()
123 ranges.add(new RowRange(Bytes.toBytes(15), true, Bytes.toBytes(""), false)); in testMergeAndSortWithEmptyStopRow()
124 ranges.add(new RowRange(Bytes.toBytes(30), true, Bytes.toBytes(70), false)); in testMergeAndSortWithEmptyStopRow()
134 ranges.add(new RowRange(Bytes.toBytes(10), true, Bytes.toBytes(20), false)); in testMergeAndSortWithEmptyStartRowAndStopRow()
135 ranges.add(new RowRange(Bytes.toBytes(""), true, Bytes.toBytes(""), false)); in testMergeAndSortWithEmptyStartRowAndStopRow()
136 ranges.add(new RowRange(Bytes.toBytes(30), true, Bytes.toBytes(70), false)); in testMergeAndSortWithEmptyStartRowAndStopRow()
152 ranges.add(new RowRange(Bytes.toBytes(10), true, Bytes.toBytes(20), false)); in testMultiRowRangeWithInvalidRange()
154 ranges.add(new RowRange(Bytes.toBytes(80), true, Bytes.toBytes(20), false)); in testMultiRowRangeWithInvalidRange()
[all …]
/dports/sysutils/terraform-switcher/terraform-switcher-0.13.1201/vendor/github.com/hashicorp/hcl2/hclwrite/
H A Dast_body_test.go32 Bytes: []byte{'a'},
37 Bytes: []byte{'='},
42 Bytes: []byte{'1'},
47 Bytes: []byte{'\n'},
58 Bytes: []byte{'a'},
63 Bytes: []byte{'='},
68 Bytes: []byte{'1'},
84 Bytes: []byte{'b'},
253 Bytes: []byte{},
305 Bytes: []byte{},
[all …]
H A Dgenerate_test.go23 Bytes: []byte(`null`),
32 Bytes: []byte(`true`),
50 Bytes: []byte(`0`),
59 Bytes: []byte(`0.5`),
77 Bytes: []byte(`"`),
90 Bytes: []byte(`"`),
107 Bytes: []byte(`"`),
124 Bytes: []byte(`"`),
141 Bytes: []byte(`"`),
158 Bytes: []byte(`"`),
[all …]
/dports/games/openbve/OpenBVE-1.8.2.1/source/Plugins/Sound.Flac/
H A DBitReader.cs12 internal readonly byte[] Bytes; field in Flac.BitReader
27 Bytes = bytes; in BitReader()
85 return ((uint) Bytes[BytePosition++] << 8) | Bytes[BytePosition++]; in ReadBits()
89 …return ((uint) Bytes[BytePosition++] << 16) | ((uint) Bytes[BytePosition++] << 8) | Bytes[BytePosi… in ReadBits()
91 …return ((uint) Bytes[BytePosition++] << 24) | ((uint) Bytes[BytePosition++] << 16) | ((uint) Bytes in ReadBits()
113Bytes[BytePosition++] << (number - 8)) | ((uint) Bytes[BytePosition++] << (number - 16)) | ((uint)… in ReadBits()
134 …return ((Bytes[BytePosition++] & (((uint) 1 << (number - 16)) - 1)) << 16) | ((uint) Bytes[BytePos… in ReadBits()
137 …(Bytes[BytePosition++] & (((uint) 1 << (number - 24)) - 1)) << 24) | ((uint) Bytes[BytePosition++]… in ReadBits()
184 return ((uint) Bytes[BytePosition++] << 8) | Bytes[BytePosition++]; in ReadUInt16BE()
195 …return ((uint) Bytes[BytePosition++] << 16) | ((uint) Bytes[BytePosition++] << 8) | Bytes[BytePosi… in ReadUInt24BE()
[all …]
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/hashicorp/hcl/v2/hclwrite/
H A Dast_body_test.go33 Bytes: []byte{'a'},
38 Bytes: []byte{'='},
43 Bytes: []byte{'1'},
48 Bytes: []byte{'\n'},
59 Bytes: []byte{'a'},
64 Bytes: []byte{'='},
69 Bytes: []byte{'1'},
85 Bytes: []byte{'b'},
90 Bytes: []byte{'='},
95 Bytes: []byte{'2'},
[all …]
H A Dgenerate_test.go24 Bytes: []byte(`null`),
33 Bytes: []byte(`true`),
51 Bytes: []byte(`0`),
60 Bytes: []byte(`0.5`),
78 Bytes: []byte(`"`),
91 Bytes: []byte(`"`),
108 Bytes: []byte(`"`),
125 Bytes: []byte(`"`),
142 Bytes: []byte(`"`),
159 Bytes: []byte(`"`),
[all …]
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/hashicorp/hcl/v2/hclwrite/
H A Dast_body_test.go33 Bytes: []byte{'a'},
38 Bytes: []byte{'='},
43 Bytes: []byte{'1'},
48 Bytes: []byte{'\n'},
59 Bytes: []byte{'a'},
64 Bytes: []byte{'='},
69 Bytes: []byte{'1'},
85 Bytes: []byte{'b'},
90 Bytes: []byte{'='},
95 Bytes: []byte{'2'},
[all …]
H A Dgenerate_test.go24 Bytes: []byte(`null`),
33 Bytes: []byte(`true`),
51 Bytes: []byte(`0`),
60 Bytes: []byte(`0.5`),
78 Bytes: []byte(`"`),
91 Bytes: []byte(`"`),
108 Bytes: []byte(`"`),
125 Bytes: []byte(`"`),
142 Bytes: []byte(`"`),
159 Bytes: []byte(`"`),
[all …]
/dports/sysutils/terraform-docs/terraform-docs-0.16.0/vendor/github.com/hashicorp/hcl/v2/hclwrite/
H A Dast_body_test.go33 Bytes: []byte{'a'},
38 Bytes: []byte{'='},
43 Bytes: []byte{'1'},
48 Bytes: []byte{'\n'},
59 Bytes: []byte{'a'},
64 Bytes: []byte{'='},
69 Bytes: []byte{'1'},
85 Bytes: []byte{'b'},
90 Bytes: []byte{'='},
95 Bytes: []byte{'2'},
[all …]
H A Dgenerate_test.go24 Bytes: []byte(`null`),
33 Bytes: []byte(`true`),
51 Bytes: []byte(`0`),
60 Bytes: []byte(`0.5`),
78 Bytes: []byte(`"`),
91 Bytes: []byte(`"`),
108 Bytes: []byte(`"`),
125 Bytes: []byte(`"`),
142 Bytes: []byte(`"`),
159 Bytes: []byte(`"`),
[all …]
/dports/converters/p5-Format-Human-Bytes/Format-Human-Bytes-0.06/lib/Format/Human/
H A DBytes.pm1 package Format::Human::Bytes;
100 my $Bytes = $_[0] || 0;
101 defined($Bytes) or $Bytes = 0;
105 if ( $Bytes > 8192000000000 ) {
108 elsif ( $Bytes > 8192000000 ) {
111 elsif ( $Bytes > 8192000 ) {
114 elsif ( $Bytes > 8192 ) {
153 my $Bytes = $_[0] || 0;
154 defined($Bytes) or $Bytes = 0;
164 elsif ( $Bytes > 8192000 ) {
[all …]
/dports/sysutils/fluxengine/fluxengine-61ff48c/tests/
H A Dkryoflux.cc8 static Bytes operator + (const Bytes& left, const Bytes& right)
10 Bytes output;
17 static Bytes operator * (const Bytes& left, size_t count)
19 Bytes output;
26 static void test_convert(const Bytes& kryofluxbytes, const Bytes& fluxmapbytes)
45 Bytes{},
46 Bytes{}
70 Bytes{ 0x8f } + (Bytes{ 0x3f } * 0x207) + Bytes{ 0xa9, 0x8f }
76 Bytes{ 0x8f, 0x8f }
82 Bytes{ 0x8f, 0x8f }
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/third_party/rust/bytes/src/
H A Dbytes.rs70 pub struct Bytes { struct
85 impl Bytes { impl
119 Bytes { in from_static()
129 Bytes { in from_static()
413 Bytes { in with_vtable()
467 impl Buf for Bytes { implementation
557 impl Ord for Bytes { implementation
563 impl Eq for Bytes {} implementation
706 Bytes::new() in default()
743 Bytes { in from()
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-common/src/test/java/org/apache/hadoop/hbase/
H A DTestCellComparator.java90 left = CellUtil.createCell(Bytes.toBytes("a"), Bytes.toBytes("a"), Bytes.toBytes("a")); in testGetShortMidpoint()
91 right = CellUtil.createCell(Bytes.toBytes("b"), Bytes.toBytes("a"), Bytes.toBytes("a")); in testGetShortMidpoint()
96 left = CellUtil.createCell(Bytes.toBytes("g"), Bytes.toBytes("a"), Bytes.toBytes("a")); in testGetShortMidpoint()
97 right = CellUtil.createCell(Bytes.toBytes("i"), Bytes.toBytes("a"), Bytes.toBytes("a")); in testGetShortMidpoint()
102 left = CellUtil.createCell(Bytes.toBytes("a"), Bytes.toBytes("a"), Bytes.toBytes("a")); in testGetShortMidpoint()
109 left = CellUtil.createCell(Bytes.toBytes("a"), Bytes.toBytes("a"), Bytes.toBytes("a")); in testGetShortMidpoint()
110 right = CellUtil.createCell(Bytes.toBytes("a"), Bytes.toBytes("b"), Bytes.toBytes("a")); in testGetShortMidpoint()
115 left = CellUtil.createCell(Bytes.toBytes("a"), Bytes.toBytes("a"), Bytes.toBytes("a")); in testGetShortMidpoint()
122 left = CellUtil.createCell(Bytes.toBytes("a"), Bytes.toBytes("a"), Bytes.toBytes("a")); in testGetShortMidpoint()
129 left = CellUtil.createCell(Bytes.toBytes("a"), Bytes.toBytes("a"), Bytes.toBytes("a")); in testGetShortMidpoint()
[all …]
H A DTestKeyValue.java84 Bytes.toBytes(getName()), Bytes.toBytes(getName()), 1, in testBasics()
87 check(Bytes.toBytes(getName()), Bytes.toBytes(getName()), null, 1, null); in testBasics()
92 new KeyValue(Bytes.toBytes("rk"), Bytes.toBytes("fam"), in testBasics()
144 Bytes.toBytes("info"), Bytes.toBytes("regioninfo"), 1236024396271L,
149 Bytes.toBytes("info"), Bytes.toBytes(""), 9223372036854775807L,
410 Bytes.toBytes("myQualifier"), 12345L, Bytes.toBytes("myValue"));
625 KeyValue kvA1 = new KeyValue(Bytes.toBytes("key"), Bytes.toBytes("cf"), Bytes.toBytes("qualA"),
627 KeyValue kvA2 = new KeyValue(Bytes.toBytes("key"), Bytes.toBytes("cf"), Bytes.toBytes("qualA"),
837 Bytes.toBytes("qualA"), Bytes.toBytes("1"));
839 Bytes.toBytes("qualA"), Bytes.toBytes("2"));
[all …]
/dports/security/libadacrypt/Ada-Crypto-Library-abc534f/src/
H A Dcrypto-symmetric-algorithm-skein.ads150 return Bytes;
164 return Bytes;
168 (T_S : in Bytes;
177 return Bytes;
208 return Bytes;
219 K : in Bytes;
223 State : out Bytes);
230 State : out Bytes);
260 Old_State : in Bytes;
262 New_State : out Bytes);
[all …]
/dports/sysutils/vector/vector-0.10.0/cargo-crates/bytes-0.5.4/src/
H A Dbytes.rs69 pub struct Bytes { struct
84 impl Bytes { implementation
128 Bytes { in from_static()
138 Bytes { in from_static()
456 Bytes { in with_vtable()
504 impl Buf for Bytes { implementation
600 impl Ord for Bytes { implementation
606 impl Eq for Bytes {} implementation
781 Bytes { in from()
788 Bytes { in from()
[all …]
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/bytes-0.5.4/src/
H A Dbytes.rs69 pub struct Bytes { struct
84 impl Bytes { implementation
128 Bytes { in from_static()
138 Bytes { in from_static()
456 Bytes { in with_vtable()
504 impl Buf for Bytes { implementation
600 impl Ord for Bytes { implementation
606 impl Eq for Bytes {} implementation
781 Bytes { in from()
788 Bytes { in from()
[all …]
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/bytes-0.5.4/src/
H A Dbytes.rs69 pub struct Bytes { struct
84 impl Bytes { implementation
128 Bytes { in from_static()
138 Bytes { in from_static()
456 Bytes { in with_vtable()
504 impl Buf for Bytes { implementation
600 impl Ord for Bytes { implementation
606 impl Eq for Bytes {} implementation
781 Bytes { in from()
788 Bytes { in from()
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/
H A DTestScanDeleteTracker.java55 kv = new KeyValue(Bytes.toBytes("row"), Bytes.toBytes("f"), in testDeletedBy_DeleteColumn()
66 kv = new KeyValue(Bytes.toBytes("row"), Bytes.toBytes("f"), in testDeletedBy_DeleteFamily()
81 kv = new KeyValue(Bytes.toBytes("row"), Bytes.toBytes("f"), in testDeletedBy_DeleteFamilyVersion()
85 kv = new KeyValue(Bytes.toBytes("row"), Bytes.toBytes("f"), in testDeletedBy_DeleteFamilyVersion()
89 kv = new KeyValue(Bytes.toBytes("row"), Bytes.toBytes("f"), in testDeletedBy_DeleteFamilyVersion()
93 kv = new KeyValue(Bytes.toBytes("row"), Bytes.toBytes("f"), in testDeletedBy_DeleteFamilyVersion()
97 kv = new KeyValue(Bytes.toBytes("row"), Bytes.toBytes("f"), in testDeletedBy_DeleteFamilyVersion()
101 kv = new KeyValue(Bytes.toBytes("row"), Bytes.toBytes("f"), in testDeletedBy_DeleteFamilyVersion()
105 kv = new KeyValue(Bytes.toBytes("row"), Bytes.toBytes("f"), in testDeletedBy_DeleteFamilyVersion()
109 kv = new KeyValue(Bytes.toBytes("row"), Bytes.toBytes("f"), in testDeletedBy_DeleteFamilyVersion()
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/util/
H A DTestRegionSplitCalculator.java324 sc.add(new SimpleRange(Bytes.toBytes("A"), Bytes.toBytes("Am"))); in testComplex()
325 sc.add(new SimpleRange(Bytes.toBytes("A"), Bytes.toBytes("C"))); in testComplex()
326 sc.add(new SimpleRange(Bytes.toBytes("Am"), Bytes.toBytes("C"))); in testComplex()
327 sc.add(new SimpleRange(Bytes.toBytes("D"), Bytes.toBytes("E"))); in testComplex()
328 sc.add(new SimpleRange(Bytes.toBytes("F"), Bytes.toBytes("G"))); in testComplex()
329 sc.add(new SimpleRange(Bytes.toBytes("B"), Bytes.toBytes("E"))); in testComplex()
330 sc.add(new SimpleRange(Bytes.toBytes("H"), Bytes.toBytes("I"))); in testComplex()
331 sc.add(new SimpleRange(Bytes.toBytes("A"), Bytes.toBytes("B"))); in testComplex()
348 sc.add(new SimpleRange(Bytes.toBytes(""), Bytes.toBytes("A"))); in testBeginEndMarker()
349 sc.add(new SimpleRange(Bytes.toBytes("A"), Bytes.toBytes("B"))); in testBeginEndMarker()
[all …]
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/bytes-1.1.0/src/
H A Dbytes.rs94 pub struct Bytes { struct
109 impl Bytes { implementation
153 Bytes { in from_static()
163 Bytes { in from_static()
483 ) -> Bytes { in with_vtable() argument
484 Bytes { in with_vtable()
819 Bytes { in from()
826 Bytes { in from()
982 Bytes { in shallow_clone_arc()
997 ) -> Bytes { in shallow_clone_vec() argument
[all …]
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/bytes-1.1.0/src/
H A Dbytes.rs94 pub struct Bytes { struct
109 impl Bytes { implementation
153 Bytes { in from_static()
163 Bytes { in from_static()
483 ) -> Bytes { in with_vtable() argument
484 Bytes { in with_vtable()
819 Bytes { in from()
826 Bytes { in from()
982 Bytes { in shallow_clone_arc()
997 ) -> Bytes { in shallow_clone_vec() argument
[all …]

12345678910>>...521