-
Notifications
You must be signed in to change notification settings - Fork 0
/
bench.result
557 lines (551 loc) · 31.7 KB
/
bench.result
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
Compiling nbits_vec v0.1.1 (file:///home/huolinhe/Projects/Rust/nbits_vec)
Running target/release/bench-9a8b9b56e066af11
running 96 tests
test tests::align::test_1bits_u16::align ... bench: 281 ns/iter (+/- 14)
test tests::align::test_1bits_u32::align ... bench: 296 ns/iter (+/- 43)
test tests::align::test_1bits_u64::align ... bench: 287 ns/iter (+/- 25)
test tests::align::test_1bits_u8::align ... bench: 289 ns/iter (+/- 14)
test tests::align::test_2bits_u16::align ... bench: 353 ns/iter (+/- 7)
test tests::align::test_2bits_u32::align ... bench: 384 ns/iter (+/- 27)
test tests::align::test_2bits_u64::align ... bench: 370 ns/iter (+/- 36)
test tests::align::test_2bits_u8::align ... bench: 378 ns/iter (+/- 248)
test tests::align::test_3bits_u16::align ... bench: 423 ns/iter (+/- 15)
test tests::align::test_3bits_u32::align ... bench: 389 ns/iter (+/- 53)
test tests::align::test_3bits_u64::align ... bench: 384 ns/iter (+/- 90)
test tests::align::test_3bits_u8::align ... bench: 438 ns/iter (+/- 14)
test tests::align::test_4bits_u16::align ... bench: 343 ns/iter (+/- 69)
test tests::align::test_4bits_u32::align ... bench: 382 ns/iter (+/- 54)
test tests::align::test_4bits_u64::align ... bench: 342 ns/iter (+/- 19)
test tests::align::test_4bits_u8::align ... bench: 300 ns/iter (+/- 63)
test tests::get::test_1bits_u16::bench ... bench: 285 ns/iter (+/- 14)
test tests::get::test_1bits_u32::bench ... bench: 303 ns/iter (+/- 24)
test tests::get::test_1bits_u64::bench ... bench: 287 ns/iter (+/- 14)
test tests::get::test_1bits_u8::bench ... bench: 300 ns/iter (+/- 13)
test tests::get::test_2bits_u16::bench ... bench: 282 ns/iter (+/- 14)
test tests::get::test_2bits_u32::bench ... bench: 284 ns/iter (+/- 26)
test tests::get::test_2bits_u64::bench ... bench: 289 ns/iter (+/- 15)
test tests::get::test_2bits_u8::bench ... bench: 296 ns/iter (+/- 28)
test tests::get::test_3bits_u16::bench ... bench: 284 ns/iter (+/- 26)
test tests::get::test_3bits_u32::bench ... bench: 312 ns/iter (+/- 39)
test tests::get::test_3bits_u64::bench ... bench: 287 ns/iter (+/- 32)
test tests::get::test_3bits_u8::bench ... bench: 300 ns/iter (+/- 16)
test tests::get::test_4bits_u16::bench ... bench: 300 ns/iter (+/- 8)
test tests::get::test_4bits_u32::bench ... bench: 300 ns/iter (+/- 12)
test tests::get::test_4bits_u64::bench ... bench: 300 ns/iter (+/- 43)
test tests::get::test_4bits_u8::bench ... bench: 284 ns/iter (+/- 16)
test tests::new::test_1bits_u16::bench ... bench: 14 ns/iter (+/- 1)
test tests::new::test_1bits_u32::bench ... bench: 15 ns/iter (+/- 0)
test tests::new::test_1bits_u64::bench ... bench: 15 ns/iter (+/- 0)
test tests::new::test_1bits_u8::bench ... bench: 14 ns/iter (+/- 1)
test tests::new::test_2bits_u16::bench ... bench: 15 ns/iter (+/- 0)
test tests::new::test_2bits_u32::bench ... bench: 15 ns/iter (+/- 0)
test tests::new::test_2bits_u64::bench ... bench: 15 ns/iter (+/- 0)
test tests::new::test_2bits_u8::bench ... bench: 14 ns/iter (+/- 1)
test tests::new::test_3bits_u16::bench ... bench: 15 ns/iter (+/- 0)
test tests::new::test_3bits_u32::bench ... bench: 15 ns/iter (+/- 0)
test tests::new::test_3bits_u64::bench ... bench: 15 ns/iter (+/- 0)
test tests::new::test_3bits_u8::bench ... bench: 15 ns/iter (+/- 1)
test tests::new::test_4bits_u16::bench ... bench: 15 ns/iter (+/- 0)
test tests::new::test_4bits_u32::bench ... bench: 15 ns/iter (+/- 0)
test tests::new::test_4bits_u64::bench ... bench: 15 ns/iter (+/- 1)
test tests::new::test_4bits_u8::bench ... bench: 15 ns/iter (+/- 1)
test tests::push::test_1bits_u16::push ... bench: 2,118 ns/iter (+/- 249)
test tests::push::test_1bits_u32::push ... bench: 1,868 ns/iter (+/- 229)
test tests::push::test_1bits_u64::push ... bench: 1,855 ns/iter (+/- 243)
test tests::push::test_1bits_u8::push ... bench: 1,888 ns/iter (+/- 129)
test tests::push::test_2bits_u16::push ... bench: 2,384 ns/iter (+/- 364)
test tests::push::test_2bits_u32::push ... bench: 2,212 ns/iter (+/- 157)
test tests::push::test_2bits_u64::push ... bench: 2,501 ns/iter (+/- 87)
test tests::push::test_2bits_u8::push ... bench: 2,533 ns/iter (+/- 271)
test tests::push::test_3bits_u16::push ... bench: 3,325 ns/iter (+/- 806)
test tests::push::test_3bits_u32::push ... bench: 3,113 ns/iter (+/- 459)
test tests::push::test_3bits_u64::push ... bench: 3,163 ns/iter (+/- 346)
test tests::push::test_3bits_u8::push ... bench: 4,020 ns/iter (+/- 1,583)
test tests::push::test_4bits_u16::push ... bench: 2,641 ns/iter (+/- 256)
test tests::push::test_4bits_u32::push ... bench: 2,487 ns/iter (+/- 154)
test tests::push::test_4bits_u64::push ... bench: 2,600 ns/iter (+/- 262)
test tests::push::test_4bits_u8::push ... bench: 2,629 ns/iter (+/- 629)
test tests::resize::test_1bits_u16::bench ... bench: 3,889 ns/iter (+/- 526)
test tests::resize::test_1bits_u32::bench ... bench: 2,927 ns/iter (+/- 332)
test tests::resize::test_1bits_u64::bench ... bench: 2,295 ns/iter (+/- 205)
test tests::resize::test_1bits_u8::bench ... bench: 3,702 ns/iter (+/- 204)
test tests::resize::test_2bits_u16::bench ... bench: 3,738 ns/iter (+/- 330)
test tests::resize::test_2bits_u32::bench ... bench: 3,644 ns/iter (+/- 107)
test tests::resize::test_2bits_u64::bench ... bench: 2,910 ns/iter (+/- 171)
test tests::resize::test_2bits_u8::bench ... bench: 3,552 ns/iter (+/- 386)
test tests::resize::test_3bits_u16::bench ... bench: 4,283 ns/iter (+/- 216)
test tests::resize::test_3bits_u32::bench ... bench: 4,251 ns/iter (+/- 390)
test tests::resize::test_3bits_u64::bench ... bench: 4,165 ns/iter (+/- 354)
test tests::resize::test_3bits_u8::bench ... bench: 4,231 ns/iter (+/- 1,944)
test tests::resize::test_4bits_u16::bench ... bench: 3,795 ns/iter (+/- 119)
test tests::resize::test_4bits_u32::bench ... bench: 3,920 ns/iter (+/- 403)
test tests::resize::test_4bits_u64::bench ... bench: 3,784 ns/iter (+/- 238)
test tests::resize::test_4bits_u8::bench ... bench: 3,839 ns/iter (+/- 353)
test tests::set::test_1bits_u16::bench ... bench: 1,178 ns/iter (+/- 72)
test tests::set::test_1bits_u32::bench ... bench: 1,220 ns/iter (+/- 134)
test tests::set::test_1bits_u64::bench ... bench: 1,189 ns/iter (+/- 79)
test tests::set::test_1bits_u8::bench ... bench: 1,182 ns/iter (+/- 41)
test tests::set::test_2bits_u16::bench ... bench: 1,692 ns/iter (+/- 30)
test tests::set::test_2bits_u32::bench ... bench: 1,693 ns/iter (+/- 718)
test tests::set::test_2bits_u64::bench ... bench: 1,693 ns/iter (+/- 162)
test tests::set::test_2bits_u8::bench ... bench: 2,601 ns/iter (+/- 243)
test tests::set::test_3bits_u16::bench ... bench: 2,461 ns/iter (+/- 53)
test tests::set::test_3bits_u32::bench ... bench: 2,380 ns/iter (+/- 142)
test tests::set::test_3bits_u64::bench ... bench: 2,428 ns/iter (+/- 266)
test tests::set::test_3bits_u8::bench ... bench: 2,761 ns/iter (+/- 141)
test tests::set::test_4bits_u16::bench ... bench: 1,693 ns/iter (+/- 684)
test tests::set::test_4bits_u32::bench ... bench: 1,715 ns/iter (+/- 351)
test tests::set::test_4bits_u64::bench ... bench: 1,710 ns/iter (+/- 129)
test tests::set::test_4bits_u8::bench ... bench: 1,715 ns/iter (+/- 109)
test result: ok. 0 passed; 0 failed; 0 ignored; 96 measured
Running target/release/nbits_vec-7d1a5cdc2774610c
running 448 tests
test tests::n1::u16::private_api::get_raw_bits ... ignored
test tests::n1::u16::private_api::raw_bit ... ignored
test tests::n1::u16::private_api::raw_bits ... ignored
test tests::n1::u16::public_api::align ... ignored
test tests::n1::u16::public_api::fill ... ignored
test tests::n1::u16::public_api::get_set ... ignored
test tests::n1::u16::public_api::new ... ignored
test tests::n1::u16::public_api::push_pop ... ignored
test tests::n1::u16::public_api::resize ... ignored
test tests::n1::u16::public_api::resize_large ... ignored
test tests::n1::u16::struct_static::bit_loc ... ignored
test tests::n1::u16::struct_static::block_bits ... ignored
test tests::n1::u16::struct_static::mask_ok ... ignored
test tests::n1::u16::struct_static::nbits ... ignored
test tests::n1::u16::threadsafe::new ... ignored
test tests::n1::u16::threadsafe::with_capacity ... ignored
test tests::n1::u32::private_api::get_raw_bits ... ignored
test tests::n1::u32::private_api::raw_bit ... ignored
test tests::n1::u32::private_api::raw_bits ... ignored
test tests::n1::u32::public_api::align ... ignored
test tests::n1::u32::public_api::fill ... ignored
test tests::n1::u32::public_api::get_set ... ignored
test tests::n1::u32::public_api::new ... ignored
test tests::n1::u32::public_api::push_pop ... ignored
test tests::n1::u32::public_api::resize ... ignored
test tests::n1::u32::public_api::resize_large ... ignored
test tests::n1::u32::struct_static::bit_loc ... ignored
test tests::n1::u32::struct_static::block_bits ... ignored
test tests::n1::u32::struct_static::mask_ok ... ignored
test tests::n1::u32::struct_static::nbits ... ignored
test tests::n1::u32::threadsafe::new ... ignored
test tests::n1::u32::threadsafe::with_capacity ... ignored
test tests::n1::u64::private_api::get_raw_bits ... ignored
test tests::n1::u64::private_api::raw_bit ... ignored
test tests::n1::u64::private_api::raw_bits ... ignored
test tests::n1::u64::public_api::align ... ignored
test tests::n1::u64::public_api::fill ... ignored
test tests::n1::u64::public_api::get_set ... ignored
test tests::n1::u64::public_api::new ... ignored
test tests::n1::u64::public_api::push_pop ... ignored
test tests::n1::u64::public_api::resize ... ignored
test tests::n1::u64::public_api::resize_large ... ignored
test tests::n1::u64::struct_static::bit_loc ... ignored
test tests::n1::u64::struct_static::block_bits ... ignored
test tests::n1::u64::struct_static::mask_ok ... ignored
test tests::n1::u64::struct_static::nbits ... ignored
test tests::n1::u64::threadsafe::new ... ignored
test tests::n1::u64::threadsafe::with_capacity ... ignored
test tests::n1::u8::private_api::get_raw_bits ... ignored
test tests::n1::u8::private_api::raw_bit ... ignored
test tests::n1::u8::private_api::raw_bits ... ignored
test tests::n1::u8::public_api::align ... ignored
test tests::n1::u8::public_api::fill ... ignored
test tests::n1::u8::public_api::get_set ... ignored
test tests::n1::u8::public_api::new ... ignored
test tests::n1::u8::public_api::push_pop ... ignored
test tests::n1::u8::public_api::resize ... ignored
test tests::n1::u8::public_api::resize_large ... ignored
test tests::n1::u8::struct_static::bit_loc ... ignored
test tests::n1::u8::struct_static::block_bits ... ignored
test tests::n1::u8::struct_static::mask_ok ... ignored
test tests::n1::u8::struct_static::nbits ... ignored
test tests::n1::u8::threadsafe::new ... ignored
test tests::n1::u8::threadsafe::with_capacity ... ignored
test tests::n2::u16::private_api::get_raw_bits ... ignored
test tests::n2::u16::private_api::raw_bit ... ignored
test tests::n2::u16::private_api::raw_bits ... ignored
test tests::n2::u16::public_api::align ... ignored
test tests::n2::u16::public_api::fill ... ignored
test tests::n2::u16::public_api::get_set ... ignored
test tests::n2::u16::public_api::new ... ignored
test tests::n2::u16::public_api::push_pop ... ignored
test tests::n2::u16::public_api::resize ... ignored
test tests::n2::u16::public_api::resize_large ... ignored
test tests::n2::u16::struct_static::bit_loc ... ignored
test tests::n2::u16::struct_static::block_bits ... ignored
test tests::n2::u16::struct_static::mask_ok ... ignored
test tests::n2::u16::struct_static::nbits ... ignored
test tests::n2::u16::threadsafe::new ... ignored
test tests::n2::u16::threadsafe::with_capacity ... ignored
test tests::n2::u32::private_api::get_raw_bits ... ignored
test tests::n2::u32::private_api::raw_bit ... ignored
test tests::n2::u32::private_api::raw_bits ... ignored
test tests::n2::u32::public_api::align ... ignored
test tests::n2::u32::public_api::fill ... ignored
test tests::n2::u32::public_api::get_set ... ignored
test tests::n2::u32::public_api::new ... ignored
test tests::n2::u32::public_api::push_pop ... ignored
test tests::n2::u32::public_api::resize ... ignored
test tests::n2::u32::public_api::resize_large ... ignored
test tests::n2::u32::struct_static::bit_loc ... ignored
test tests::n2::u32::struct_static::block_bits ... ignored
test tests::n2::u32::struct_static::mask_ok ... ignored
test tests::n2::u32::struct_static::nbits ... ignored
test tests::n2::u32::threadsafe::new ... ignored
test tests::n2::u32::threadsafe::with_capacity ... ignored
test tests::n2::u64::private_api::get_raw_bits ... ignored
test tests::n2::u64::private_api::raw_bit ... ignored
test tests::n2::u64::private_api::raw_bits ... ignored
test tests::n2::u64::public_api::align ... ignored
test tests::n2::u64::public_api::fill ... ignored
test tests::n2::u64::public_api::get_set ... ignored
test tests::n2::u64::public_api::new ... ignored
test tests::n2::u64::public_api::push_pop ... ignored
test tests::n2::u64::public_api::resize ... ignored
test tests::n2::u64::public_api::resize_large ... ignored
test tests::n2::u64::struct_static::bit_loc ... ignored
test tests::n2::u64::struct_static::block_bits ... ignored
test tests::n2::u64::struct_static::mask_ok ... ignored
test tests::n2::u64::struct_static::nbits ... ignored
test tests::n2::u64::threadsafe::new ... ignored
test tests::n2::u64::threadsafe::with_capacity ... ignored
test tests::n2::u8::private_api::get_raw_bits ... ignored
test tests::n2::u8::private_api::raw_bit ... ignored
test tests::n2::u8::private_api::raw_bits ... ignored
test tests::n2::u8::public_api::align ... ignored
test tests::n2::u8::public_api::fill ... ignored
test tests::n2::u8::public_api::get_set ... ignored
test tests::n2::u8::public_api::new ... ignored
test tests::n2::u8::public_api::push_pop ... ignored
test tests::n2::u8::public_api::resize ... ignored
test tests::n2::u8::public_api::resize_large ... ignored
test tests::n2::u8::struct_static::bit_loc ... ignored
test tests::n2::u8::struct_static::block_bits ... ignored
test tests::n2::u8::struct_static::mask_ok ... ignored
test tests::n2::u8::struct_static::nbits ... ignored
test tests::n2::u8::threadsafe::new ... ignored
test tests::n2::u8::threadsafe::with_capacity ... ignored
test tests::n3::u16::private_api::get_raw_bits ... ignored
test tests::n3::u16::private_api::raw_bit ... ignored
test tests::n3::u16::private_api::raw_bits ... ignored
test tests::n3::u16::public_api::align ... ignored
test tests::n3::u16::public_api::fill ... ignored
test tests::n3::u16::public_api::get_set ... ignored
test tests::n3::u16::public_api::new ... ignored
test tests::n3::u16::public_api::push_pop ... ignored
test tests::n3::u16::public_api::resize ... ignored
test tests::n3::u16::public_api::resize_large ... ignored
test tests::n3::u16::struct_static::bit_loc ... ignored
test tests::n3::u16::struct_static::block_bits ... ignored
test tests::n3::u16::struct_static::mask_ok ... ignored
test tests::n3::u16::struct_static::nbits ... ignored
test tests::n3::u16::threadsafe::new ... ignored
test tests::n3::u16::threadsafe::with_capacity ... ignored
test tests::n3::u32::private_api::get_raw_bits ... ignored
test tests::n3::u32::private_api::raw_bit ... ignored
test tests::n3::u32::private_api::raw_bits ... ignored
test tests::n3::u32::public_api::align ... ignored
test tests::n3::u32::public_api::fill ... ignored
test tests::n3::u32::public_api::get_set ... ignored
test tests::n3::u32::public_api::new ... ignored
test tests::n3::u32::public_api::push_pop ... ignored
test tests::n3::u32::public_api::resize ... ignored
test tests::n3::u32::public_api::resize_large ... ignored
test tests::n3::u32::struct_static::bit_loc ... ignored
test tests::n3::u32::struct_static::block_bits ... ignored
test tests::n3::u32::struct_static::mask_ok ... ignored
test tests::n3::u32::struct_static::nbits ... ignored
test tests::n3::u32::threadsafe::new ... ignored
test tests::n3::u32::threadsafe::with_capacity ... ignored
test tests::n3::u64::private_api::get_raw_bits ... ignored
test tests::n3::u64::private_api::raw_bit ... ignored
test tests::n3::u64::private_api::raw_bits ... ignored
test tests::n3::u64::public_api::align ... ignored
test tests::n3::u64::public_api::fill ... ignored
test tests::n3::u64::public_api::get_set ... ignored
test tests::n3::u64::public_api::new ... ignored
test tests::n3::u64::public_api::push_pop ... ignored
test tests::n3::u64::public_api::resize ... ignored
test tests::n3::u64::public_api::resize_large ... ignored
test tests::n3::u64::struct_static::bit_loc ... ignored
test tests::n3::u64::struct_static::block_bits ... ignored
test tests::n3::u64::struct_static::mask_ok ... ignored
test tests::n3::u64::struct_static::nbits ... ignored
test tests::n3::u64::threadsafe::new ... ignored
test tests::n3::u64::threadsafe::with_capacity ... ignored
test tests::n3::u8::private_api::get_raw_bits ... ignored
test tests::n3::u8::private_api::raw_bit ... ignored
test tests::n3::u8::private_api::raw_bits ... ignored
test tests::n3::u8::public_api::align ... ignored
test tests::n3::u8::public_api::fill ... ignored
test tests::n3::u8::public_api::get_set ... ignored
test tests::n3::u8::public_api::new ... ignored
test tests::n3::u8::public_api::push_pop ... ignored
test tests::n3::u8::public_api::resize ... ignored
test tests::n3::u8::public_api::resize_large ... ignored
test tests::n3::u8::struct_static::bit_loc ... ignored
test tests::n3::u8::struct_static::block_bits ... ignored
test tests::n3::u8::struct_static::mask_ok ... ignored
test tests::n3::u8::struct_static::nbits ... ignored
test tests::n3::u8::threadsafe::new ... ignored
test tests::n3::u8::threadsafe::with_capacity ... ignored
test tests::n4::u16::private_api::get_raw_bits ... ignored
test tests::n4::u16::private_api::raw_bit ... ignored
test tests::n4::u16::private_api::raw_bits ... ignored
test tests::n4::u16::public_api::align ... ignored
test tests::n4::u16::public_api::fill ... ignored
test tests::n4::u16::public_api::get_set ... ignored
test tests::n4::u16::public_api::new ... ignored
test tests::n4::u16::public_api::push_pop ... ignored
test tests::n4::u16::public_api::resize ... ignored
test tests::n4::u16::public_api::resize_large ... ignored
test tests::n4::u16::struct_static::bit_loc ... ignored
test tests::n4::u16::struct_static::block_bits ... ignored
test tests::n4::u16::struct_static::mask_ok ... ignored
test tests::n4::u16::struct_static::nbits ... ignored
test tests::n4::u16::threadsafe::new ... ignored
test tests::n4::u16::threadsafe::with_capacity ... ignored
test tests::n4::u32::private_api::get_raw_bits ... ignored
test tests::n4::u32::private_api::raw_bit ... ignored
test tests::n4::u32::private_api::raw_bits ... ignored
test tests::n4::u32::public_api::align ... ignored
test tests::n4::u32::public_api::fill ... ignored
test tests::n4::u32::public_api::get_set ... ignored
test tests::n4::u32::public_api::new ... ignored
test tests::n4::u32::public_api::push_pop ... ignored
test tests::n4::u32::public_api::resize ... ignored
test tests::n4::u32::public_api::resize_large ... ignored
test tests::n4::u32::struct_static::bit_loc ... ignored
test tests::n4::u32::struct_static::block_bits ... ignored
test tests::n4::u32::struct_static::mask_ok ... ignored
test tests::n4::u32::struct_static::nbits ... ignored
test tests::n4::u32::threadsafe::new ... ignored
test tests::n4::u32::threadsafe::with_capacity ... ignored
test tests::n4::u64::private_api::get_raw_bits ... ignored
test tests::n4::u64::private_api::raw_bit ... ignored
test tests::n4::u64::private_api::raw_bits ... ignored
test tests::n4::u64::public_api::align ... ignored
test tests::n4::u64::public_api::fill ... ignored
test tests::n4::u64::public_api::get_set ... ignored
test tests::n4::u64::public_api::new ... ignored
test tests::n4::u64::public_api::push_pop ... ignored
test tests::n4::u64::public_api::resize ... ignored
test tests::n4::u64::public_api::resize_large ... ignored
test tests::n4::u64::struct_static::bit_loc ... ignored
test tests::n4::u64::struct_static::block_bits ... ignored
test tests::n4::u64::struct_static::mask_ok ... ignored
test tests::n4::u64::struct_static::nbits ... ignored
test tests::n4::u64::threadsafe::new ... ignored
test tests::n4::u64::threadsafe::with_capacity ... ignored
test tests::n4::u8::private_api::get_raw_bits ... ignored
test tests::n4::u8::private_api::raw_bit ... ignored
test tests::n4::u8::private_api::raw_bits ... ignored
test tests::n4::u8::public_api::align ... ignored
test tests::n4::u8::public_api::fill ... ignored
test tests::n4::u8::public_api::get_set ... ignored
test tests::n4::u8::public_api::new ... ignored
test tests::n4::u8::public_api::push_pop ... ignored
test tests::n4::u8::public_api::resize ... ignored
test tests::n4::u8::public_api::resize_large ... ignored
test tests::n4::u8::struct_static::bit_loc ... ignored
test tests::n4::u8::struct_static::block_bits ... ignored
test tests::n4::u8::struct_static::mask_ok ... ignored
test tests::n4::u8::struct_static::nbits ... ignored
test tests::n4::u8::threadsafe::new ... ignored
test tests::n4::u8::threadsafe::with_capacity ... ignored
test tests::n5::u16::private_api::get_raw_bits ... ignored
test tests::n5::u16::private_api::raw_bit ... ignored
test tests::n5::u16::private_api::raw_bits ... ignored
test tests::n5::u16::public_api::align ... ignored
test tests::n5::u16::public_api::fill ... ignored
test tests::n5::u16::public_api::get_set ... ignored
test tests::n5::u16::public_api::new ... ignored
test tests::n5::u16::public_api::push_pop ... ignored
test tests::n5::u16::public_api::resize ... ignored
test tests::n5::u16::public_api::resize_large ... ignored
test tests::n5::u16::struct_static::bit_loc ... ignored
test tests::n5::u16::struct_static::block_bits ... ignored
test tests::n5::u16::struct_static::mask_ok ... ignored
test tests::n5::u16::struct_static::nbits ... ignored
test tests::n5::u16::threadsafe::new ... ignored
test tests::n5::u16::threadsafe::with_capacity ... ignored
test tests::n5::u32::private_api::get_raw_bits ... ignored
test tests::n5::u32::private_api::raw_bit ... ignored
test tests::n5::u32::private_api::raw_bits ... ignored
test tests::n5::u32::public_api::align ... ignored
test tests::n5::u32::public_api::fill ... ignored
test tests::n5::u32::public_api::get_set ... ignored
test tests::n5::u32::public_api::new ... ignored
test tests::n5::u32::public_api::push_pop ... ignored
test tests::n5::u32::public_api::resize ... ignored
test tests::n5::u32::public_api::resize_large ... ignored
test tests::n5::u32::struct_static::bit_loc ... ignored
test tests::n5::u32::struct_static::block_bits ... ignored
test tests::n5::u32::struct_static::mask_ok ... ignored
test tests::n5::u32::struct_static::nbits ... ignored
test tests::n5::u32::threadsafe::new ... ignored
test tests::n5::u32::threadsafe::with_capacity ... ignored
test tests::n5::u64::private_api::get_raw_bits ... ignored
test tests::n5::u64::private_api::raw_bit ... ignored
test tests::n5::u64::private_api::raw_bits ... ignored
test tests::n5::u64::public_api::align ... ignored
test tests::n5::u64::public_api::fill ... ignored
test tests::n5::u64::public_api::get_set ... ignored
test tests::n5::u64::public_api::new ... ignored
test tests::n5::u64::public_api::push_pop ... ignored
test tests::n5::u64::public_api::resize ... ignored
test tests::n5::u64::public_api::resize_large ... ignored
test tests::n5::u64::struct_static::bit_loc ... ignored
test tests::n5::u64::struct_static::block_bits ... ignored
test tests::n5::u64::struct_static::mask_ok ... ignored
test tests::n5::u64::struct_static::nbits ... ignored
test tests::n5::u64::threadsafe::new ... ignored
test tests::n5::u64::threadsafe::with_capacity ... ignored
test tests::n5::u8::private_api::get_raw_bits ... ignored
test tests::n5::u8::private_api::raw_bit ... ignored
test tests::n5::u8::private_api::raw_bits ... ignored
test tests::n5::u8::public_api::align ... ignored
test tests::n5::u8::public_api::fill ... ignored
test tests::n5::u8::public_api::get_set ... ignored
test tests::n5::u8::public_api::new ... ignored
test tests::n5::u8::public_api::push_pop ... ignored
test tests::n5::u8::public_api::resize ... ignored
test tests::n5::u8::public_api::resize_large ... ignored
test tests::n5::u8::struct_static::bit_loc ... ignored
test tests::n5::u8::struct_static::block_bits ... ignored
test tests::n5::u8::struct_static::mask_ok ... ignored
test tests::n5::u8::struct_static::nbits ... ignored
test tests::n5::u8::threadsafe::new ... ignored
test tests::n5::u8::threadsafe::with_capacity ... ignored
test tests::n6::u16::private_api::get_raw_bits ... ignored
test tests::n6::u16::private_api::raw_bit ... ignored
test tests::n6::u16::private_api::raw_bits ... ignored
test tests::n6::u16::public_api::align ... ignored
test tests::n6::u16::public_api::fill ... ignored
test tests::n6::u16::public_api::get_set ... ignored
test tests::n6::u16::public_api::new ... ignored
test tests::n6::u16::public_api::push_pop ... ignored
test tests::n6::u16::public_api::resize ... ignored
test tests::n6::u16::public_api::resize_large ... ignored
test tests::n6::u16::struct_static::bit_loc ... ignored
test tests::n6::u16::struct_static::block_bits ... ignored
test tests::n6::u16::struct_static::mask_ok ... ignored
test tests::n6::u16::struct_static::nbits ... ignored
test tests::n6::u16::threadsafe::new ... ignored
test tests::n6::u16::threadsafe::with_capacity ... ignored
test tests::n6::u32::private_api::get_raw_bits ... ignored
test tests::n6::u32::private_api::raw_bit ... ignored
test tests::n6::u32::private_api::raw_bits ... ignored
test tests::n6::u32::public_api::align ... ignored
test tests::n6::u32::public_api::fill ... ignored
test tests::n6::u32::public_api::get_set ... ignored
test tests::n6::u32::public_api::new ... ignored
test tests::n6::u32::public_api::push_pop ... ignored
test tests::n6::u32::public_api::resize ... ignored
test tests::n6::u32::public_api::resize_large ... ignored
test tests::n6::u32::struct_static::bit_loc ... ignored
test tests::n6::u32::struct_static::block_bits ... ignored
test tests::n6::u32::struct_static::mask_ok ... ignored
test tests::n6::u32::struct_static::nbits ... ignored
test tests::n6::u32::threadsafe::new ... ignored
test tests::n6::u32::threadsafe::with_capacity ... ignored
test tests::n6::u64::private_api::get_raw_bits ... ignored
test tests::n6::u64::private_api::raw_bit ... ignored
test tests::n6::u64::private_api::raw_bits ... ignored
test tests::n6::u64::public_api::align ... ignored
test tests::n6::u64::public_api::fill ... ignored
test tests::n6::u64::public_api::get_set ... ignored
test tests::n6::u64::public_api::new ... ignored
test tests::n6::u64::public_api::push_pop ... ignored
test tests::n6::u64::public_api::resize ... ignored
test tests::n6::u64::public_api::resize_large ... ignored
test tests::n6::u64::struct_static::bit_loc ... ignored
test tests::n6::u64::struct_static::block_bits ... ignored
test tests::n6::u64::struct_static::mask_ok ... ignored
test tests::n6::u64::struct_static::nbits ... ignored
test tests::n6::u64::threadsafe::new ... ignored
test tests::n6::u64::threadsafe::with_capacity ... ignored
test tests::n6::u8::private_api::get_raw_bits ... ignored
test tests::n6::u8::private_api::raw_bit ... ignored
test tests::n6::u8::private_api::raw_bits ... ignored
test tests::n6::u8::public_api::align ... ignored
test tests::n6::u8::public_api::fill ... ignored
test tests::n6::u8::public_api::get_set ... ignored
test tests::n6::u8::public_api::new ... ignored
test tests::n6::u8::public_api::push_pop ... ignored
test tests::n6::u8::public_api::resize ... ignored
test tests::n6::u8::public_api::resize_large ... ignored
test tests::n6::u8::struct_static::bit_loc ... ignored
test tests::n6::u8::struct_static::block_bits ... ignored
test tests::n6::u8::struct_static::mask_ok ... ignored
test tests::n6::u8::struct_static::nbits ... ignored
test tests::n6::u8::threadsafe::new ... ignored
test tests::n6::u8::threadsafe::with_capacity ... ignored
test tests::n7::u16::private_api::get_raw_bits ... ignored
test tests::n7::u16::private_api::raw_bit ... ignored
test tests::n7::u16::private_api::raw_bits ... ignored
test tests::n7::u16::public_api::align ... ignored
test tests::n7::u16::public_api::fill ... ignored
test tests::n7::u16::public_api::get_set ... ignored
test tests::n7::u16::public_api::new ... ignored
test tests::n7::u16::public_api::push_pop ... ignored
test tests::n7::u16::public_api::resize ... ignored
test tests::n7::u16::public_api::resize_large ... ignored
test tests::n7::u16::struct_static::bit_loc ... ignored
test tests::n7::u16::struct_static::block_bits ... ignored
test tests::n7::u16::struct_static::mask_ok ... ignored
test tests::n7::u16::struct_static::nbits ... ignored
test tests::n7::u16::threadsafe::new ... ignored
test tests::n7::u16::threadsafe::with_capacity ... ignored
test tests::n7::u32::private_api::get_raw_bits ... ignored
test tests::n7::u32::private_api::raw_bit ... ignored
test tests::n7::u32::private_api::raw_bits ... ignored
test tests::n7::u32::public_api::align ... ignored
test tests::n7::u32::public_api::fill ... ignored
test tests::n7::u32::public_api::get_set ... ignored
test tests::n7::u32::public_api::new ... ignored
test tests::n7::u32::public_api::push_pop ... ignored
test tests::n7::u32::public_api::resize ... ignored
test tests::n7::u32::public_api::resize_large ... ignored
test tests::n7::u32::struct_static::bit_loc ... ignored
test tests::n7::u32::struct_static::block_bits ... ignored
test tests::n7::u32::struct_static::mask_ok ... ignored
test tests::n7::u32::struct_static::nbits ... ignored
test tests::n7::u32::threadsafe::new ... ignored
test tests::n7::u32::threadsafe::with_capacity ... ignored
test tests::n7::u64::private_api::get_raw_bits ... ignored
test tests::n7::u64::private_api::raw_bit ... ignored
test tests::n7::u64::private_api::raw_bits ... ignored
test tests::n7::u64::public_api::align ... ignored
test tests::n7::u64::public_api::fill ... ignored
test tests::n7::u64::public_api::get_set ... ignored
test tests::n7::u64::public_api::new ... ignored
test tests::n7::u64::public_api::push_pop ... ignored
test tests::n7::u64::public_api::resize ... ignored
test tests::n7::u64::public_api::resize_large ... ignored
test tests::n7::u64::struct_static::bit_loc ... ignored
test tests::n7::u64::struct_static::block_bits ... ignored
test tests::n7::u64::struct_static::mask_ok ... ignored
test tests::n7::u64::struct_static::nbits ... ignored
test tests::n7::u64::threadsafe::new ... ignored
test tests::n7::u64::threadsafe::with_capacity ... ignored
test tests::n7::u8::private_api::get_raw_bits ... ignored
test tests::n7::u8::private_api::raw_bit ... ignored
test tests::n7::u8::private_api::raw_bits ... ignored
test tests::n7::u8::public_api::align ... ignored
test tests::n7::u8::public_api::fill ... ignored
test tests::n7::u8::public_api::get_set ... ignored
test tests::n7::u8::public_api::new ... ignored
test tests::n7::u8::public_api::push_pop ... ignored
test tests::n7::u8::public_api::resize ... ignored
test tests::n7::u8::public_api::resize_large ... ignored
test tests::n7::u8::struct_static::bit_loc ... ignored
test tests::n7::u8::struct_static::block_bits ... ignored
test tests::n7::u8::struct_static::mask_ok ... ignored
test tests::n7::u8::struct_static::nbits ... ignored
test tests::n7::u8::threadsafe::new ... ignored
test tests::n7::u8::threadsafe::with_capacity ... ignored
test result: ok. 0 passed; 0 failed; 448 ignored; 0 measured