Exemplo n.º 1
0
 public long Allocate(int normCapacity)
 {
     if (_arena.IsTinyOrSmall(normCapacity))
     {
         return(this.AllocatePage(normCapacity));
     }
     return(this.AllocateRun(normCapacity));
 }