Home
last modified time | relevance | path

Searched refs:U32_BITS (Results 1 – 25 of 39) sorted by relevance

12

/dports/lang/spidermonkey60/firefox-60.9.0/third_party/rust/smallbitvec/benches/
H A Dbench.rs25 const U32_BITS: usize = 32; const
82 let mut bit_vec = BitVec::from_elem(U32_BITS, false); in bench_bit_set_small_bv()
85 bit_vec.set((r.next_u32() as usize) % U32_BITS, true); in bench_bit_set_small_bv()
97 bit_vec.set(r.next_u32() % U32_BITS as u32, true); in bench_bit_set_small_sbv()
105 let x = BitVec::from_elem(U32_BITS, false); in bench_bit_vec_small_eq_bv()
106 let y = BitVec::from_elem(U32_BITS, false); in bench_bit_vec_small_eq_bv()
114 let x = SmallBitVec::from_elem(U32_BITS as u32, false); in bench_bit_vec_small_eq_sbv()
115 let y = SmallBitVec::from_elem(U32_BITS as u32, false); in bench_bit_vec_small_eq_sbv()
141 let bit_vec = BitVec::from_elem(U32_BITS, false); in bench_bit_vec_small_iter_bv()
155 let bit_vec = SmallBitVec::from_elem(U32_BITS as u32, false); in bench_bit_vec_small_iter_sbv()
[all …]
/dports/net/rabbiteer/rabbiteer-rs-c881238/cargo-crates/bit-vec-0.4.4/src/
H A Dlib.rs1313 const U32_BITS: usize = 32; const
1871 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
1872 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
1874 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
1876 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
1878 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
1879 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
1892 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
1894 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
1896 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
H A Dbench.rs17 const U32_BITS: usize = 32; const
29 bit_vec |= 1 << ((r.next_u32() as usize) % U32_BITS); in bench_usize_small()
62 let mut bit_vec = BitVec::from_elem(U32_BITS, false); in bench_bit_set_small()
65 bit_vec.set((r.next_u32() as usize) % U32_BITS, true); in bench_bit_set_small()
82 let bit_vec = BitVec::from_elem(U32_BITS, false); in bench_bit_vec_small_iter()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/bit-vec-0.4.4/src/
H A Dlib.rs1313 const U32_BITS: usize = 32; const
1871 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
1872 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
1874 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
1876 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
1878 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
1879 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
1892 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
1894 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
1896 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
H A Dbench.rs17 const U32_BITS: usize = 32; const
29 bit_vec |= 1 << ((r.next_u32() as usize) % U32_BITS); in bench_usize_small()
62 let mut bit_vec = BitVec::from_elem(U32_BITS, false); in bench_bit_set_small()
65 bit_vec.set((r.next_u32() as usize) % U32_BITS, true); in bench_bit_set_small()
82 let bit_vec = BitVec::from_elem(U32_BITS, false); in bench_bit_vec_small_iter()
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/bit-vec-0.5.1/src/
H A Dlib.rs1341 const U32_BITS: usize = 32; const
1899 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
1900 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
1902 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
1904 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
1906 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
1907 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
1920 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
1922 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
1924 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
H A Dbench.rs17 const U32_BITS: usize = 32; const
29 bit_vec |= 1 << ((r.next_u32() as usize) % U32_BITS); in bench_usize_small()
62 let mut bit_vec = BitVec::from_elem(U32_BITS, false); in bench_bit_set_small()
65 bit_vec.set((r.next_u32() as usize) % U32_BITS, true); in bench_bit_set_small()
82 let bit_vec = BitVec::from_elem(U32_BITS, false); in bench_bit_vec_small_iter()
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/bit-vec-0.5.1/src/
H A Dlib.rs1341 const U32_BITS: usize = 32; const
1899 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
1900 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
1902 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
1904 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
1906 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
1907 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
1920 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
1922 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
1924 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
H A Dbench.rs17 const U32_BITS: usize = 32; const
29 bit_vec |= 1 << ((r.next_u32() as usize) % U32_BITS); in bench_usize_small()
62 let mut bit_vec = BitVec::from_elem(U32_BITS, false); in bench_bit_set_small()
65 bit_vec.set((r.next_u32() as usize) % U32_BITS, true); in bench_bit_set_small()
82 let bit_vec = BitVec::from_elem(U32_BITS, false); in bench_bit_vec_small_iter()
/dports/audio/spotifyd/spotifyd-0.3.0/cargo-crates/bit-vec-0.5.1/src/
H A Dlib.rs1341 const U32_BITS: usize = 32; const
1899 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
1900 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
1902 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
1904 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
1906 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
1907 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
1920 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
1922 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
1924 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
H A Dbench.rs17 const U32_BITS: usize = 32;
29 bit_vec |= 1 << ((r.next_u32() as usize) % U32_BITS);
62 let mut bit_vec = BitVec::from_elem(U32_BITS, false);
65 bit_vec.set((r.next_u32() as usize) % U32_BITS, true);
82 let bit_vec = BitVec::from_elem(U32_BITS, false);
/dports/sysutils/vector/vector-0.10.0/cargo-crates/bit-vec-0.6.1/benches/
H A Dbench.rs22 const U32_BITS: usize = 32; const
34 bit_vec |= 1 << ((r.next_u32() as usize) % U32_BITS); in bench_usize_small()
67 let mut bit_vec = BitVec::from_elem(U32_BITS, false); in bench_bit_set_small()
70 bit_vec.set((r.next_u32() as usize) % U32_BITS, true); in bench_bit_set_small()
87 let bit_vec = BitVec::from_elem(U32_BITS, false); in bench_bit_vec_small_iter()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/bit-vec-0.6.1/src/
H A Dlib.rs1322 const U32_BITS: usize = 32; const
1879 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
1880 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
1882 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
1884 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
1886 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
1887 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
1900 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
1902 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
1904 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
/dports/multimedia/librespot/librespot-0.1.3/cargo-crates/bit-vec-0.6.2/src/
H A Dlib.rs1600 const U32_BITS: usize = 32; const
2229 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
2230 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
2232 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2234 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
2236 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2237 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
2250 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
2252 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
2254 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
/dports/devel/grex/grex-1.3.0/cargo-crates/bit-vec-0.6.3/src/
H A Dlib.rs1609 const U32_BITS: usize = 32; const
2238 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
2239 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
2241 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2243 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
2245 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2246 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
2259 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
2261 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
2263 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
/dports/graphics/librsvg2-rust/librsvg-2.52.8/vendor/bit-vec/src/
H A Dlib.rs1609 const U32_BITS: usize = 32; const
2238 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
2239 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
2241 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2243 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
2245 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2246 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
2259 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
2261 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
2263 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/bit-vec-0.6.2/src/
H A Dlib.rs1600 const U32_BITS: usize = 32; const
2229 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
2230 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
2232 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2234 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
2236 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2237 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
2250 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
2252 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
2254 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
/dports/www/firefox/firefox-99.0/third_party/rust/bit-vec/src/
H A Dlib.rs1609 const U32_BITS: usize = 32; const
2238 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
2239 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
2241 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2243 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
2245 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2246 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
2259 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
2261 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
2263 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/rust/bit-vec/src/
H A Dlib.rs1609 const U32_BITS: usize = 32; const
2238 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
2239 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
2241 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2243 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
2245 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2246 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
2259 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
2261 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
2263 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
/dports/net/krill/krill-0.9.4/cargo-crates/bit-vec-0.6.3/src/
H A Dlib.rs1609 const U32_BITS: usize = 32; const
2238 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
2239 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
2241 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2243 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
2245 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2246 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
2259 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
2261 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
2263 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
/dports/textproc/mdbook/mdBook-0.4.13/cargo-crates/bit-vec-0.6.3/src/
H A Dlib.rs1609 const U32_BITS: usize = 32; const
2238 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
2239 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
2241 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2243 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
2245 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2246 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
2259 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
2261 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
2263 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
/dports/www/miniserve/miniserve-0.18.0/cargo-crates/bit-vec-0.6.3/src/
H A Dlib.rs1609 const U32_BITS: usize = 32; const
2238 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
2239 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
2241 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2243 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
2245 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2246 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
2259 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
2261 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
2263 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
/dports/devel/pijul/pijul-1.0.0.a55/cargo-crates/bit-vec-0.6.3/src/
H A Dlib.rs1609 const U32_BITS: usize = 32; const
2238 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
2239 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
2241 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2243 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
2245 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2246 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
2259 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
2261 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
2263 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/rust/bit-vec/src/
H A Dlib.rs1609 const U32_BITS: usize = 32; const
2238 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
2239 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
2241 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2243 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
2245 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2246 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
2259 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
2261 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
2263 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]
/dports/textproc/bat/bat-0.18.3/cargo-crates/bit-vec-0.6.3/src/
H A Dlib.rs1609 const U32_BITS: usize = 32; const
2238 assert_eq!(s.len(), 5 * U32_BITS); in test_bit_vec_truncate()
2239 s.truncate(4 * U32_BITS); in test_bit_vec_truncate()
2241 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2243 s.truncate(5 * U32_BITS); in test_bit_vec_truncate()
2245 assert_eq!(s.len(), 4 * U32_BITS); in test_bit_vec_truncate()
2246 s.truncate(3 * U32_BITS - 10); in test_bit_vec_truncate()
2259 s.reserve(2 * U32_BITS); in test_bit_vec_reserve()
2261 s.reserve(7 * U32_BITS); in test_bit_vec_reserve()
2263 s.reserve_exact(7 * U32_BITS); in test_bit_vec_reserve()
[all …]

12