lib/gpalloc/src/cache/root.zig

daab053ee43316e1809a84551d573ddd1e5bf3d2

 1 const local = @import("local.zig");
 2 const pointer = @import("pointer.zig");
 3 const thread = @import("thread.zig");
 4 const transfer = @import("transfer.zig");
 5 
 6 pub const thread_capacity = thread.capacity;
 7 pub const thread_extra_bin_capacity = thread.extra_bin_capacity;
 8 pub const transfer_capacity = transfer.capacity;
 9 pub const target_bytes = thread.target_bytes;
10 pub const transfer_target_bytes = transfer.target_bytes;
11 pub const refill_max = thread.refill_max;
12 pub const thread_tight_class_size = thread.tight_class_size;
13 pub const thread_tight_class_capacity = thread.tight_class_capacity;
14 pub const thread_preload_class_size = thread.preload_class_size;
15 pub const thread_preload_class_refill_max = thread.preload_class_refill_max;
16 pub const thread_extra_class_sizes = thread.extra_class_sizes;
17 pub const thread_extra_class_capacities = thread.extra_class_capacities;
18 pub const thread_extra_class_count = thread.extra_class_count;
19 pub const thread_extra_class_refill_max = thread.extra_class_refill_max;
20 pub const thread_fixed_class_count = thread.fixed_class_count;
21 
22 pub const PointerBin = pointer.PointerBin;
23 pub const ThreadCache = local.ThreadCache;
24 pub const cpuCountThreadCacheActiveLimit = local.cpuCountThreadCacheActiveLimit;
25 pub const defaultThreadCacheActiveLimit = local.defaultThreadCacheActiveLimit;
26 pub const loadThreadCache = local.loadThreadCache;
27 pub const loadThreadCacheForAllocFastPath = local.loadThreadCacheForAllocFastPath;
28 pub const loadThreadCacheForSmallFastPath = local.loadThreadCacheForSmallFastPath;
29 pub const localThreadCacheBinCount = local.localThreadCacheBinCount;
30 pub const popLocalThreadCacheBin = local.popLocalThreadCacheBin;
31 pub const pushLocalThreadCacheBin = local.pushLocalThreadCacheBin;
32 pub const storeThreadCache = local.storeThreadCache;
33 pub const threadClassLimit = thread.classLimit;
34 pub const threadDrainCount = thread.drainCount;
35 pub const threadExtraCapacity = thread.extraCapacity;
36 pub const threadExtraClassIndex = thread.extraClassIndex;
37 pub const threadRefillCount = thread.refillCount;
38 pub const transferClassLimit = transfer.classLimit;