-
Notifications
You must be signed in to change notification settings - Fork 22
/
SymbolTable.plist
11252 lines (11252 loc) · 521 KB
/
SymbolTable.plist
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
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"/usr/lib/libSystem.B.dylib" = {
// decl for __crashreporter_info__ not found
// decl for libSystem_atfork_child not found
// decl for libSystem_atfork_parent not found
// decl for libSystem_atfork_prepare not found
// decl for mach_init_routine not found
// decl for _cache_handle_memory_pressure_event not found
"cache_create" = "i*^{cache_attributes_s=}^?";
"cache_destroy" = "i^{cache_s=}";
"cache_get_and_retain" = "i^{cache_s=}^v^?";
// decl for cache_get_cost_hint not found
// decl for cache_get_count_hint not found
// decl for cache_get_info not found
// decl for cache_get_info_for_key not found
// decl for cache_get_info_for_keys not found
// decl for cache_get_minimum_values_hint not found
// decl for cache_get_name not found
"cache_hash_byte_string" = "Q*Q";
// decl for cache_invoke not found
"cache_key_hash_cb_cstring" = "Q^v^v";
"cache_key_hash_cb_integer" = "Q^v^v";
"cache_key_is_equal_cb_cstring" = "B^v^v^v";
"cache_key_is_equal_cb_integer" = "B^v^v^v";
// decl for cache_print not found
// decl for cache_print_stats not found
"cache_release_cb_free" = "v^v^v";
"cache_release_value" = "i^{cache_s=}^v";
"cache_remove" = "i^{cache_s=}^v";
"cache_remove_all" = "i^{cache_s=}";
// decl for cache_remove_with_block not found
"cache_set_and_retain" = "i^{cache_s=}^v^vQ";
// decl for cache_set_cost_hint not found
// decl for cache_set_count_hint not found
// decl for cache_set_minimum_values_hint not found
// decl for cache_set_name not found
// decl for cache_simulate_memory_warning_event not found
"cache_value_make_nonpurgeable_cb" = "B^v^v";
"cache_value_make_purgeable_cb" = "v^v^v";
// decl for CCAESCmac not found
// decl for CCAESCmacCreate not found
// decl for CCAESCmacDestroy not found
// decl for CCAESCmacFinal not found
// decl for CCAESCmacOutputSizeFromContext not found
// decl for CCAESCmacUpdate not found
// decl for CCBigNumAdd not found
// decl for CCBigNumAddI not found
// decl for CCBigNumBitCount not found
// decl for CCBigNumByteCount not found
// decl for CCBigNumClear not found
// decl for CCBigNumCompare not found
// decl for CCBigNumCompareI not found
// decl for CCBigNumCopy not found
// decl for CCBigNumCreateRandom not found
// decl for CCBigNumDiv not found
// decl for CCBigNumDiv2 not found
// decl for CCBigNumFree not found
// decl for CCBigNumFromData not found
// decl for CCBigNumFromDecimalString not found
// decl for CCBigNumFromHexString not found
// decl for CCBigNumGCD not found
// decl for CCBigNumGetI not found
// decl for CCBigNumInverseMod not found
// decl for CCBigNumIsNegative not found
// decl for CCBigNumIsOdd not found
// decl for CCBigNumIsPrime not found
// decl for CCBigNumIsZero not found
// decl for CCBigNumLCM not found
// decl for CCBigNumLeftShift not found
// decl for CCBigNumMod not found
// decl for CCBigNumModExp not found
// decl for CCBigNumModI not found
// decl for CCBigNumMontgomeryNormalization not found
// decl for CCBigNumMontgomeryReduce not found
// decl for CCBigNumMontgomerySetup not found
// decl for CCBigNumMul not found
// decl for CCBigNumMulI not found
// decl for CCBigNumMulMod not found
// decl for CCBigNumRightShift not found
// decl for CCBigNumSetI not found
// decl for CCBigNumSetNegative not found
// decl for CCBigNumSquare not found
// decl for CCBigNumSquareMod not found
// decl for CCBigNumSub not found
// decl for CCBigNumSubI not found
// decl for CCBigNumToData not found
// decl for CCBigNumToDecimalString not found
// decl for CCBigNumToHexString not found
// decl for CCBigNumZeroLSBCount not found
"CCCalibratePBKDF" = "IIQQIQI";
// decl for CCCreateBigNum not found
"CCCrypt" = "iIII^vQ^v^vQ^vQ^Q";
// decl for CCCryptorAddParameter not found
"CCCryptorCreate" = "iIII^vQ^v^^{_CCCryptor=}";
"CCCryptorCreateFromData" = "iIII^vQ^v^vQ^^{_CCCryptor=}^Q";
// decl for CCCryptorCreateFromDataWithMode not found
"CCCryptorCreateWithMode" = "iIIII^v^vQ^vQiI^^{_CCCryptor=}";
// decl for CCCryptorDecryptDataBlock not found
// decl for CCCryptorEncryptDataBlock not found
"CCCryptorFinal" = "i^{_CCCryptor=}^vQ^Q";
// decl for CCCryptorGCM not found
// decl for CCCryptorGCMAddAAD not found
// decl for CCCryptorGCMAddADD not found
// decl for CCCryptorGCMAddIV not found
// decl for CCCryptorGCMDecrypt not found
// decl for CCCryptorGCMEncrypt not found
// decl for CCCryptorGCMFinal not found
// decl for CCCryptorGCMFinalize not found
// decl for CCCryptorGCMOneshotDecrypt not found
// decl for CCCryptorGCMOneshotEncrypt not found
// decl for CCCryptorGCMReset not found
// decl for CCCryptorGCMSetIV not found
// decl for CCCryptorGCMaddAAD not found
// decl for CCCryptorGetIV not found
"CCCryptorGetOutputLength" = "Q^{_CCCryptor=}QB";
// decl for CCCryptorGetParameter not found
"CCCryptorRelease" = "i^{_CCCryptor=}";
"CCCryptorReset" = "i^{_CCCryptor=}^v";
// decl for CCCryptorReset_binary_compatibility not found
"CCCryptorUpdate" = "i^{_CCCryptor=}^vQ^vQ^Q";
// decl for CCDHComputeKey not found
// decl for CCDHCreate not found
// decl for CCDHGenerateKey not found
// decl for CCDHParametersCreateFromData not found
// decl for CCDHParametersCreateFromPKCS3 not found
// decl for CCDHParametersPKCS3Encode not found
// decl for CCDHParametersPKCS3EncodeLength not found
// decl for CCDHParametersRelease not found
// decl for CCDHRelease not found
// decl for CCDesCBCCksum not found
// decl for CCDesIsWeakKey not found
// decl for CCDesSetOddParity not found
// decl for CCDigest not found
// decl for CCDigestBlockSize not found
// decl for CCDigestCreate not found
// decl for CCDigestCreateByOID not found
// decl for CCDigestDestroy not found
// decl for CCDigestFinal not found
// decl for CCDigestGetBlockSize not found
// decl for CCDigestGetBlockSizeFromRef not found
// decl for CCDigestGetOutputSize not found
// decl for CCDigestGetOutputSizeFromRef not found
// decl for CCDigestInit not found
// decl for CCDigestOID not found
// decl for CCDigestOIDLen not found
// decl for CCDigestOutputSize not found
// decl for CCDigestReset not found
// decl for CCDigestUpdate not found
// decl for CCECCryptorComputeSharedSecret not found
// decl for CCECCryptorCreateFromData not found
// decl for CCECCryptorExportKey not found
// decl for CCECCryptorExportPublicKey not found
// decl for CCECCryptorGeneratePair not found
// decl for CCECCryptorGetKeyComponents not found
// decl for CCECCryptorGetPublicKeyFromPrivateKey not found
// decl for CCECCryptorImportKey not found
// decl for CCECCryptorImportPublicKey not found
// decl for CCECCryptorRelease not found
// decl for CCECCryptorSignHash not found
// decl for CCECCryptorUnwrapKey not found
// decl for CCECCryptorVerifyHash not found
// decl for CCECCryptorWrapKey not found
// decl for CCECGetKeySize not found
// decl for CCECGetKeyType not found
"CCHmac" = "vI^vQ^vQ^v";
// decl for CCHmacClone not found
// decl for CCHmacCreate not found
// decl for CCHmacDestroy not found
"CCHmacFinal" = "v^{?=}^v";
"CCHmacInit" = "v^{?=}I^vQ";
// decl for CCHmacOneShot not found
// decl for CCHmacOutputSize not found
// decl for CCHmacOutputSizeFromRef not found
"CCHmacUpdate" = "v^{?=}^vQ";
// decl for CCKeyDerivationHMac not found
"CCKeyDerivationPBKDF" = "iI*Q^CQII^CQ";
// decl for CCRNGCreate not found
// decl for CCRNGRelease not found
// decl for CCRSACryptorCreateFromData not found
// decl for CCRSACryptorCreatePairFromData not found
// decl for CCRSACryptorCrypt not found
// decl for CCRSACryptorDecrypt not found
// decl for CCRSACryptorEncrypt not found
// decl for CCRSACryptorExport not found
// decl for CCRSACryptorGeneratePair not found
// decl for CCRSACryptorGetPublicKeyFromPrivateKey not found
// decl for CCRSACryptorImport not found
// decl for CCRSACryptorRelease not found
// decl for CCRSACryptorSign not found
// decl for CCRSACryptorVerify not found
// decl for CCRSAGetCRTComponents not found
// decl for CCRSAGetCRTComponentsSizes not found
// decl for CCRSAGetKeyComponents not found
// decl for CCRSAGetKeySize not found
// decl for CCRSAGetKeyType not found
// decl for CCRandomCopyBytes not found
// decl for CCRandomGenerateBytes not found
"CCSymmetricKeyUnwrap" = "iI^CQ^CQ^CQ^C^Q";
"CCSymmetricKeyWrap" = "iI^CQ^CQ^CQ^C^Q";
"CCSymmetricUnwrappedSize" = "QIQ";
"CCSymmetricWrappedSize" = "QIQ";
"CC_MD2" = "^C^vI^C";
"CC_MD2_Final" = "i^C^{CC_MD2state_st=}";
"CC_MD2_Init" = "i^{CC_MD2state_st=}";
"CC_MD2_Update" = "i^{CC_MD2state_st=}^vI";
"CC_MD4" = "^C^vI^C";
"CC_MD4_Final" = "i^C^{CC_MD4state_st=}";
"CC_MD4_Init" = "i^{CC_MD4state_st=}";
"CC_MD4_Update" = "i^{CC_MD4state_st=}^vI";
"CC_MD5" = "^C^vI^C";
"CC_MD5_Final" = "i^C^{CC_MD5state_st=}";
"CC_MD5_Init" = "i^{CC_MD5state_st=}";
"CC_MD5_Update" = "i^{CC_MD5state_st=}^vI";
// decl for CC_RC4 not found
// decl for CC_RC4_set_key not found
"CC_SHA1" = "^C^vI^C";
"CC_SHA1_Final" = "i^C^{CC_SHA1state_st=}";
"CC_SHA1_Init" = "i^{CC_SHA1state_st=}";
"CC_SHA1_Update" = "i^{CC_SHA1state_st=}^vI";
"CC_SHA224" = "^C^vI^C";
"CC_SHA224_Final" = "i^C^{CC_SHA256state_st=}";
"CC_SHA224_Init" = "i^{CC_SHA256state_st=}";
"CC_SHA224_Update" = "i^{CC_SHA256state_st=}^vI";
"CC_SHA256" = "^C^vI^C";
"CC_SHA256_Final" = "i^C^{CC_SHA256state_st=}";
"CC_SHA256_Init" = "i^{CC_SHA256state_st=}";
"CC_SHA256_Update" = "i^{CC_SHA256state_st=}^vI";
"CC_SHA384" = "^C^vI^C";
"CC_SHA384_Final" = "i^C^{CC_SHA512state_st=}";
"CC_SHA384_Init" = "i^{CC_SHA512state_st=}";
"CC_SHA384_Update" = "i^{CC_SHA512state_st=}^vI";
"CC_SHA512" = "^C^vI^C";
"CC_SHA512_Final" = "i^C^{CC_SHA512state_st=}";
"CC_SHA512_Init" = "i^{CC_SHA512state_st=}";
"CC_SHA512_Update" = "i^{CC_SHA512state_st=}^vI";
// decl for CCrfc3394_iv not found
// decl for CCrfc3394_ivQen not found
// decl for CNCRC not found
// decl for CNCRCDumpTable not found
// decl for CNCRCFinal not found
// decl for CNCRCInit not found
// decl for CNCRCRelease not found
// decl for CNCRCUpdate not found
// decl for CNCRCWeakTest not found
// decl for CNEncode not found
// decl for CNEncoderBlocksize not found
// decl for CNEncoderBlocksizeFromRef not found
// decl for CNEncoderCreate not found
// decl for CNEncoderCreateCustom not found
// decl for CNEncoderFinal not found
// decl for CNEncoderGetOutputLength not found
// decl for CNEncoderGetOutputLengthFromEncoding not found
// decl for CNEncoderRelease not found
// decl for CNEncoderUpdate not found
// decl for MD5Final not found
// decl for ccDRBGGetRngState not found
// decl for ccDevRandomGetRngState not found
// decl for __clzti2 not found
// decl for __divti3 not found
// decl for __fixdfti not found
// decl for __fixsfti not found
// decl for __fixunsdfti not found
// decl for __fixunssfti not found
// decl for __floattidf not found
// decl for __floattisf not found
// decl for __floatuntidf not found
// decl for __floatuntisf not found
// decl for __gcc_personality_v0 not found
// decl for __modti3 not found
// decl for __udivmodti4 not found
// decl for __udivti3 not found
// decl for __umodti3 not found
// decl for ld$hide$os7.0$___extendhfsf2 not found
// decl for ld$hide$os7.0$___truncdfhf2 not found
// decl for ld$hide$os7.0$___truncsfhf2 not found
// decl for ld$hide$os7.0$_atomic_flag_clear not found
// decl for ld$hide$os7.0$_atomic_flag_clear_explicit not found
// decl for ld$hide$os7.0$_atomic_flag_test_and_set not found
// decl for ld$hide$os7.0$_atomic_flag_test_and_set_explicit not found
// decl for ld$hide$os7.0$_atomic_signal_fence not found
// decl for ld$hide$os7.0$_atomic_thread_fence not found
// decl for ld$hide$os7.1$___extendhfsf2 not found
// decl for ld$hide$os7.1$___truncdfhf2 not found
// decl for ld$hide$os7.1$___truncsfhf2 not found
// decl for ld$hide$os7.1$_atomic_flag_clear not found
// decl for ld$hide$os7.1$_atomic_flag_clear_explicit not found
// decl for ld$hide$os7.1$_atomic_flag_test_and_set not found
// decl for ld$hide$os7.1$_atomic_flag_test_and_set_explicit not found
// decl for ld$hide$os7.1$_atomic_signal_fence not found
// decl for ld$hide$os7.1$_atomic_thread_fence not found
// decl for ld$hide$os8.0$___extendhfsf2 not found
// decl for ld$hide$os8.0$___truncdfhf2 not found
// decl for ld$hide$os8.0$___truncsfhf2 not found
// decl for ld$hide$os8.0$_atomic_flag_clear not found
// decl for ld$hide$os8.0$_atomic_flag_clear_explicit not found
// decl for ld$hide$os8.0$_atomic_flag_test_and_set not found
// decl for ld$hide$os8.0$_atomic_flag_test_and_set_explicit not found
// decl for ld$hide$os8.0$_atomic_signal_fence not found
// decl for ld$hide$os8.0$_atomic_thread_fence not found
// decl for ld$hide$os8.1$___extendhfsf2 not found
// decl for ld$hide$os8.1$___truncdfhf2 not found
// decl for ld$hide$os8.1$___truncsfhf2 not found
// decl for ld$hide$os8.1$_atomic_flag_clear not found
// decl for ld$hide$os8.1$_atomic_flag_clear_explicit not found
// decl for ld$hide$os8.1$_atomic_flag_test_and_set not found
// decl for ld$hide$os8.1$_atomic_flag_test_and_set_explicit not found
// decl for ld$hide$os8.1$_atomic_signal_fence not found
// decl for ld$hide$os8.1$_atomic_thread_fence not found
// decl for ld$hide$os8.2$___extendhfsf2 not found
// decl for ld$hide$os8.2$___truncdfhf2 not found
// decl for ld$hide$os8.2$___truncsfhf2 not found
// decl for ld$hide$os8.2$_atomic_flag_clear not found
// decl for ld$hide$os8.2$_atomic_flag_clear_explicit not found
// decl for ld$hide$os8.2$_atomic_flag_test_and_set not found
// decl for ld$hide$os8.2$_atomic_flag_test_and_set_explicit not found
// decl for ld$hide$os8.2$_atomic_signal_fence not found
// decl for ld$hide$os8.2$_atomic_thread_fence not found
// decl for ld$hide$os8.3$___extendhfsf2 not found
// decl for ld$hide$os8.3$___truncdfhf2 not found
// decl for ld$hide$os8.3$___truncsfhf2 not found
// decl for ld$hide$os8.3$_atomic_flag_clear not found
// decl for ld$hide$os8.3$_atomic_flag_clear_explicit not found
// decl for ld$hide$os8.3$_atomic_flag_test_and_set not found
// decl for ld$hide$os8.3$_atomic_flag_test_and_set_explicit not found
// decl for ld$hide$os8.3$_atomic_signal_fence not found
// decl for ld$hide$os8.3$_atomic_thread_fence not found
// decl for __atomic_compare_exchange not found
// decl for __atomic_compare_exchange_1 not found
// decl for __atomic_compare_exchange_2 not found
// decl for __atomic_compare_exchange_4 not found
// decl for __atomic_compare_exchange_8 not found
// decl for __atomic_exchange not found
// decl for __atomic_exchange_1 not found
// decl for __atomic_exchange_2 not found
// decl for __atomic_exchange_4 not found
// decl for __atomic_exchange_8 not found
// decl for __atomic_fetch_add_1 not found
// decl for __atomic_fetch_add_2 not found
// decl for __atomic_fetch_add_4 not found
// decl for __atomic_fetch_add_8 not found
// decl for __atomic_fetch_and_1 not found
// decl for __atomic_fetch_and_2 not found
// decl for __atomic_fetch_and_4 not found
// decl for __atomic_fetch_and_8 not found
// decl for __atomic_fetch_or_1 not found
// decl for __atomic_fetch_or_2 not found
// decl for __atomic_fetch_or_4 not found
// decl for __atomic_fetch_or_8 not found
// decl for __atomic_fetch_sub_1 not found
// decl for __atomic_fetch_sub_2 not found
// decl for __atomic_fetch_sub_4 not found
// decl for __atomic_fetch_sub_8 not found
// decl for __atomic_fetch_xor_1 not found
// decl for __atomic_fetch_xor_2 not found
// decl for __atomic_fetch_xor_4 not found
// decl for __atomic_fetch_xor_8 not found
// decl for __atomic_load not found
// decl for __atomic_load_1 not found
// decl for __atomic_load_2 not found
// decl for __atomic_load_4 not found
// decl for __atomic_load_8 not found
// decl for __atomic_store not found
// decl for __atomic_store_1 not found
// decl for __atomic_store_2 not found
// decl for __atomic_store_4 not found
// decl for __atomic_store_8 not found
// decl for __extendhfsf2 not found
// decl for __gnu_f2h_ieee not found
// decl for __gnu_h2f_ieee not found
// decl for __muldc3 not found
// decl for __mulsc3 not found
// decl for __powidf2 not found
// decl for __powisf2 not found
// decl for __truncdfhf2 not found
// decl for __truncsfhf2 not found
// decl for atomic_flag_clear not found
// decl for atomic_flag_clear_explicit not found
// decl for atomic_flag_test_and_set not found
// decl for atomic_flag_test_and_set_explicit not found
// decl for atomic_signal_fence not found
// decl for atomic_thread_fence not found
// decl for vers not found
"copyfile" = "i**^{_copyfile_state=}I";
"copyfile_state_alloc" = "^{_copyfile_state=}";
"copyfile_state_free" = "i^{_copyfile_state=}";
"copyfile_state_get" = "i^{_copyfile_state=}I^v";
"copyfile_state_set" = "i^{_copyfile_state=}I^v";
"fcopyfile" = "iii^{_copyfile_state=}I";
"xattr_flags_from_name" = "Q*";
"xattr_intent_with_flags" = "iIQ";
"xattr_name_with_flags" = "**Q";
"xattr_name_without_flags" = "**";
"xattr_preserve_for_intent" = "i*I";
// decl for cc_clear not found
// decl for cc_cmp_safe not found
// decl for cc_mux2p not found
// decl for cc_muxp not found
// decl for cc_try_abort not found
// decl for ccaes_arm_cbc_decrypt_mode not found
// decl for ccaes_arm_cbc_encrypt_mode not found
// decl for ccaes_arm_cfb_decrypt_mode not found
// decl for ccaes_arm_cfb_encrypt_mode not found
// decl for ccaes_arm_ecb_decrypt_mode not found
// decl for ccaes_arm_ecb_encrypt_mode not found
// decl for ccaes_arm_ofb_crypt_mode not found
// decl for ccaes_arm_xts_decrypt_mode not found
// decl for ccaes_arm_xts_encrypt_mode not found
// decl for ccaes_cbc_decrypt_mode not found
// decl for ccaes_cbc_encrypt_mode not found
// decl for ccaes_ccm_decrypt_mode not found
// decl for ccaes_ccm_encrypt_mode not found
// decl for ccaes_cfb8_decrypt_mode not found
// decl for ccaes_cfb8_encrypt_mode not found
// decl for ccaes_cfb_decrypt_mode not found
// decl for ccaes_cfb_encrypt_mode not found
// decl for ccaes_ctr_crypt_mode not found
// decl for ccaes_ecb_decrypt_mode not found
// decl for ccaes_ecb_encrypt_mode not found
// decl for ccaes_gcm_decrypt_mode not found
// decl for ccaes_gcm_encrypt_mode not found
// decl for ccaes_gladman_cbc_decrypt_mode not found
// decl for ccaes_gladman_cbc_encrypt_mode not found
// decl for ccaes_ltc_ecb_decrypt_mode not found
// decl for ccaes_ltc_ecb_encrypt_mode not found
// decl for ccaes_ofb_crypt_mode not found
// decl for ccaes_siv_decrypt_mode not found
// decl for ccaes_siv_encrypt_mode not found
// decl for ccaes_xts_decrypt_mode not found
// decl for ccaes_xts_encrypt_mode not found
// decl for ccansikdf_x963 not found
// decl for ccblowfish_cbc_decrypt_mode not found
// decl for ccblowfish_cbc_encrypt_mode not found
// decl for ccblowfish_cfb8_decrypt_mode not found
// decl for ccblowfish_cfb8_encrypt_mode not found
// decl for ccblowfish_cfb_decrypt_mode not found
// decl for ccblowfish_cfb_encrypt_mode not found
// decl for ccblowfish_ctr_crypt_mode not found
// decl for ccblowfish_ecb_decrypt_mode not found
// decl for ccblowfish_ecb_encrypt_mode not found
// decl for ccblowfish_ofb_crypt_mode not found
// decl for cccast_cbc_decrypt_mode not found
// decl for cccast_cbc_encrypt_mode not found
// decl for cccast_cfb8_decrypt_mode not found
// decl for cccast_cfb8_encrypt_mode not found
// decl for cccast_cfb_decrypt_mode not found
// decl for cccast_cfb_encrypt_mode not found
// decl for cccast_ctr_crypt_mode not found
// decl for cccast_ecb_decrypt_mode not found
// decl for cccast_ecb_encrypt_mode not found
// decl for cccast_ofb_crypt_mode not found
// decl for cccbc_one_shot not found
// decl for ccchacha20 not found
// decl for ccchacha20_final not found
// decl for ccchacha20_init not found
// decl for ccchacha20_reset not found
// decl for ccchacha20_setcounter not found
// decl for ccchacha20_setnonce not found
// decl for ccchacha20_update not found
// decl for ccchacha20poly1305_aad not found
// decl for ccchacha20poly1305_decrypt not found
// decl for ccchacha20poly1305_decrypt_oneshot not found
// decl for ccchacha20poly1305_encrypt not found
// decl for ccchacha20poly1305_encrypt_oneshot not found
// decl for ccchacha20poly1305_finalize not found
// decl for ccchacha20poly1305_incnonce not found
// decl for ccchacha20poly1305_info not found
// decl for ccchacha20poly1305_init not found
// decl for ccchacha20poly1305_reset not found
// decl for ccchacha20poly1305_setnonce not found
// decl for ccchacha20poly1305_verify not found
// decl for cccmac_final_generate not found
// decl for cccmac_final_verify not found
// decl for cccmac_init not found
// decl for cccmac_one_shot_generate not found
// decl for cccmac_one_shot_verify not found
// decl for cccmac_update not found
// decl for cccurve25519 not found
// decl for ccder_decode_bitstring not found
// decl for ccder_decode_constructed_tl not found
// decl for ccder_decode_dhparam_n not found
// decl for ccder_decode_dhparams not found
// decl for ccder_decode_eckey not found
// decl for ccder_decode_len not found
// decl for ccder_decode_oid not found
// decl for ccder_decode_rsa_priv not found
// decl for ccder_decode_rsa_priv_n not found
// decl for ccder_decode_rsa_pub not found
// decl for ccder_decode_rsa_pub_n not found
// decl for ccder_decode_rsa_pub_x509 not found
// decl for ccder_decode_rsa_pub_x509_n not found
// decl for ccder_decode_seqii not found
// decl for ccder_decode_sequence_tl not found
// decl for ccder_decode_tag not found
// decl for ccder_decode_tl not found
// decl for ccder_decode_uint not found
// decl for ccder_decode_uint64 not found
// decl for ccder_decode_uint_n not found
// decl for ccder_encode_body not found
// decl for ccder_encode_body_nocopy not found
// decl for ccder_encode_constructed_tl not found
// decl for ccder_encode_dhparams not found
// decl for ccder_encode_dhparams_size not found
// decl for ccder_encode_eckey not found
// decl for ccder_encode_eckey_size not found
// decl for ccder_encode_implicit_integer not found
// decl for ccder_encode_implicit_octet_string not found
// decl for ccder_encode_implicit_raw_octet_string not found
// decl for ccder_encode_implicit_uint64 not found
// decl for ccder_encode_integer not found
// decl for ccder_encode_len not found
// decl for ccder_encode_octet_string not found
// decl for ccder_encode_oid not found
// decl for ccder_encode_raw_octet_string not found
// decl for ccder_encode_rsa_priv not found
// decl for ccder_encode_rsa_priv_size not found
// decl for ccder_encode_rsa_pub not found
// decl for ccder_encode_rsa_pub_size not found
// decl for ccder_encode_tag not found
// decl for ccder_encode_tl not found
// decl for ccder_encode_uint64 not found
// decl for ccder_sizeof not found
// decl for ccder_sizeof_implicit_integer not found
// decl for ccder_sizeof_implicit_octet_string not found
// decl for ccder_sizeof_implicit_raw_octet_string not found
// decl for ccder_sizeof_implicit_uint64 not found
// decl for ccder_sizeof_integer not found
// decl for ccder_sizeof_len not found
// decl for ccder_sizeof_octet_string not found
// decl for ccder_sizeof_oid not found
// decl for ccder_sizeof_raw_octet_string not found
// decl for ccder_sizeof_tag not found
// decl for ccder_sizeof_uint64 not found
// decl for ccdes3_cbc_decrypt_mode not found
// decl for ccdes3_cbc_encrypt_mode not found
// decl for ccdes3_cfb8_decrypt_mode not found
// decl for ccdes3_cfb8_encrypt_mode not found
// decl for ccdes3_cfb_decrypt_mode not found
// decl for ccdes3_cfb_encrypt_mode not found
// decl for ccdes3_ctr_crypt_mode not found
// decl for ccdes3_ecb_decrypt_mode not found
// decl for ccdes3_ecb_encrypt_mode not found
// decl for ccdes3_ltc_ecb_decrypt_mode not found
// decl for ccdes3_ltc_ecb_encrypt_mode not found
// decl for ccdes3_ofb_crypt_mode not found
// decl for ccdes_cbc_cksum not found
// decl for ccdes_cbc_decrypt_mode not found
// decl for ccdes_cbc_encrypt_mode not found
// decl for ccdes_cfb8_decrypt_mode not found
// decl for ccdes_cfb8_encrypt_mode not found
// decl for ccdes_cfb_decrypt_mode not found
// decl for ccdes_cfb_encrypt_mode not found
// decl for ccdes_ctr_crypt_mode not found
// decl for ccdes_ecb_decrypt_mode not found
// decl for ccdes_ecb_encrypt_mode not found
// decl for ccdes_key_is_weak not found
// decl for ccdes_key_set_odd_parity not found
// decl for ccdes_ofb_crypt_mode not found
// decl for ccdh_ccn_lookup_gp not found
// decl for ccdh_compute_key not found
// decl for ccdh_compute_shared_secret not found
// decl for ccdh_copy_gp not found
// decl for ccdh_export_pub not found
// decl for ccdh_generate_key not found
// decl for ccdh_gp_apple768 not found
// decl for ccdh_gp_rfc2409group02 not found
// decl for ccdh_gp_rfc3526group05 not found
// decl for ccdh_gp_rfc3526group14 not found
// decl for ccdh_gp_rfc3526group15 not found
// decl for ccdh_gp_rfc3526group16 not found
// decl for ccdh_gp_rfc3526group17 not found
// decl for ccdh_gp_rfc3526group18 not found
// decl for ccdh_gp_rfc5114_MODP_1024_160 not found
// decl for ccdh_gp_rfc5114_MODP_2048_224 not found
// decl for ccdh_gp_rfc5114_MODP_2048_256 not found
// decl for ccdh_import_full not found
// decl for ccdh_import_priv not found
// decl for ccdh_import_pub not found
// decl for ccdh_init_gp not found
// decl for ccdh_init_gp_from_bytes not found
// decl for ccdh_init_gp_with_order not found
// decl for ccdh_lookup_gp not found
// decl for ccdh_ramp_gp_exponent not found
// decl for ccdigest not found
// decl for ccdigest_init not found
// decl for ccdigest_oid_lookup not found
// decl for ccdigest_update not found
// decl for ccdrbg_factory_nistctr not found
// decl for ccdrbg_factory_nisthmac not found
// decl for ccec_compact_export not found
// decl for ccec_compact_generate_key not found
// decl for ccec_compact_import_priv not found
// decl for ccec_compact_import_priv_size not found
// decl for ccec_compact_import_pub not found
// decl for ccec_compact_import_pub_size not found
// decl for ccec_compact_transform_key not found
// decl for ccec_compute_key not found
// decl for ccec_cp_192 not found
// decl for ccec_cp_224 not found
// decl for ccec_cp_256 not found
// decl for ccec_cp_384 not found
// decl for ccec_cp_521 not found
// decl for ccec_curve_for_length_lookup not found
// decl for ccec_der_export_diversified_pub not found
// decl for ccec_der_export_diversified_pub_size not found
// decl for ccec_der_export_priv not found
// decl for ccec_der_export_priv_size not found
// decl for ccec_der_import_diversified_pub not found
// decl for ccec_der_import_priv not found
// decl for ccec_der_import_priv_keytype not found
// decl for ccec_diversify_min_entropy_len not found
// decl for ccec_diversify_pub not found
// decl for ccec_export_pub not found
// decl for ccec_generate_key not found
// decl for ccec_generate_key_deterministic not found
// decl for ccec_generate_key_fips not found
// decl for ccec_generate_key_internal_fips not found
// decl for ccec_generate_key_legacy not found
// decl for ccec_get_cp not found
// decl for ccec_get_fullkey_components not found
// decl for ccec_get_pubkey_components not found
// decl for ccec_import_pub not found
// decl for ccec_keysize_is_supported not found
// decl for ccec_make_priv not found
// decl for ccec_make_pub not found
// decl for ccec_pairwise_consistency_check not found
// decl for ccec_print_full_key not found
// decl for ccec_print_public_key not found
// decl for ccec_raw_import_priv_only not found
// decl for ccec_raw_import_pub not found
// decl for ccec_rfc6637_dh_curve_p256 not found
// decl for ccec_rfc6637_dh_curve_p521 not found
// decl for ccec_rfc6637_unwrap_key not found
// decl for ccec_rfc6637_unwrap_sha256_kek_aes128 not found
// decl for ccec_rfc6637_unwrap_sha512_kek_aes256 not found
// decl for ccec_rfc6637_wrap_key not found
// decl for ccec_rfc6637_wrap_key_diversified not found
// decl for ccec_rfc6637_wrap_key_size not found
// decl for ccec_rfc6637_wrap_sha256_kek_aes128 not found
// decl for ccec_rfc6637_wrap_sha512_kek_aes256 not found
// decl for ccec_sign not found
// decl for ccec_sign_composite not found
// decl for ccec_signature_r_s_size not found
// decl for ccec_validate_pub not found
// decl for ccec_verify not found
// decl for ccec_verify_composite not found
// decl for ccec_x963_export not found
// decl for ccec_x963_import_priv not found
// decl for ccec_x963_import_priv_size not found
// decl for ccec_x963_import_pub not found
// decl for ccec_x963_import_pub_size not found
// decl for ccecdh_compute_shared_secret not found
// decl for ccecdh_generate_key not found
// decl for ccecies_decrypt_gcm not found
// decl for ccecies_decrypt_gcm_composite not found
// decl for ccecies_decrypt_gcm_from_shared_secret not found
// decl for ccecies_decrypt_gcm_plaintext_size not found
// decl for ccecies_decrypt_gcm_plaintext_size_cp not found
// decl for ccecies_decrypt_gcm_setup not found
// decl for ccecies_encrypt_gcm not found
// decl for ccecies_encrypt_gcm_ciphertext_size not found
// decl for ccecies_encrypt_gcm_composite not found
// decl for ccecies_encrypt_gcm_from_shared_secret not found
// decl for ccecies_encrypt_gcm_setup not found
// decl for ccecies_import_eph_pub not found
// decl for ccecies_pub_key_size not found
// decl for ccecies_pub_key_size_cp not found
// decl for cced25519_make_key_pair not found
// decl for cced25519_make_pub not found
// decl for cced25519_sign not found
// decl for cced25519_verify not found
// decl for ccgcm_inc_iv not found
// decl for ccgcm_init_with_iv not found
// decl for ccgcm_one_shot not found
// decl for ccgcm_one_shot_legacy not found
// decl for ccgcm_set_iv_legacy not found
// decl for cchkdf not found
// decl for cchkdf_expand not found
// decl for cchkdf_extract not found
// decl for cchmac not found
// decl for cchmac_final not found
// decl for cchmac_init not found
// decl for cchmac_update not found
// decl for ccmd2_ltc_di not found
// decl for ccmd4_ltc_di not found
// decl for ccmd5_di not found
// decl for ccmd5_ltc_di not found
// decl for ccmgf not found
// decl for ccmode_factory_cbc_decrypt not found
// decl for ccmode_factory_cbc_encrypt not found
// decl for ccmode_factory_ccm_decrypt not found
// decl for ccmode_factory_ccm_encrypt not found
// decl for ccmode_factory_cfb8_decrypt not found
// decl for ccmode_factory_cfb8_encrypt not found
// decl for ccmode_factory_cfb_decrypt not found
// decl for ccmode_factory_cfb_encrypt not found
// decl for ccmode_factory_ctr_crypt not found
// decl for ccmode_factory_gcm_decrypt not found
// decl for ccmode_factory_gcm_encrypt not found
// decl for ccmode_factory_ofb_crypt not found
// decl for ccmode_factory_omac_decrypt not found
// decl for ccmode_factory_omac_encrypt not found
// decl for ccmode_factory_siv_decrypt not found
// decl for ccmode_factory_siv_encrypt not found
// decl for ccmode_factory_xts_decrypt not found
// decl for ccmode_factory_xts_encrypt not found
// decl for ccn_add not found
// decl for ccn_add1 not found
// decl for ccn_addmul1 not found
// decl for ccn_bitlen not found
// decl for ccn_cmp not found
// decl for ccn_div_equal_size_ws not found
// decl for ccn_div_euclid not found
// decl for ccn_div_euclid_ws not found
// decl for ccn_lprint not found
// decl for ccn_mul not found
// decl for ccn_mul1 not found
// decl for ccn_n not found
// decl for ccn_print not found
// decl for ccn_random_bits not found
// decl for ccn_read_uint not found
// decl for ccn_set not found
// decl for ccn_shift_right not found
// decl for ccn_sub not found
// decl for ccn_sub1 not found
// decl for ccn_write_int not found
// decl for ccn_write_int_size not found
// decl for ccn_write_uint not found
// decl for ccn_write_uint_padded_ct not found
// decl for ccn_write_uint_size not found
// decl for ccn_zero_multi not found
// decl for ccnistkdf_ctr_cmac not found
// decl for ccnistkdf_ctr_cmac_fixed not found
// decl for ccnistkdf_ctr_hmac not found
// decl for ccnistkdf_ctr_hmac_fixed not found
// decl for ccnistkdf_fb_hmac not found
// decl for ccnistkdf_fb_hmac_fixed not found
// decl for ccpad_cts1_decrypt not found
// decl for ccpad_cts1_encrypt not found
// decl for ccpad_cts2_decrypt not found
// decl for ccpad_cts2_encrypt not found
// decl for ccpad_cts3_decrypt not found
// decl for ccpad_cts3_encrypt not found
// decl for ccpad_pkcs7_decode not found
// decl for ccpad_pkcs7_decrypt not found
// decl for ccpad_pkcs7_ecb_decrypt not found
// decl for ccpad_pkcs7_ecb_encrypt not found
// decl for ccpad_pkcs7_encrypt not found
// decl for ccpad_xts_decrypt not found
// decl for ccpad_xts_encrypt not found
// decl for ccpbkdf2_hmac not found
// decl for ccpoly1305 not found
// decl for ccpoly1305_final not found
// decl for ccpoly1305_init not found
// decl for ccpoly1305_update not found
// decl for ccprime_rabin_miller not found
// decl for ccrc2_cbc_decrypt_mode not found
// decl for ccrc2_cbc_encrypt_mode not found
// decl for ccrc2_cfb8_decrypt_mode not found
// decl for ccrc2_cfb8_encrypt_mode not found
// decl for ccrc2_cfb_decrypt_mode not found
// decl for ccrc2_cfb_encrypt_mode not found
// decl for ccrc2_ctr_crypt_mode not found
// decl for ccrc2_ecb_decrypt_mode not found
// decl for ccrc2_ecb_encrypt_mode not found
// decl for ccrc2_ofb_crypt_mode not found
// decl for ccrc4 not found
// decl for ccrc4_eay not found
// decl for ccrmd128_ltc_di not found
// decl for ccrmd160_ltc_di not found
// decl for ccrmd256_ltc_di not found
// decl for ccrmd320_ltc_di not found
// decl for ccrng not found
// decl for ccrng_drbg_done not found
// decl for ccrng_drbg_init not found
// decl for ccrng_drbg_reseed not found
// decl for ccrng_ecfips_test_init not found
// decl for ccrng_pbkdf2_prng_init not found
// decl for ccrng_rsafips_test_init not found
// decl for ccrng_rsafips_test_set_next not found
// decl for ccrng_sequence_init not found
// decl for ccrng_system_done not found
// decl for ccrng_system_init not found
// decl for ccrng_test_done not found
// decl for ccrng_test_init not found
// decl for ccrsa_crt_makekey not found
// decl for ccrsa_decrypt_eme_pkcs1v15 not found
// decl for ccrsa_decrypt_eme_pkcs1v15_blinded not found
// decl for ccrsa_decrypt_oaep not found
// decl for ccrsa_decrypt_oaep_blinded not found
// decl for ccrsa_dump_full_key not found
// decl for ccrsa_dump_public_key not found
// decl for ccrsa_eme_pkcs1v15_decode not found
// decl for ccrsa_eme_pkcs1v15_encode not found
// decl for ccrsa_emsa_pkcs1v15_encode not found
// decl for ccrsa_emsa_pkcs1v15_verify not found
// decl for ccrsa_emsa_pss_decode not found
// decl for ccrsa_emsa_pss_encode not found
// decl for ccrsa_encrypt_eme_pkcs1v15 not found
// decl for ccrsa_encrypt_oaep not found
// decl for ccrsa_export_pub not found
// decl for ccrsa_generate_fips186_key not found
// decl for ccrsa_generate_fips186_key_trace not found
// decl for ccrsa_generate_key not found
// decl for ccrsa_get_fullkey_components not found
// decl for ccrsa_get_pubkey_components not found
// decl for ccrsa_import_pub not found
// decl for ccrsa_init_pub not found
// decl for ccrsa_make_fips186_key not found
// decl for ccrsa_make_fips186_key_trace not found
// decl for ccrsa_make_pub not found
// decl for ccrsa_oaep_decode_parameter not found
// decl for ccrsa_oaep_encode_parameter not found
// decl for ccrsa_priv_crypt not found
// decl for ccrsa_priv_crypt_blinded not found
// decl for ccrsa_pub_crypt not found
// decl for ccrsa_sign_pkcs1v15 not found
// decl for ccrsa_sign_pkcs1v15_blinded not found
// decl for ccrsa_sign_pss not found
// decl for ccrsa_sign_pss_blinded not found
// decl for ccrsa_verify_pkcs1v15 not found
// decl for ccrsa_verify_pkcs1v15_allowshortsigs not found
// decl for ccrsa_verify_pss not found
// decl for ccsha1_di not found
// decl for ccsha1_eay_di not found
// decl for ccsha1_ltc_di not found
// decl for ccsha1_vng_arm_di not found
// decl for ccsha224_di not found
// decl for ccsha224_ltc_di not found
// decl for ccsha224_vng_arm_di not found
// decl for ccsha256_di not found
// decl for ccsha256_ltc_di not found
// decl for ccsha256_vng_arm_di not found
// decl for ccsha384_di not found
// decl for ccsha384_ltc_di not found
// decl for ccsha384_vng_arm_di not found
// decl for ccsha512_di not found
// decl for ccsha512_ltc_di not found
// decl for ccsha512_vng_arm_di not found
// decl for ccsrp_client_process_challenge not found
// decl for ccsrp_client_start_authentication not found
// decl for ccsrp_client_verify_session not found
// decl for ccsrp_generate_salt_and_verification not found
// decl for ccsrp_generate_verifier not found
// decl for ccsrp_gp_rfc5054_1024 not found
// decl for ccsrp_gp_rfc5054_2048 not found
// decl for ccsrp_gp_rfc5054_3072 not found
// decl for ccsrp_gp_rfc5054_4096 not found
// decl for ccsrp_gp_rfc5054_8192 not found
// decl for ccsrp_server_compute_session not found
// decl for ccsrp_server_generate_public_key not found
// decl for ccsrp_server_start_authentication not found
// decl for ccsrp_server_verify_session not found
// decl for ccsrp_test_calculations not found
// decl for ccwrap_auth_decrypt not found
// decl for ccwrap_auth_decrypt_withiv not found
// decl for ccwrap_auth_encrypt not found
// decl for ccwrap_auth_encrypt_withiv not found
// decl for ccwrap_unwrapped_size not found
// decl for ccwrap_wrapped_size not found
// decl for ccxts_one_shot not found
// decl for ccz_add not found
// decl for ccz_addi not found
// decl for ccz_bit not found
// decl for ccz_bitlen not found
// decl for ccz_cmp not found
// decl for ccz_cmpi not found
// decl for ccz_divmod not found
// decl for ccz_expmod not found
// decl for ccz_free not found
// decl for ccz_gcd not found
// decl for ccz_init not found
// decl for ccz_invmod not found
// decl for ccz_is_negative not found
// decl for ccz_is_one not found
// decl for ccz_is_prime not found
// decl for ccz_is_zero not found
// decl for ccz_lcm not found
// decl for ccz_lprint not found
// decl for ccz_lsl not found
// decl for ccz_lsr not found
// decl for ccz_mod not found
// decl for ccz_mul not found
// decl for ccz_muli not found
// decl for ccz_mulmod not found
// decl for ccz_neg not found
// decl for ccz_print not found
// decl for ccz_random_bits not found
// decl for ccz_read_radix not found
// decl for ccz_read_uint not found
// decl for ccz_set not found
// decl for ccz_set_bit not found
// decl for ccz_seti not found
// decl for ccz_size not found
// decl for ccz_sqr not found
// decl for ccz_sqrmod not found
// decl for ccz_sub not found
// decl for ccz_subi not found
// decl for ccz_trailing_zeros not found
// decl for ccz_write_int not found
// decl for ccz_write_int_size not found
// decl for ccz_write_radix not found
// decl for ccz_write_radix_size not found
// decl for ccz_write_uint not found
// decl for ccz_write_uint_size not found
// decl for ccz_zero not found
// decl for cczp_init not found
// decl for cczp_inv not found
// decl for cczp_inv_field not found
// decl for cczp_inv_odd not found
// decl for cczp_mod not found
// decl for cczp_modn not found
// decl for cczp_mul not found
// decl for cczp_power not found
// decl for cczp_power_fast not found
// decl for cczp_power_ssma not found
// decl for fipspost_post not found
// decl for fipspost_trace_vtable not found
// decl for voucher_get_activity_id_and_creator not found
// decl for ld$hide$os10.0$_dispatch_assert_queue not found
// decl for ld$hide$os10.0$_dispatch_assert_queue_not not found
// decl for ld$hide$os10.0$_dispatch_queue_create_with_target not found
// decl for _dispatch_begin_NSAutoReleasePool not found
// decl for _dispatch_bug not found
// decl for _dispatch_data_destructor_free not found
// decl for _dispatch_data_destructor_munmap not found
// decl for _dispatch_data_destructor_none not found
// decl for _dispatch_data_destructor_vm_deallocate not found
// decl for _dispatch_data_empty not found
// decl for _dispatch_data_format_type_base32 not found
// decl for _dispatch_data_format_type_base32hex not found
// decl for _dispatch_data_format_type_base64 not found
// decl for _dispatch_data_format_type_none not found
// decl for _dispatch_data_format_type_utf16be not found
// decl for _dispatch_data_format_type_utf16le not found
// decl for _dispatch_data_format_type_utf8 not found
// decl for _dispatch_data_format_type_utf_any not found
// decl for _dispatch_end_NSAutoReleasePool not found
// decl for _dispatch_get_main_queue_handle_4CF not found
// decl for _dispatch_get_main_queue_port_4CF not found
// decl for _dispatch_iocntl not found
// decl for _dispatch_is_fork_of_multithreaded_parent not found
// decl for _dispatch_is_multithreaded not found
// decl for _dispatch_log not found
// decl for _dispatch_mach_hooks_install_default not found
// decl for _dispatch_main_q not found
// decl for _dispatch_main_queue_callback_4CF not found
// decl for _dispatch_poll_for_events_4launchd not found
// decl for _dispatch_prohibit_transition_to_multithreaded not found
// decl for _dispatch_pthread_root_queue_create_with_observer_hooks_4IOHID not found
// decl for _dispatch_queue_attr_concurrent not found
// decl for _dispatch_queue_is_exclusively_owned_by_current_thread_4IOHID not found
// decl for _dispatch_runloop_root_queue_create_4CF not found
// decl for _dispatch_runloop_root_queue_get_port_4CF not found
// decl for _dispatch_runloop_root_queue_perform_4CF not found
// decl for _dispatch_runloop_root_queue_wakeup_4CF not found
// decl for _dispatch_source_set_runloop_timer_4CF not found
// decl for _dispatch_source_type_data_add not found
// decl for _dispatch_source_type_data_or not found
// decl for _dispatch_source_type_data_replace not found
// decl for _dispatch_source_type_interval not found
// decl for _dispatch_source_type_mach_recv not found
// decl for _dispatch_source_type_mach_send not found
// decl for _dispatch_source_type_memorypressure not found
// decl for _dispatch_source_type_memorystatus not found
// decl for _dispatch_source_type_nw_channel not found
// decl for _dispatch_source_type_proc not found
// decl for _dispatch_source_type_read not found
// decl for _dispatch_source_type_signal not found
// decl for _dispatch_source_type_sock not found
// decl for _dispatch_source_type_timer not found
// decl for _dispatch_source_type_vfs not found
// decl for _dispatch_source_type_vm not found
// decl for _dispatch_source_type_vnode not found
// decl for _dispatch_source_type_write not found
// decl for _dispatch_source_will_reenable_kevent_4NW not found
// decl for _dispatch_workloop_should_yield_4NW not found
// decl for _firehose_spi_version not found
// decl for _os_object_alloc not found
// decl for _os_object_alloc_realized not found
// decl for _os_object_dealloc not found
// decl for _os_object_release not found
// decl for _os_object_release_internal not found
// decl for _os_object_release_internal_n not found
// decl for _os_object_retain not found
// decl for _os_object_retain_internal not found
// decl for _os_object_retain_internal_n not found
// decl for _os_object_retain_with_resurrect not found
"default_zone_size" = "Q^?^?";
"dispatch_activate" = "v^?";
"dispatch_after" = "vQ^{dispatch_queue_s=}^?";
"dispatch_after_f" = "vQ^{dispatch_queue_s=}^v^?";
// decl for dispatch_allocator_layout not found
"dispatch_apply" = "vQ^{dispatch_queue_s=}^?";
"dispatch_apply_f" = "vQ^{dispatch_queue_s=}^v^?";
"dispatch_assert_queue" = "v^{dispatch_queue_s=}";
// decl for dispatch_assert_queue$V2 not found
"dispatch_assert_queue_barrier" = "v^{dispatch_queue_s=}";
"dispatch_assert_queue_not" = "v^{dispatch_queue_s=}";
// decl for dispatch_assert_queue_not$V2 not found
"dispatch_async" = "<v^{dispatch_queue_s=}^?>dispatch_block_1";