├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode └── settings.json ├── Cargo.toml ├── LICENSE_1_0.txt ├── README.md ├── benches ├── bench.rs ├── bench_generic.rs ├── bench_tools.rs └── criterion │ ├── allocation │ ├── crate 'object-pool' │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── crate 'sharded-slab' │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── linear object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── mutex object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── none object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── report │ │ ├── index.html │ │ └── violin.svg │ └── spin_lock object poll │ │ ├── base │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ ├── new │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ └── report │ │ ├── MAD.svg │ │ ├── SD.svg │ │ ├── index.html │ │ ├── mean.svg │ │ ├── median.svg │ │ ├── pdf.svg │ │ ├── pdf_small.svg │ │ ├── regression.svg │ │ ├── regression_small.svg │ │ ├── slope.svg │ │ └── typical.svg │ ├── forward msg from pull (nb_writter_1 nb_readder_1) │ ├── crate 'sharded-slab' │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── linear object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── mutex object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── none object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── report │ │ ├── index.html │ │ └── violin.svg │ └── spin_lock object poll │ │ ├── base │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ ├── new │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ └── report │ │ ├── MAD.svg │ │ ├── SD.svg │ │ ├── index.html │ │ ├── mean.svg │ │ ├── median.svg │ │ ├── pdf.svg │ │ ├── pdf_small.svg │ │ ├── regression.svg │ │ ├── regression_small.svg │ │ ├── slope.svg │ │ └── typical.svg │ ├── forward msg from pull (nb_writter_1 nb_readder_5) │ ├── crate 'sharded-slab' │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── linear object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── mutex object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── none object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── report │ │ ├── index.html │ │ └── violin.svg │ └── spin_lock object poll │ │ ├── base │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ ├── new │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ └── report │ │ ├── MAD.svg │ │ ├── SD.svg │ │ ├── index.html │ │ ├── mean.svg │ │ ├── median.svg │ │ ├── pdf.svg │ │ ├── pdf_small.svg │ │ ├── regression.svg │ │ ├── regression_small.svg │ │ ├── slope.svg │ │ └── typical.svg │ ├── forward msg from pull (nb_writter_5 nb_readder_1) │ ├── crate 'sharded-slab' │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── linear object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── mutex object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── none object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── report │ │ ├── index.html │ │ └── violin.svg │ └── spin_lock object poll │ │ ├── base │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ ├── new │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ └── report │ │ ├── MAD.svg │ │ ├── SD.svg │ │ ├── index.html │ │ ├── mean.svg │ │ ├── median.svg │ │ ├── pdf.svg │ │ ├── pdf_small.svg │ │ ├── regression.svg │ │ ├── regression_small.svg │ │ ├── slope.svg │ │ └── typical.svg │ ├── forward msg from pull (nb_writter_5 nb_readder_5) │ ├── crate 'sharded-slab' │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── linear object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── mutex object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── none object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── report │ │ ├── index.html │ │ └── violin.svg │ └── spin_lock object poll │ │ ├── base │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ ├── new │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ └── report │ │ ├── MAD.svg │ │ ├── SD.svg │ │ ├── index.html │ │ ├── mean.svg │ │ ├── median.svg │ │ ├── pdf.svg │ │ ├── pdf_small.svg │ │ ├── regression.svg │ │ ├── regression_small.svg │ │ ├── slope.svg │ │ └── typical.svg │ ├── free │ ├── crate 'object-pool' │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── crate 'sharded-slab' │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── linear object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── mutex object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── none object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── report │ │ ├── index.html │ │ └── violin.svg │ └── spin_lock object poll │ │ ├── base │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ ├── new │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ └── report │ │ ├── MAD.svg │ │ ├── SD.svg │ │ ├── index.html │ │ ├── mean.svg │ │ ├── median.svg │ │ ├── pdf.svg │ │ ├── pdf_small.svg │ │ ├── regression.svg │ │ ├── regression_small.svg │ │ ├── slope.svg │ │ └── typical.svg │ ├── multi thread allocation │ ├── crate 'object-pool' │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── crate 'sharded-slab' │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── linear object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── mutex object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── none object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── report │ │ ├── index.html │ │ └── violin.svg │ └── spin_lock object poll │ │ ├── base │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ ├── new │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ └── report │ │ ├── MAD.svg │ │ ├── SD.svg │ │ ├── index.html │ │ ├── mean.svg │ │ ├── median.svg │ │ ├── pdf.svg │ │ ├── pdf_small.svg │ │ ├── regression.svg │ │ ├── regression_small.svg │ │ ├── slope.svg │ │ └── typical.svg │ ├── multi thread free │ ├── crate 'object-pool' │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── crate 'sharded-slab' │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── linear object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── mutex object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── none object poll │ │ ├── base │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ ├── new │ │ │ ├── benchmark.json │ │ │ ├── estimates.json │ │ │ ├── sample.json │ │ │ └── tukey.json │ │ └── report │ │ │ ├── MAD.svg │ │ │ ├── SD.svg │ │ │ ├── index.html │ │ │ ├── mean.svg │ │ │ ├── median.svg │ │ │ ├── pdf.svg │ │ │ ├── pdf_small.svg │ │ │ ├── regression.svg │ │ │ ├── regression_small.svg │ │ │ ├── slope.svg │ │ │ └── typical.svg │ ├── report │ │ ├── index.html │ │ └── violin.svg │ └── spin_lock object poll │ │ ├── base │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ ├── new │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ │ └── report │ │ ├── MAD.svg │ │ ├── SD.svg │ │ ├── index.html │ │ ├── mean.svg │ │ ├── median.svg │ │ ├── pdf.svg │ │ ├── pdf_small.svg │ │ ├── regression.svg │ │ ├── regression_small.svg │ │ ├── slope.svg │ │ └── typical.svg │ ├── report │ └── index.html │ └── reuse │ ├── crate 'object-pool' │ ├── base │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ ├── new │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ └── report │ │ ├── MAD.svg │ │ ├── SD.svg │ │ ├── index.html │ │ ├── iteration_times.svg │ │ ├── iteration_times_small.svg │ │ ├── mean.svg │ │ ├── median.svg │ │ ├── pdf.svg │ │ ├── pdf_small.svg │ │ └── typical.svg │ ├── linear object poll │ ├── base │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ ├── new │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ └── report │ │ ├── MAD.svg │ │ ├── SD.svg │ │ ├── index.html │ │ ├── iteration_times.svg │ │ ├── iteration_times_small.svg │ │ ├── mean.svg │ │ ├── median.svg │ │ ├── pdf.svg │ │ ├── pdf_small.svg │ │ └── typical.svg │ ├── mutex object poll │ ├── base │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ ├── new │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ └── report │ │ ├── MAD.svg │ │ ├── SD.svg │ │ ├── index.html │ │ ├── iteration_times.svg │ │ ├── iteration_times_small.svg │ │ ├── mean.svg │ │ ├── median.svg │ │ ├── pdf.svg │ │ ├── pdf_small.svg │ │ └── typical.svg │ ├── none object poll │ ├── base │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ ├── new │ │ ├── benchmark.json │ │ ├── estimates.json │ │ ├── sample.json │ │ └── tukey.json │ └── report │ │ ├── MAD.svg │ │ ├── SD.svg │ │ ├── index.html │ │ ├── mean.svg │ │ ├── median.svg │ │ ├── pdf.svg │ │ ├── pdf_small.svg │ │ ├── regression.svg │ │ ├── regression_small.svg │ │ ├── slope.svg │ │ └── typical.svg │ ├── report │ ├── index.html │ └── violin.svg │ └── spin_lock object poll │ ├── base │ ├── benchmark.json │ ├── estimates.json │ ├── sample.json │ └── tukey.json │ ├── new │ ├── benchmark.json │ ├── estimates.json │ ├── sample.json │ └── tukey.json │ └── report │ ├── MAD.svg │ ├── SD.svg │ ├── index.html │ ├── iteration_times.svg │ ├── iteration_times_small.svg │ ├── mean.svg │ ├── median.svg │ ├── pdf.svg │ ├── pdf_small.svg │ └── typical.svg ├── src ├── lib.rs ├── linear_object_pool.rs ├── linear_owned_reusable.rs ├── linear_page.rs ├── linear_reusable.rs ├── mutex_object_pool.rs ├── mutex_owned_reusable.rs ├── mutex_reusable.rs ├── none_object_pool.rs ├── none_reusable.rs ├── page.rs ├── spin_lock.rs ├── spin_lock_object_pool.rs ├── spin_lock_owned_reusable.rs └── spin_lock_reusable.rs └── tests ├── test_generic.rs ├── test_linear.rs ├── test_mutex.rs ├── test_none.rs └── test_spin_lock.rs /.gitattributes: -------------------------------------------------------------------------------- 1 | benches/criterion/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/LICENSE_1_0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/README.md -------------------------------------------------------------------------------- /benches/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/bench.rs -------------------------------------------------------------------------------- /benches/bench_generic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/bench_generic.rs -------------------------------------------------------------------------------- /benches/bench_tools.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/bench_tools.rs -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/report/index.html -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'object-pool'/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'object-pool'/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/report/index.html -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/crate 'sharded-slab'/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/crate 'sharded-slab'/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/linear object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/linear object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/mutex object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/mutex object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/none object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/none object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/report/index.html -------------------------------------------------------------------------------- /benches/criterion/allocation/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/report/violin.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/allocation/spin_lock object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/allocation/spin_lock object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/linear object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/linear object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/linear object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/linear object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/linear object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/linear object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/linear object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/linear object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/mutex object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/none object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/report/index.html -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_1)/report/violin.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/linear object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/linear object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/linear object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/linear object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/linear object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/linear object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/linear object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/linear object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/mutex object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/none object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/report/index.html -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_1 nb_readder_5)/report/violin.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/linear object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/linear object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/linear object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/linear object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/linear object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/linear object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/linear object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/linear object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/mutex object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/none object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/report/index.html -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_1)/report/violin.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/linear object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/linear object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/linear object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/linear object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/linear object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/linear object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/linear object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/linear object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/mutex object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/mutex object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/none object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/none object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/report/index.html -------------------------------------------------------------------------------- /benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/forward msg from pull (nb_writter_5 nb_readder_5)/report/violin.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/report/index.html -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'object-pool'/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'object-pool'/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/report/index.html -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/free/crate 'sharded-slab'/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/crate 'sharded-slab'/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/free/linear object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/linear object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/free/mutex object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/mutex object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/free/none object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/none object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/free/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/report/index.html -------------------------------------------------------------------------------- /benches/criterion/free/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/report/violin.svg -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/free/spin_lock object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/free/spin_lock object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'object-pool'/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'object-pool'/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/crate 'sharded-slab'/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/crate 'sharded-slab'/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/linear object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/linear object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/mutex object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/mutex object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/none object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/none object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/report/violin.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread allocation/spin_lock object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread allocation/spin_lock object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'object-pool'/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'object-pool'/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/crate 'sharded-slab'/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/crate 'sharded-slab'/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/linear object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/linear object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/mutex object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/mutex object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/none object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/none object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread free/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/report/violin.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/multi thread free/spin_lock object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/multi thread free/spin_lock object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/report/index.html -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/report/index.html -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/report/iteration_times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/report/iteration_times.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/report/iteration_times_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/report/iteration_times_small.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/crate 'object-pool'/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/crate 'object-pool'/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/report/iteration_times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/report/iteration_times.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/report/iteration_times_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/report/iteration_times_small.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/linear object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/linear object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/report/iteration_times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/report/iteration_times.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/report/iteration_times_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/report/iteration_times_small.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/mutex object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/mutex object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/report/regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/report/regression.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/report/regression_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/report/regression_small.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/report/slope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/report/slope.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/none object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/none object poll/report/typical.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/report/index.html -------------------------------------------------------------------------------- /benches/criterion/reuse/report/violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/report/violin.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/base/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/base/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/base/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/base/estimates.json -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/base/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/base/sample.json -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/base/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/base/tukey.json -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/new/benchmark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/new/benchmark.json -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/new/estimates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/new/estimates.json -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/new/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/new/sample.json -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/new/tukey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/new/tukey.json -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/report/MAD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/report/MAD.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/report/SD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/report/SD.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/report/index.html -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/report/iteration_times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/report/iteration_times.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/report/iteration_times_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/report/iteration_times_small.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/report/mean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/report/mean.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/report/median.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/report/median.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/report/pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/report/pdf.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/report/pdf_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/report/pdf_small.svg -------------------------------------------------------------------------------- /benches/criterion/reuse/spin_lock object poll/report/typical.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/benches/criterion/reuse/spin_lock object poll/report/typical.svg -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/linear_object_pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/linear_object_pool.rs -------------------------------------------------------------------------------- /src/linear_owned_reusable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/linear_owned_reusable.rs -------------------------------------------------------------------------------- /src/linear_page.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/linear_page.rs -------------------------------------------------------------------------------- /src/linear_reusable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/linear_reusable.rs -------------------------------------------------------------------------------- /src/mutex_object_pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/mutex_object_pool.rs -------------------------------------------------------------------------------- /src/mutex_owned_reusable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/mutex_owned_reusable.rs -------------------------------------------------------------------------------- /src/mutex_reusable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/mutex_reusable.rs -------------------------------------------------------------------------------- /src/none_object_pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/none_object_pool.rs -------------------------------------------------------------------------------- /src/none_reusable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/none_reusable.rs -------------------------------------------------------------------------------- /src/page.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/page.rs -------------------------------------------------------------------------------- /src/spin_lock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/spin_lock.rs -------------------------------------------------------------------------------- /src/spin_lock_object_pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/spin_lock_object_pool.rs -------------------------------------------------------------------------------- /src/spin_lock_owned_reusable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/spin_lock_owned_reusable.rs -------------------------------------------------------------------------------- /src/spin_lock_reusable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/src/spin_lock_reusable.rs -------------------------------------------------------------------------------- /tests/test_generic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/tests/test_generic.rs -------------------------------------------------------------------------------- /tests/test_linear.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/tests/test_linear.rs -------------------------------------------------------------------------------- /tests/test_mutex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/tests/test_mutex.rs -------------------------------------------------------------------------------- /tests/test_none.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/tests/test_none.rs -------------------------------------------------------------------------------- /tests/test_spin_lock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EVaillant/lockfree-object-pool/HEAD/tests/test_spin_lock.rs --------------------------------------------------------------------------------