lin
2025-08-01 633231e833e21d5b8b1c00cb15aedb62b3b78e8f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
#define    a0dalloc JEMALLOC_N(a0dalloc)
#define    a0get JEMALLOC_N(a0get)
#define    a0malloc JEMALLOC_N(a0malloc)
#define    arena_aalloc JEMALLOC_N(arena_aalloc)
#define    arena_alloc_junk_small JEMALLOC_N(arena_alloc_junk_small)
#define    arena_basic_stats_merge JEMALLOC_N(arena_basic_stats_merge)
#define    arena_bin_index JEMALLOC_N(arena_bin_index)
#define    arena_bin_info JEMALLOC_N(arena_bin_info)
#define    arena_bitselm_get_const JEMALLOC_N(arena_bitselm_get_const)
#define    arena_bitselm_get_mutable JEMALLOC_N(arena_bitselm_get_mutable)
#define    arena_boot JEMALLOC_N(arena_boot)
#define    arena_choose JEMALLOC_N(arena_choose)
#define    arena_choose_hard JEMALLOC_N(arena_choose_hard)
#define    arena_choose_impl JEMALLOC_N(arena_choose_impl)
#define    arena_chunk_alloc_huge JEMALLOC_N(arena_chunk_alloc_huge)
#define    arena_chunk_cache_maybe_insert JEMALLOC_N(arena_chunk_cache_maybe_insert)
#define    arena_chunk_cache_maybe_remove JEMALLOC_N(arena_chunk_cache_maybe_remove)
#define    arena_chunk_dalloc_huge JEMALLOC_N(arena_chunk_dalloc_huge)
#define    arena_chunk_ralloc_huge_expand JEMALLOC_N(arena_chunk_ralloc_huge_expand)
#define    arena_chunk_ralloc_huge_shrink JEMALLOC_N(arena_chunk_ralloc_huge_shrink)
#define    arena_chunk_ralloc_huge_similar JEMALLOC_N(arena_chunk_ralloc_huge_similar)
#define    arena_cleanup JEMALLOC_N(arena_cleanup)
#define    arena_dalloc JEMALLOC_N(arena_dalloc)
#define    arena_dalloc_bin JEMALLOC_N(arena_dalloc_bin)
#define    arena_dalloc_bin_junked_locked JEMALLOC_N(arena_dalloc_bin_junked_locked)
#define    arena_dalloc_junk_large JEMALLOC_N(arena_dalloc_junk_large)
#define    arena_dalloc_junk_small JEMALLOC_N(arena_dalloc_junk_small)
#define    arena_dalloc_large JEMALLOC_N(arena_dalloc_large)
#define    arena_dalloc_large_junked_locked JEMALLOC_N(arena_dalloc_large_junked_locked)
#define    arena_dalloc_small JEMALLOC_N(arena_dalloc_small)
#define    arena_decay_tick JEMALLOC_N(arena_decay_tick)
#define    arena_decay_ticks JEMALLOC_N(arena_decay_ticks)
#define    arena_decay_time_default_get JEMALLOC_N(arena_decay_time_default_get)
#define    arena_decay_time_default_set JEMALLOC_N(arena_decay_time_default_set)
#define    arena_decay_time_get JEMALLOC_N(arena_decay_time_get)
#define    arena_decay_time_set JEMALLOC_N(arena_decay_time_set)
#define    arena_dss_prec_get JEMALLOC_N(arena_dss_prec_get)
#define    arena_dss_prec_set JEMALLOC_N(arena_dss_prec_set)
#define    arena_extent_sn_next JEMALLOC_N(arena_extent_sn_next)
#define    arena_get JEMALLOC_N(arena_get)
#define    arena_ichoose JEMALLOC_N(arena_ichoose)
#define    arena_init JEMALLOC_N(arena_init)
#define    arena_lg_dirty_mult_default_get JEMALLOC_N(arena_lg_dirty_mult_default_get)
#define    arena_lg_dirty_mult_default_set JEMALLOC_N(arena_lg_dirty_mult_default_set)
#define    arena_lg_dirty_mult_get JEMALLOC_N(arena_lg_dirty_mult_get)
#define    arena_lg_dirty_mult_set JEMALLOC_N(arena_lg_dirty_mult_set)
#define    arena_malloc JEMALLOC_N(arena_malloc)
#define    arena_malloc_hard JEMALLOC_N(arena_malloc_hard)
#define    arena_malloc_large JEMALLOC_N(arena_malloc_large)
#define    arena_mapbits_allocated_get JEMALLOC_N(arena_mapbits_allocated_get)
#define    arena_mapbits_binind_get JEMALLOC_N(arena_mapbits_binind_get)
#define    arena_mapbits_decommitted_get JEMALLOC_N(arena_mapbits_decommitted_get)
#define    arena_mapbits_dirty_get JEMALLOC_N(arena_mapbits_dirty_get)
#define    arena_mapbits_get JEMALLOC_N(arena_mapbits_get)
#define    arena_mapbits_internal_set JEMALLOC_N(arena_mapbits_internal_set)
#define    arena_mapbits_large_binind_set JEMALLOC_N(arena_mapbits_large_binind_set)
#define    arena_mapbits_large_get JEMALLOC_N(arena_mapbits_large_get)
#define    arena_mapbits_large_set JEMALLOC_N(arena_mapbits_large_set)
#define    arena_mapbits_large_size_get JEMALLOC_N(arena_mapbits_large_size_get)
#define    arena_mapbits_size_decode JEMALLOC_N(arena_mapbits_size_decode)
#define    arena_mapbits_size_encode JEMALLOC_N(arena_mapbits_size_encode)
#define    arena_mapbits_small_runind_get JEMALLOC_N(arena_mapbits_small_runind_get)
#define    arena_mapbits_small_set JEMALLOC_N(arena_mapbits_small_set)
#define    arena_mapbits_unallocated_set JEMALLOC_N(arena_mapbits_unallocated_set)
#define    arena_mapbits_unallocated_size_get JEMALLOC_N(arena_mapbits_unallocated_size_get)
#define    arena_mapbits_unallocated_size_set JEMALLOC_N(arena_mapbits_unallocated_size_set)
#define    arena_mapbits_unzeroed_get JEMALLOC_N(arena_mapbits_unzeroed_get)
#define    arena_mapbitsp_get_const JEMALLOC_N(arena_mapbitsp_get_const)
#define    arena_mapbitsp_get_mutable JEMALLOC_N(arena_mapbitsp_get_mutable)
#define    arena_mapbitsp_read JEMALLOC_N(arena_mapbitsp_read)
#define    arena_mapbitsp_write JEMALLOC_N(arena_mapbitsp_write)
#define    arena_maxrun JEMALLOC_N(arena_maxrun)
#define    arena_maybe_purge JEMALLOC_N(arena_maybe_purge)
#define    arena_metadata_allocated_add JEMALLOC_N(arena_metadata_allocated_add)
#define    arena_metadata_allocated_get JEMALLOC_N(arena_metadata_allocated_get)
#define    arena_metadata_allocated_sub JEMALLOC_N(arena_metadata_allocated_sub)
#define    arena_migrate JEMALLOC_N(arena_migrate)
#define    arena_miscelm_get_const JEMALLOC_N(arena_miscelm_get_const)
#define    arena_miscelm_get_mutable JEMALLOC_N(arena_miscelm_get_mutable)
#define    arena_miscelm_to_pageind JEMALLOC_N(arena_miscelm_to_pageind)
#define    arena_miscelm_to_rpages JEMALLOC_N(arena_miscelm_to_rpages)
#define    arena_new JEMALLOC_N(arena_new)
#define    arena_node_alloc JEMALLOC_N(arena_node_alloc)
#define    arena_node_dalloc JEMALLOC_N(arena_node_dalloc)
#define    arena_nthreads_dec JEMALLOC_N(arena_nthreads_dec)
#define    arena_nthreads_get JEMALLOC_N(arena_nthreads_get)
#define    arena_nthreads_inc JEMALLOC_N(arena_nthreads_inc)
#define    arena_palloc JEMALLOC_N(arena_palloc)
#define    arena_postfork_child JEMALLOC_N(arena_postfork_child)
#define    arena_postfork_parent JEMALLOC_N(arena_postfork_parent)
#define    arena_prefork0 JEMALLOC_N(arena_prefork0)
#define    arena_prefork1 JEMALLOC_N(arena_prefork1)
#define    arena_prefork2 JEMALLOC_N(arena_prefork2)
#define    arena_prefork3 JEMALLOC_N(arena_prefork3)
#define    arena_prof_accum JEMALLOC_N(arena_prof_accum)
#define    arena_prof_accum_impl JEMALLOC_N(arena_prof_accum_impl)
#define    arena_prof_accum_locked JEMALLOC_N(arena_prof_accum_locked)
#define    arena_prof_promoted JEMALLOC_N(arena_prof_promoted)
#define    arena_prof_tctx_get JEMALLOC_N(arena_prof_tctx_get)
#define    arena_prof_tctx_reset JEMALLOC_N(arena_prof_tctx_reset)
#define    arena_prof_tctx_set JEMALLOC_N(arena_prof_tctx_set)
#define    arena_ptr_small_binind_get JEMALLOC_N(arena_ptr_small_binind_get)
#define    arena_purge JEMALLOC_N(arena_purge)
#define    arena_quarantine_junk_small JEMALLOC_N(arena_quarantine_junk_small)
#define    arena_ralloc JEMALLOC_N(arena_ralloc)
#define    arena_ralloc_junk_large JEMALLOC_N(arena_ralloc_junk_large)
#define    arena_ralloc_no_move JEMALLOC_N(arena_ralloc_no_move)
#define    arena_rd_to_miscelm JEMALLOC_N(arena_rd_to_miscelm)
#define    arena_redzone_corruption JEMALLOC_N(arena_redzone_corruption)
#define    arena_reset JEMALLOC_N(arena_reset)
#define    arena_run_regind JEMALLOC_N(arena_run_regind)
#define    arena_run_to_miscelm JEMALLOC_N(arena_run_to_miscelm)
#define    arena_salloc JEMALLOC_N(arena_salloc)
#define    arena_sdalloc JEMALLOC_N(arena_sdalloc)
#define    arena_stats_merge JEMALLOC_N(arena_stats_merge)
#define    arena_tcache_fill_small JEMALLOC_N(arena_tcache_fill_small)
#define    arena_tdata_get JEMALLOC_N(arena_tdata_get)
#define    arena_tdata_get_hard JEMALLOC_N(arena_tdata_get_hard)
#define    arenas JEMALLOC_N(arenas)
#define    arenas_tdata_bypass_cleanup JEMALLOC_N(arenas_tdata_bypass_cleanup)
#define    arenas_tdata_cleanup JEMALLOC_N(arenas_tdata_cleanup)
#define    atomic_add_p JEMALLOC_N(atomic_add_p)
#define    atomic_add_u JEMALLOC_N(atomic_add_u)
#define    atomic_add_uint32 JEMALLOC_N(atomic_add_uint32)
#define    atomic_add_uint64 JEMALLOC_N(atomic_add_uint64)
#define    atomic_add_z JEMALLOC_N(atomic_add_z)
#define    atomic_cas_p JEMALLOC_N(atomic_cas_p)
#define    atomic_cas_u JEMALLOC_N(atomic_cas_u)
#define    atomic_cas_uint32 JEMALLOC_N(atomic_cas_uint32)
#define    atomic_cas_uint64 JEMALLOC_N(atomic_cas_uint64)
#define    atomic_cas_z JEMALLOC_N(atomic_cas_z)
#define    atomic_sub_p JEMALLOC_N(atomic_sub_p)
#define    atomic_sub_u JEMALLOC_N(atomic_sub_u)
#define    atomic_sub_uint32 JEMALLOC_N(atomic_sub_uint32)
#define    atomic_sub_uint64 JEMALLOC_N(atomic_sub_uint64)
#define    atomic_sub_z JEMALLOC_N(atomic_sub_z)
#define    atomic_write_p JEMALLOC_N(atomic_write_p)
#define    atomic_write_u JEMALLOC_N(atomic_write_u)
#define    atomic_write_uint32 JEMALLOC_N(atomic_write_uint32)
#define    atomic_write_uint64 JEMALLOC_N(atomic_write_uint64)
#define    atomic_write_z JEMALLOC_N(atomic_write_z)
#define    base_alloc JEMALLOC_N(base_alloc)
#define    base_boot JEMALLOC_N(base_boot)
#define    base_postfork_child JEMALLOC_N(base_postfork_child)
#define    base_postfork_parent JEMALLOC_N(base_postfork_parent)
#define    base_prefork JEMALLOC_N(base_prefork)
#define    base_stats_get JEMALLOC_N(base_stats_get)
#define    bitmap_full JEMALLOC_N(bitmap_full)
#define    bitmap_get JEMALLOC_N(bitmap_get)
#define    bitmap_info_init JEMALLOC_N(bitmap_info_init)
#define    bitmap_init JEMALLOC_N(bitmap_init)
#define    bitmap_set JEMALLOC_N(bitmap_set)
#define    bitmap_sfu JEMALLOC_N(bitmap_sfu)
#define    bitmap_size JEMALLOC_N(bitmap_size)
#define    bitmap_unset JEMALLOC_N(bitmap_unset)
#define    bootstrap_calloc JEMALLOC_N(bootstrap_calloc)
#define    bootstrap_free JEMALLOC_N(bootstrap_free)
#define    bootstrap_malloc JEMALLOC_N(bootstrap_malloc)
#define    bt_init JEMALLOC_N(bt_init)
#define    buferror JEMALLOC_N(buferror)
#define    chunk_alloc_base JEMALLOC_N(chunk_alloc_base)
#define    chunk_alloc_cache JEMALLOC_N(chunk_alloc_cache)
#define    chunk_alloc_dss JEMALLOC_N(chunk_alloc_dss)
#define    chunk_alloc_mmap JEMALLOC_N(chunk_alloc_mmap)
#define    chunk_alloc_wrapper JEMALLOC_N(chunk_alloc_wrapper)
#define    chunk_boot JEMALLOC_N(chunk_boot)
#define    chunk_dalloc_cache JEMALLOC_N(chunk_dalloc_cache)
#define    chunk_dalloc_mmap JEMALLOC_N(chunk_dalloc_mmap)
#define    chunk_dalloc_wrapper JEMALLOC_N(chunk_dalloc_wrapper)
#define    chunk_deregister JEMALLOC_N(chunk_deregister)
#define    chunk_dss_boot JEMALLOC_N(chunk_dss_boot)
#define    chunk_dss_mergeable JEMALLOC_N(chunk_dss_mergeable)
#define    chunk_dss_prec_get JEMALLOC_N(chunk_dss_prec_get)
#define    chunk_dss_prec_set JEMALLOC_N(chunk_dss_prec_set)
#define    chunk_hooks_default JEMALLOC_N(chunk_hooks_default)
#define    chunk_hooks_get JEMALLOC_N(chunk_hooks_get)
#define    chunk_hooks_set JEMALLOC_N(chunk_hooks_set)
#define    chunk_in_dss JEMALLOC_N(chunk_in_dss)
#define    chunk_lookup JEMALLOC_N(chunk_lookup)
#define    chunk_npages JEMALLOC_N(chunk_npages)
#define    chunk_purge_wrapper JEMALLOC_N(chunk_purge_wrapper)
#define    chunk_register JEMALLOC_N(chunk_register)
#define    chunks_rtree JEMALLOC_N(chunks_rtree)
#define    chunksize JEMALLOC_N(chunksize)
#define    chunksize_mask JEMALLOC_N(chunksize_mask)
#define    ckh_count JEMALLOC_N(ckh_count)
#define    ckh_delete JEMALLOC_N(ckh_delete)
#define    ckh_insert JEMALLOC_N(ckh_insert)
#define    ckh_iter JEMALLOC_N(ckh_iter)
#define    ckh_new JEMALLOC_N(ckh_new)
#define    ckh_pointer_hash JEMALLOC_N(ckh_pointer_hash)
#define    ckh_pointer_keycomp JEMALLOC_N(ckh_pointer_keycomp)
#define    ckh_remove JEMALLOC_N(ckh_remove)
#define    ckh_search JEMALLOC_N(ckh_search)
#define    ckh_string_hash JEMALLOC_N(ckh_string_hash)
#define    ckh_string_keycomp JEMALLOC_N(ckh_string_keycomp)
#define    ctl_boot JEMALLOC_N(ctl_boot)
#define    ctl_bymib JEMALLOC_N(ctl_bymib)
#define    ctl_byname JEMALLOC_N(ctl_byname)
#define    ctl_nametomib JEMALLOC_N(ctl_nametomib)
#define    ctl_postfork_child JEMALLOC_N(ctl_postfork_child)
#define    ctl_postfork_parent JEMALLOC_N(ctl_postfork_parent)
#define    ctl_prefork JEMALLOC_N(ctl_prefork)
#define    decay_ticker_get JEMALLOC_N(decay_ticker_get)
#define    dss_prec_names JEMALLOC_N(dss_prec_names)
#define    extent_node_achunk_get JEMALLOC_N(extent_node_achunk_get)
#define    extent_node_achunk_set JEMALLOC_N(extent_node_achunk_set)
#define    extent_node_addr_get JEMALLOC_N(extent_node_addr_get)
#define    extent_node_addr_set JEMALLOC_N(extent_node_addr_set)
#define    extent_node_arena_get JEMALLOC_N(extent_node_arena_get)
#define    extent_node_arena_set JEMALLOC_N(extent_node_arena_set)
#define    extent_node_committed_get JEMALLOC_N(extent_node_committed_get)
#define    extent_node_committed_set JEMALLOC_N(extent_node_committed_set)
#define    extent_node_dirty_insert JEMALLOC_N(extent_node_dirty_insert)
#define    extent_node_dirty_linkage_init JEMALLOC_N(extent_node_dirty_linkage_init)
#define    extent_node_dirty_remove JEMALLOC_N(extent_node_dirty_remove)
#define    extent_node_init JEMALLOC_N(extent_node_init)
#define    extent_node_prof_tctx_get JEMALLOC_N(extent_node_prof_tctx_get)
#define    extent_node_prof_tctx_set JEMALLOC_N(extent_node_prof_tctx_set)
#define    extent_node_size_get JEMALLOC_N(extent_node_size_get)
#define    extent_node_size_set JEMALLOC_N(extent_node_size_set)
#define    extent_node_sn_get JEMALLOC_N(extent_node_sn_get)
#define    extent_node_sn_set JEMALLOC_N(extent_node_sn_set)
#define    extent_node_zeroed_get JEMALLOC_N(extent_node_zeroed_get)
#define    extent_node_zeroed_set JEMALLOC_N(extent_node_zeroed_set)
#define    extent_tree_ad_destroy JEMALLOC_N(extent_tree_ad_destroy)
#define    extent_tree_ad_destroy_recurse JEMALLOC_N(extent_tree_ad_destroy_recurse)
#define    extent_tree_ad_empty JEMALLOC_N(extent_tree_ad_empty)
#define    extent_tree_ad_first JEMALLOC_N(extent_tree_ad_first)
#define    extent_tree_ad_insert JEMALLOC_N(extent_tree_ad_insert)
#define    extent_tree_ad_iter JEMALLOC_N(extent_tree_ad_iter)
#define    extent_tree_ad_iter_recurse JEMALLOC_N(extent_tree_ad_iter_recurse)
#define    extent_tree_ad_iter_start JEMALLOC_N(extent_tree_ad_iter_start)
#define    extent_tree_ad_last JEMALLOC_N(extent_tree_ad_last)
#define    extent_tree_ad_new JEMALLOC_N(extent_tree_ad_new)
#define    extent_tree_ad_next JEMALLOC_N(extent_tree_ad_next)
#define    extent_tree_ad_nsearch JEMALLOC_N(extent_tree_ad_nsearch)
#define    extent_tree_ad_prev JEMALLOC_N(extent_tree_ad_prev)
#define    extent_tree_ad_psearch JEMALLOC_N(extent_tree_ad_psearch)
#define    extent_tree_ad_remove JEMALLOC_N(extent_tree_ad_remove)
#define    extent_tree_ad_reverse_iter JEMALLOC_N(extent_tree_ad_reverse_iter)
#define    extent_tree_ad_reverse_iter_recurse JEMALLOC_N(extent_tree_ad_reverse_iter_recurse)
#define    extent_tree_ad_reverse_iter_start JEMALLOC_N(extent_tree_ad_reverse_iter_start)
#define    extent_tree_ad_search JEMALLOC_N(extent_tree_ad_search)
#define    extent_tree_szsnad_destroy JEMALLOC_N(extent_tree_szsnad_destroy)
#define    extent_tree_szsnad_destroy_recurse JEMALLOC_N(extent_tree_szsnad_destroy_recurse)
#define    extent_tree_szsnad_empty JEMALLOC_N(extent_tree_szsnad_empty)
#define    extent_tree_szsnad_first JEMALLOC_N(extent_tree_szsnad_first)
#define    extent_tree_szsnad_insert JEMALLOC_N(extent_tree_szsnad_insert)
#define    extent_tree_szsnad_iter JEMALLOC_N(extent_tree_szsnad_iter)
#define    extent_tree_szsnad_iter_recurse JEMALLOC_N(extent_tree_szsnad_iter_recurse)
#define    extent_tree_szsnad_iter_start JEMALLOC_N(extent_tree_szsnad_iter_start)
#define    extent_tree_szsnad_last JEMALLOC_N(extent_tree_szsnad_last)
#define    extent_tree_szsnad_new JEMALLOC_N(extent_tree_szsnad_new)
#define    extent_tree_szsnad_next JEMALLOC_N(extent_tree_szsnad_next)
#define    extent_tree_szsnad_nsearch JEMALLOC_N(extent_tree_szsnad_nsearch)
#define    extent_tree_szsnad_prev JEMALLOC_N(extent_tree_szsnad_prev)
#define    extent_tree_szsnad_psearch JEMALLOC_N(extent_tree_szsnad_psearch)
#define    extent_tree_szsnad_remove JEMALLOC_N(extent_tree_szsnad_remove)
#define    extent_tree_szsnad_reverse_iter JEMALLOC_N(extent_tree_szsnad_reverse_iter)
#define    extent_tree_szsnad_reverse_iter_recurse JEMALLOC_N(extent_tree_szsnad_reverse_iter_recurse)
#define    extent_tree_szsnad_reverse_iter_start JEMALLOC_N(extent_tree_szsnad_reverse_iter_start)
#define    extent_tree_szsnad_search JEMALLOC_N(extent_tree_szsnad_search)
#define    ffs_llu JEMALLOC_N(ffs_llu)
#define    ffs_lu JEMALLOC_N(ffs_lu)
#define    ffs_u JEMALLOC_N(ffs_u)
#define    ffs_u32 JEMALLOC_N(ffs_u32)
#define    ffs_u64 JEMALLOC_N(ffs_u64)
#define    ffs_zu JEMALLOC_N(ffs_zu)
#define    get_errno JEMALLOC_N(get_errno)
#define    hash JEMALLOC_N(hash)
#define    hash_fmix_32 JEMALLOC_N(hash_fmix_32)
#define    hash_fmix_64 JEMALLOC_N(hash_fmix_64)
#define    hash_get_block_32 JEMALLOC_N(hash_get_block_32)
#define    hash_get_block_64 JEMALLOC_N(hash_get_block_64)
#define    hash_rotl_32 JEMALLOC_N(hash_rotl_32)
#define    hash_rotl_64 JEMALLOC_N(hash_rotl_64)
#define    hash_x64_128 JEMALLOC_N(hash_x64_128)
#define    hash_x86_128 JEMALLOC_N(hash_x86_128)
#define    hash_x86_32 JEMALLOC_N(hash_x86_32)
#define    huge_aalloc JEMALLOC_N(huge_aalloc)
#define    huge_dalloc JEMALLOC_N(huge_dalloc)
#define    huge_dalloc_junk JEMALLOC_N(huge_dalloc_junk)
#define    huge_malloc JEMALLOC_N(huge_malloc)
#define    huge_palloc JEMALLOC_N(huge_palloc)
#define    huge_prof_tctx_get JEMALLOC_N(huge_prof_tctx_get)
#define    huge_prof_tctx_reset JEMALLOC_N(huge_prof_tctx_reset)
#define    huge_prof_tctx_set JEMALLOC_N(huge_prof_tctx_set)
#define    huge_ralloc JEMALLOC_N(huge_ralloc)
#define    huge_ralloc_no_move JEMALLOC_N(huge_ralloc_no_move)
#define    huge_salloc JEMALLOC_N(huge_salloc)
#define    iaalloc JEMALLOC_N(iaalloc)
#define    ialloc JEMALLOC_N(ialloc)
#define    iallocztm JEMALLOC_N(iallocztm)
#define    iarena_cleanup JEMALLOC_N(iarena_cleanup)
#define    idalloc JEMALLOC_N(idalloc)
#define    idalloctm JEMALLOC_N(idalloctm)
#define    in_valgrind JEMALLOC_N(in_valgrind)
#define    index2size JEMALLOC_N(index2size)
#define    index2size_compute JEMALLOC_N(index2size_compute)
#define    index2size_lookup JEMALLOC_N(index2size_lookup)
#define    index2size_tab JEMALLOC_N(index2size_tab)
#define    ipalloc JEMALLOC_N(ipalloc)
#define    ipalloct JEMALLOC_N(ipalloct)
#define    ipallocztm JEMALLOC_N(ipallocztm)
#define    iqalloc JEMALLOC_N(iqalloc)
#define    iralloc JEMALLOC_N(iralloc)
#define    iralloct JEMALLOC_N(iralloct)
#define    iralloct_realign JEMALLOC_N(iralloct_realign)
#define    isalloc JEMALLOC_N(isalloc)
#define    isdalloct JEMALLOC_N(isdalloct)
#define    isqalloc JEMALLOC_N(isqalloc)
#define    isthreaded JEMALLOC_N(isthreaded)
#define    ivsalloc JEMALLOC_N(ivsalloc)
#define    ixalloc JEMALLOC_N(ixalloc)
#define    jemalloc_postfork_child JEMALLOC_N(jemalloc_postfork_child)
#define    jemalloc_postfork_parent JEMALLOC_N(jemalloc_postfork_parent)
#define    jemalloc_prefork JEMALLOC_N(jemalloc_prefork)
#define    large_maxclass JEMALLOC_N(large_maxclass)
#define    lg_floor JEMALLOC_N(lg_floor)
#define    lg_prof_sample JEMALLOC_N(lg_prof_sample)
#define    malloc_cprintf JEMALLOC_N(malloc_cprintf)
#define    malloc_mutex_assert_not_owner JEMALLOC_N(malloc_mutex_assert_not_owner)
#define    malloc_mutex_assert_owner JEMALLOC_N(malloc_mutex_assert_owner)
#define    malloc_mutex_boot JEMALLOC_N(malloc_mutex_boot)
#define    malloc_mutex_init JEMALLOC_N(malloc_mutex_init)
#define    malloc_mutex_lock JEMALLOC_N(malloc_mutex_lock)
#define    malloc_mutex_postfork_child JEMALLOC_N(malloc_mutex_postfork_child)
#define    malloc_mutex_postfork_parent JEMALLOC_N(malloc_mutex_postfork_parent)
#define    malloc_mutex_prefork JEMALLOC_N(malloc_mutex_prefork)
#define    malloc_mutex_unlock JEMALLOC_N(malloc_mutex_unlock)
#define    malloc_printf JEMALLOC_N(malloc_printf)
#define    malloc_snprintf JEMALLOC_N(malloc_snprintf)
#define    malloc_strtoumax JEMALLOC_N(malloc_strtoumax)
#define    malloc_tsd_boot0 JEMALLOC_N(malloc_tsd_boot0)
#define    malloc_tsd_boot1 JEMALLOC_N(malloc_tsd_boot1)
#define    malloc_tsd_cleanup_register JEMALLOC_N(malloc_tsd_cleanup_register)
#define    malloc_tsd_dalloc JEMALLOC_N(malloc_tsd_dalloc)
#define    malloc_tsd_malloc JEMALLOC_N(malloc_tsd_malloc)
#define    malloc_tsd_no_cleanup JEMALLOC_N(malloc_tsd_no_cleanup)
#define    malloc_vcprintf JEMALLOC_N(malloc_vcprintf)
#define    malloc_vsnprintf JEMALLOC_N(malloc_vsnprintf)
#define    malloc_write JEMALLOC_N(malloc_write)
#define    map_bias JEMALLOC_N(map_bias)
#define    map_misc_offset JEMALLOC_N(map_misc_offset)
#define    mb_write JEMALLOC_N(mb_write)
#define    narenas_auto JEMALLOC_N(narenas_auto)
#define    narenas_tdata_cleanup JEMALLOC_N(narenas_tdata_cleanup)
#define    narenas_total_get JEMALLOC_N(narenas_total_get)
#define    ncpus JEMALLOC_N(ncpus)
#define    nhbins JEMALLOC_N(nhbins)
#define    nhclasses JEMALLOC_N(nhclasses)
#define    nlclasses JEMALLOC_N(nlclasses)
#define    nstime_add JEMALLOC_N(nstime_add)
#define    nstime_compare JEMALLOC_N(nstime_compare)
#define    nstime_copy JEMALLOC_N(nstime_copy)
#define    nstime_divide JEMALLOC_N(nstime_divide)
#define    nstime_idivide JEMALLOC_N(nstime_idivide)
#define    nstime_imultiply JEMALLOC_N(nstime_imultiply)
#define    nstime_init JEMALLOC_N(nstime_init)
#define    nstime_init2 JEMALLOC_N(nstime_init2)
#define    nstime_monotonic JEMALLOC_N(nstime_monotonic)
#define    nstime_ns JEMALLOC_N(nstime_ns)
#define    nstime_nsec JEMALLOC_N(nstime_nsec)
#define    nstime_sec JEMALLOC_N(nstime_sec)
#define    nstime_subtract JEMALLOC_N(nstime_subtract)
#define    nstime_update JEMALLOC_N(nstime_update)
#define    opt_abort JEMALLOC_N(opt_abort)
#define    opt_decay_time JEMALLOC_N(opt_decay_time)
#define    opt_dss JEMALLOC_N(opt_dss)
#define    opt_junk JEMALLOC_N(opt_junk)
#define    opt_junk_alloc JEMALLOC_N(opt_junk_alloc)
#define    opt_junk_free JEMALLOC_N(opt_junk_free)
#define    opt_lg_chunk JEMALLOC_N(opt_lg_chunk)
#define    opt_lg_dirty_mult JEMALLOC_N(opt_lg_dirty_mult)
#define    opt_lg_prof_interval JEMALLOC_N(opt_lg_prof_interval)
#define    opt_lg_prof_sample JEMALLOC_N(opt_lg_prof_sample)
#define    opt_lg_tcache_max JEMALLOC_N(opt_lg_tcache_max)
#define    opt_narenas JEMALLOC_N(opt_narenas)
#define    opt_prof JEMALLOC_N(opt_prof)
#define    opt_prof_accum JEMALLOC_N(opt_prof_accum)
#define    opt_prof_active JEMALLOC_N(opt_prof_active)
#define    opt_prof_final JEMALLOC_N(opt_prof_final)
#define    opt_prof_gdump JEMALLOC_N(opt_prof_gdump)
#define    opt_prof_leak JEMALLOC_N(opt_prof_leak)
#define    opt_prof_prefix JEMALLOC_N(opt_prof_prefix)
#define    opt_prof_thread_active_init JEMALLOC_N(opt_prof_thread_active_init)
#define    opt_purge JEMALLOC_N(opt_purge)
#define    opt_quarantine JEMALLOC_N(opt_quarantine)
#define    opt_redzone JEMALLOC_N(opt_redzone)
#define    opt_stats_print JEMALLOC_N(opt_stats_print)
#define    opt_tcache JEMALLOC_N(opt_tcache)
#define    opt_utrace JEMALLOC_N(opt_utrace)
#define    opt_xmalloc JEMALLOC_N(opt_xmalloc)
#define    opt_zero JEMALLOC_N(opt_zero)
#define    p2rz JEMALLOC_N(p2rz)
#define    pages_boot JEMALLOC_N(pages_boot)
#define    pages_commit JEMALLOC_N(pages_commit)
#define    pages_decommit JEMALLOC_N(pages_decommit)
#define    pages_huge JEMALLOC_N(pages_huge)
#define    pages_map JEMALLOC_N(pages_map)
#define    pages_nohuge JEMALLOC_N(pages_nohuge)
#define    pages_purge JEMALLOC_N(pages_purge)
#define    pages_trim JEMALLOC_N(pages_trim)
#define    pages_unmap JEMALLOC_N(pages_unmap)
#define    pind2sz JEMALLOC_N(pind2sz)
#define    pind2sz_compute JEMALLOC_N(pind2sz_compute)
#define    pind2sz_lookup JEMALLOC_N(pind2sz_lookup)
#define    pind2sz_tab JEMALLOC_N(pind2sz_tab)
#define    pow2_ceil_u32 JEMALLOC_N(pow2_ceil_u32)
#define    pow2_ceil_u64 JEMALLOC_N(pow2_ceil_u64)
#define    pow2_ceil_zu JEMALLOC_N(pow2_ceil_zu)
#define    prng_lg_range_u32 JEMALLOC_N(prng_lg_range_u32)
#define    prng_lg_range_u64 JEMALLOC_N(prng_lg_range_u64)
#define    prng_lg_range_zu JEMALLOC_N(prng_lg_range_zu)
#define    prng_range_u32 JEMALLOC_N(prng_range_u32)
#define    prng_range_u64 JEMALLOC_N(prng_range_u64)
#define    prng_range_zu JEMALLOC_N(prng_range_zu)
#define    prng_state_next_u32 JEMALLOC_N(prng_state_next_u32)
#define    prng_state_next_u64 JEMALLOC_N(prng_state_next_u64)
#define    prng_state_next_zu JEMALLOC_N(prng_state_next_zu)
#define    prof_active JEMALLOC_N(prof_active)
#define    prof_active_get JEMALLOC_N(prof_active_get)
#define    prof_active_get_unlocked JEMALLOC_N(prof_active_get_unlocked)
#define    prof_active_set JEMALLOC_N(prof_active_set)
#define    prof_alloc_prep JEMALLOC_N(prof_alloc_prep)
#define    prof_alloc_rollback JEMALLOC_N(prof_alloc_rollback)
#define    prof_backtrace JEMALLOC_N(prof_backtrace)
#define    prof_boot0 JEMALLOC_N(prof_boot0)
#define    prof_boot1 JEMALLOC_N(prof_boot1)
#define    prof_boot2 JEMALLOC_N(prof_boot2)
#define    prof_bt_count JEMALLOC_N(prof_bt_count)
#define    prof_dump_header JEMALLOC_N(prof_dump_header)
#define    prof_dump_open JEMALLOC_N(prof_dump_open)
#define    prof_free JEMALLOC_N(prof_free)
#define    prof_free_sampled_object JEMALLOC_N(prof_free_sampled_object)
#define    prof_gdump JEMALLOC_N(prof_gdump)
#define    prof_gdump_get JEMALLOC_N(prof_gdump_get)
#define    prof_gdump_get_unlocked JEMALLOC_N(prof_gdump_get_unlocked)
#define    prof_gdump_set JEMALLOC_N(prof_gdump_set)
#define    prof_gdump_val JEMALLOC_N(prof_gdump_val)
#define    prof_idump JEMALLOC_N(prof_idump)
#define    prof_interval JEMALLOC_N(prof_interval)
#define    prof_lookup JEMALLOC_N(prof_lookup)
#define    prof_malloc JEMALLOC_N(prof_malloc)
#define    prof_malloc_sample_object JEMALLOC_N(prof_malloc_sample_object)
#define    prof_mdump JEMALLOC_N(prof_mdump)
#define    prof_postfork_child JEMALLOC_N(prof_postfork_child)
#define    prof_postfork_parent JEMALLOC_N(prof_postfork_parent)
#define    prof_prefork0 JEMALLOC_N(prof_prefork0)
#define    prof_prefork1 JEMALLOC_N(prof_prefork1)
#define    prof_realloc JEMALLOC_N(prof_realloc)
#define    prof_reset JEMALLOC_N(prof_reset)
#define    prof_sample_accum_update JEMALLOC_N(prof_sample_accum_update)
#define    prof_sample_threshold_update JEMALLOC_N(prof_sample_threshold_update)
#define    prof_tctx_get JEMALLOC_N(prof_tctx_get)
#define    prof_tctx_reset JEMALLOC_N(prof_tctx_reset)
#define    prof_tctx_set JEMALLOC_N(prof_tctx_set)
#define    prof_tdata_cleanup JEMALLOC_N(prof_tdata_cleanup)
#define    prof_tdata_count JEMALLOC_N(prof_tdata_count)
#define    prof_tdata_get JEMALLOC_N(prof_tdata_get)
#define    prof_tdata_init JEMALLOC_N(prof_tdata_init)
#define    prof_tdata_reinit JEMALLOC_N(prof_tdata_reinit)
#define    prof_thread_active_get JEMALLOC_N(prof_thread_active_get)
#define    prof_thread_active_init_get JEMALLOC_N(prof_thread_active_init_get)
#define    prof_thread_active_init_set JEMALLOC_N(prof_thread_active_init_set)
#define    prof_thread_active_set JEMALLOC_N(prof_thread_active_set)
#define    prof_thread_name_get JEMALLOC_N(prof_thread_name_get)
#define    prof_thread_name_set JEMALLOC_N(prof_thread_name_set)
#define    psz2ind JEMALLOC_N(psz2ind)
#define    psz2u JEMALLOC_N(psz2u)
#define    purge_mode_names JEMALLOC_N(purge_mode_names)
#define    quarantine JEMALLOC_N(quarantine)
#define    quarantine_alloc_hook JEMALLOC_N(quarantine_alloc_hook)
#define    quarantine_alloc_hook_work JEMALLOC_N(quarantine_alloc_hook_work)
#define    quarantine_cleanup JEMALLOC_N(quarantine_cleanup)
#define    rtree_child_read JEMALLOC_N(rtree_child_read)
#define    rtree_child_read_hard JEMALLOC_N(rtree_child_read_hard)
#define    rtree_child_tryread JEMALLOC_N(rtree_child_tryread)
#define    rtree_delete JEMALLOC_N(rtree_delete)
#define    rtree_get JEMALLOC_N(rtree_get)
#define    rtree_new JEMALLOC_N(rtree_new)
#define    rtree_node_valid JEMALLOC_N(rtree_node_valid)
#define    rtree_set JEMALLOC_N(rtree_set)
#define    rtree_start_level JEMALLOC_N(rtree_start_level)
#define    rtree_subkey JEMALLOC_N(rtree_subkey)
#define    rtree_subtree_read JEMALLOC_N(rtree_subtree_read)
#define    rtree_subtree_read_hard JEMALLOC_N(rtree_subtree_read_hard)
#define    rtree_subtree_tryread JEMALLOC_N(rtree_subtree_tryread)
#define    rtree_val_read JEMALLOC_N(rtree_val_read)
#define    rtree_val_write JEMALLOC_N(rtree_val_write)
#define    run_quantize_ceil JEMALLOC_N(run_quantize_ceil)
#define    run_quantize_floor JEMALLOC_N(run_quantize_floor)
#define    s2u JEMALLOC_N(s2u)
#define    s2u_compute JEMALLOC_N(s2u_compute)
#define    s2u_lookup JEMALLOC_N(s2u_lookup)
#define    sa2u JEMALLOC_N(sa2u)
#define    set_errno JEMALLOC_N(set_errno)
#define    size2index JEMALLOC_N(size2index)
#define    size2index_compute JEMALLOC_N(size2index_compute)
#define    size2index_lookup JEMALLOC_N(size2index_lookup)
#define    size2index_tab JEMALLOC_N(size2index_tab)
#define    spin_adaptive JEMALLOC_N(spin_adaptive)
#define    spin_init JEMALLOC_N(spin_init)
#define    stats_cactive JEMALLOC_N(stats_cactive)
#define    stats_cactive_add JEMALLOC_N(stats_cactive_add)
#define    stats_cactive_get JEMALLOC_N(stats_cactive_get)
#define    stats_cactive_sub JEMALLOC_N(stats_cactive_sub)
#define    stats_print JEMALLOC_N(stats_print)
#define    tcache_alloc_easy JEMALLOC_N(tcache_alloc_easy)
#define    tcache_alloc_large JEMALLOC_N(tcache_alloc_large)
#define    tcache_alloc_small JEMALLOC_N(tcache_alloc_small)
#define    tcache_alloc_small_hard JEMALLOC_N(tcache_alloc_small_hard)
#define    tcache_arena_reassociate JEMALLOC_N(tcache_arena_reassociate)
#define    tcache_bin_flush_large JEMALLOC_N(tcache_bin_flush_large)
#define    tcache_bin_flush_small JEMALLOC_N(tcache_bin_flush_small)
#define    tcache_bin_info JEMALLOC_N(tcache_bin_info)
#define    tcache_boot JEMALLOC_N(tcache_boot)
#define    tcache_cleanup JEMALLOC_N(tcache_cleanup)
#define    tcache_create JEMALLOC_N(tcache_create)
#define    tcache_dalloc_large JEMALLOC_N(tcache_dalloc_large)
#define    tcache_dalloc_small JEMALLOC_N(tcache_dalloc_small)
#define    tcache_enabled_cleanup JEMALLOC_N(tcache_enabled_cleanup)
#define    tcache_enabled_get JEMALLOC_N(tcache_enabled_get)
#define    tcache_enabled_set JEMALLOC_N(tcache_enabled_set)
#define    tcache_event JEMALLOC_N(tcache_event)
#define    tcache_event_hard JEMALLOC_N(tcache_event_hard)
#define    tcache_flush JEMALLOC_N(tcache_flush)
#define    tcache_get JEMALLOC_N(tcache_get)
#define    tcache_get_hard JEMALLOC_N(tcache_get_hard)
#define    tcache_maxclass JEMALLOC_N(tcache_maxclass)
#define    tcache_salloc JEMALLOC_N(tcache_salloc)
#define    tcache_stats_merge JEMALLOC_N(tcache_stats_merge)
#define    tcaches JEMALLOC_N(tcaches)
#define    tcaches_create JEMALLOC_N(tcaches_create)
#define    tcaches_destroy JEMALLOC_N(tcaches_destroy)
#define    tcaches_flush JEMALLOC_N(tcaches_flush)
#define    tcaches_get JEMALLOC_N(tcaches_get)
#define    thread_allocated_cleanup JEMALLOC_N(thread_allocated_cleanup)
#define    thread_deallocated_cleanup JEMALLOC_N(thread_deallocated_cleanup)
#define    ticker_copy JEMALLOC_N(ticker_copy)
#define    ticker_init JEMALLOC_N(ticker_init)
#define    ticker_read JEMALLOC_N(ticker_read)
#define    ticker_tick JEMALLOC_N(ticker_tick)
#define    ticker_ticks JEMALLOC_N(ticker_ticks)
#define    tsd_arena_get JEMALLOC_N(tsd_arena_get)
#define    tsd_arena_set JEMALLOC_N(tsd_arena_set)
#define    tsd_arenap_get JEMALLOC_N(tsd_arenap_get)
#define    tsd_arenas_tdata_bypass_get JEMALLOC_N(tsd_arenas_tdata_bypass_get)
#define    tsd_arenas_tdata_bypass_set JEMALLOC_N(tsd_arenas_tdata_bypass_set)
#define    tsd_arenas_tdata_bypassp_get JEMALLOC_N(tsd_arenas_tdata_bypassp_get)
#define    tsd_arenas_tdata_get JEMALLOC_N(tsd_arenas_tdata_get)
#define    tsd_arenas_tdata_set JEMALLOC_N(tsd_arenas_tdata_set)
#define    tsd_arenas_tdatap_get JEMALLOC_N(tsd_arenas_tdatap_get)
#define    tsd_boot JEMALLOC_N(tsd_boot)
#define    tsd_boot0 JEMALLOC_N(tsd_boot0)
#define    tsd_boot1 JEMALLOC_N(tsd_boot1)
#define    tsd_booted JEMALLOC_N(tsd_booted)
#define    tsd_booted_get JEMALLOC_N(tsd_booted_get)
#define    tsd_cleanup JEMALLOC_N(tsd_cleanup)
#define    tsd_cleanup_wrapper JEMALLOC_N(tsd_cleanup_wrapper)
#define    tsd_fetch JEMALLOC_N(tsd_fetch)
#define    tsd_fetch_impl JEMALLOC_N(tsd_fetch_impl)
#define    tsd_get JEMALLOC_N(tsd_get)
#define    tsd_get_allocates JEMALLOC_N(tsd_get_allocates)
#define    tsd_iarena_get JEMALLOC_N(tsd_iarena_get)
#define    tsd_iarena_set JEMALLOC_N(tsd_iarena_set)
#define    tsd_iarenap_get JEMALLOC_N(tsd_iarenap_get)
#define    tsd_initialized JEMALLOC_N(tsd_initialized)
#define    tsd_init_check_recursion JEMALLOC_N(tsd_init_check_recursion)
#define    tsd_init_finish JEMALLOC_N(tsd_init_finish)
#define    tsd_init_head JEMALLOC_N(tsd_init_head)
#define    tsd_narenas_tdata_get JEMALLOC_N(tsd_narenas_tdata_get)
#define    tsd_narenas_tdata_set JEMALLOC_N(tsd_narenas_tdata_set)
#define    tsd_narenas_tdatap_get JEMALLOC_N(tsd_narenas_tdatap_get)
#define    tsd_wrapper_get JEMALLOC_N(tsd_wrapper_get)
#define    tsd_wrapper_set JEMALLOC_N(tsd_wrapper_set)
#define    tsd_nominal JEMALLOC_N(tsd_nominal)
#define    tsd_prof_tdata_get JEMALLOC_N(tsd_prof_tdata_get)
#define    tsd_prof_tdata_set JEMALLOC_N(tsd_prof_tdata_set)
#define    tsd_prof_tdatap_get JEMALLOC_N(tsd_prof_tdatap_get)
#define    tsd_quarantine_get JEMALLOC_N(tsd_quarantine_get)
#define    tsd_quarantine_set JEMALLOC_N(tsd_quarantine_set)
#define    tsd_quarantinep_get JEMALLOC_N(tsd_quarantinep_get)
#define    tsd_set JEMALLOC_N(tsd_set)
#define    tsd_tcache_enabled_get JEMALLOC_N(tsd_tcache_enabled_get)
#define    tsd_tcache_enabled_set JEMALLOC_N(tsd_tcache_enabled_set)
#define    tsd_tcache_enabledp_get JEMALLOC_N(tsd_tcache_enabledp_get)
#define    tsd_tcache_get JEMALLOC_N(tsd_tcache_get)
#define    tsd_tcache_set JEMALLOC_N(tsd_tcache_set)
#define    tsd_tcachep_get JEMALLOC_N(tsd_tcachep_get)
#define    tsd_thread_allocated_get JEMALLOC_N(tsd_thread_allocated_get)
#define    tsd_thread_allocated_set JEMALLOC_N(tsd_thread_allocated_set)
#define    tsd_thread_allocatedp_get JEMALLOC_N(tsd_thread_allocatedp_get)
#define    tsd_thread_deallocated_get JEMALLOC_N(tsd_thread_deallocated_get)
#define    tsd_thread_deallocated_set JEMALLOC_N(tsd_thread_deallocated_set)
#define    tsd_thread_deallocatedp_get JEMALLOC_N(tsd_thread_deallocatedp_get)
#define    tsd_tls JEMALLOC_N(tsd_tls)
#define    tsd_tsd JEMALLOC_N(tsd_tsd)
#define    tsd_tsdn JEMALLOC_N(tsd_tsdn)
#define    tsd_witness_fork_get JEMALLOC_N(tsd_witness_fork_get)
#define    tsd_witness_fork_set JEMALLOC_N(tsd_witness_fork_set)
#define    tsd_witness_forkp_get JEMALLOC_N(tsd_witness_forkp_get)
#define    tsd_witnesses_get JEMALLOC_N(tsd_witnesses_get)
#define    tsd_witnesses_set JEMALLOC_N(tsd_witnesses_set)
#define    tsd_witnessesp_get JEMALLOC_N(tsd_witnessesp_get)
#define    tsdn_fetch JEMALLOC_N(tsdn_fetch)
#define    tsdn_null JEMALLOC_N(tsdn_null)
#define    tsdn_tsd JEMALLOC_N(tsdn_tsd)
#define    u2rz JEMALLOC_N(u2rz)
#define    valgrind_freelike_block JEMALLOC_N(valgrind_freelike_block)
#define    valgrind_make_mem_defined JEMALLOC_N(valgrind_make_mem_defined)
#define    valgrind_make_mem_noaccess JEMALLOC_N(valgrind_make_mem_noaccess)
#define    valgrind_make_mem_undefined JEMALLOC_N(valgrind_make_mem_undefined)
#define    witness_assert_lockless JEMALLOC_N(witness_assert_lockless)
#define    witness_assert_not_owner JEMALLOC_N(witness_assert_not_owner)
#define    witness_assert_owner JEMALLOC_N(witness_assert_owner)
#define    witness_fork_cleanup JEMALLOC_N(witness_fork_cleanup)
#define    witness_init JEMALLOC_N(witness_init)
#define    witness_lock JEMALLOC_N(witness_lock)
#define    witness_lock_error JEMALLOC_N(witness_lock_error)
#define    witness_lockless_error JEMALLOC_N(witness_lockless_error)
#define    witness_not_owner_error JEMALLOC_N(witness_not_owner_error)
#define    witness_owner JEMALLOC_N(witness_owner)
#define    witness_owner_error JEMALLOC_N(witness_owner_error)
#define    witness_postfork_child JEMALLOC_N(witness_postfork_child)
#define    witness_postfork_parent JEMALLOC_N(witness_postfork_parent)
#define    witness_prefork JEMALLOC_N(witness_prefork)
#define    witness_unlock JEMALLOC_N(witness_unlock)
#define    witnesses_cleanup JEMALLOC_N(witnesses_cleanup)
#define    zone_register JEMALLOC_N(zone_register)