gitextract_gm5xlq0e/ ├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── build.cmd ├── jemalloc.Api/ │ ├── Buffer.cs │ ├── BufferHelpers.cs │ ├── Extensions/ │ │ └── TypeExtensions.cs │ ├── ExtentHooks.cs │ ├── FixedBuffer.cs │ ├── FixedBufferAllocation.cs │ ├── FixedBufferEnumerator.cs │ ├── GDI.cs │ ├── GenericMath.cs │ ├── HugeArray.cs │ ├── HugeBuffer.cs │ ├── HugeBufferEnumerator.cs │ ├── IBufferAllocation.cs │ ├── JemApi.cs │ ├── JemPinnable.cs │ ├── JemUtil.cs │ ├── MemoryRef.cs │ ├── NDArray.cs │ ├── SafeArray.cs │ ├── SafeBuffer.cs │ ├── SafeBufferEnumerator.cs │ ├── Utf8Buffer.cs │ ├── jemalloc.Api.csproj │ └── jemalloc.cs ├── jemalloc.Benchmarks/ │ ├── BenchmarkStatisticColumn.cs │ ├── Benchmarks/ │ │ ├── FixedBufferVsManagedArray.cs │ │ ├── HugeNativeVsManagedArray.cs │ │ ├── MallocVsArray.cs │ │ ├── SafeVsManagedArray.cs │ │ └── Vector.cs │ ├── Design.md │ ├── JemBenchmark.cs │ ├── JemBenchmarkAttribute.cs │ ├── JemBenchmarkJobAttribute.cs │ ├── JemBenchmarkParam.cs │ ├── JemStatisticColumn.cs │ ├── ProcessStatisticColumn.cs │ ├── TestUDT.cs │ └── jemalloc.Benchmarks.csproj ├── jemalloc.Bindings/ │ ├── App.config │ ├── JemallocLibrary.cs │ ├── Program.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── jemalloc-win-msvc.h │ ├── jemalloc.Bindings.csproj │ └── packages.config ├── jemalloc.Buffers/ │ ├── JemPinnable.cs │ ├── NativeHelpers.cs │ ├── NativeMemory.cs │ └── jemalloc.Buffers.csproj ├── jemalloc.Cli/ │ ├── Options.cs │ ├── Program.cs │ ├── Properties/ │ │ └── PublishProfiles/ │ │ └── ReleaseProfile.pubxml │ └── jemalloc.Cli.csproj ├── jemalloc.Examples/ │ ├── TestUDT.cs │ └── jemalloc.Examples.csproj ├── jemalloc.NET.sln ├── jemalloc.StressTests/ │ ├── FixedBufferStressTests.cs │ └── jemalloc.StressTests.csproj ├── jemalloc.Tests/ │ ├── BufferTests.cs │ ├── FixedBufferTests.cs │ ├── HugeArrayTests.cs │ ├── MallCtlTests.cs │ ├── MallocConfTests.cs │ ├── MallocMessageTests.cs │ ├── MallocTests.cs │ ├── SafeArrayTests.cs │ ├── UDTTests.cs │ ├── Utf8BufferTests.cs │ ├── VectorTests.cs │ ├── jemalloc.Tests.csproj │ └── jemallocTest.cs └── jembench.cmd