Fix performance of multiple same size allocations.

It was found that keeping just a few allocations of the same size around
(even up to only 3) increases the allocation time significantly. This
appears to be because I set the minimum tcache entries to 1. Removing this
and the performance comes mostly all of the way back. There is still
some loss, but probably just due to a different bin layout than jemalloc
4.x.

This does increase the PSS slightly for many processes. About 1MB
in my trace runs. However, it increases the performance of most
multiple allocations by a factor of three.

Bug: 129743239

Test: Ran memory_replay on all traces.
Test: Ran new bionic benchmarks to verify things get better.
Change-Id: Iff41d5b5002919c4df03fcb7d742e501f9e38b8e
1 file changed