-
Notifications
You must be signed in to change notification settings - Fork 0
/
libSceIcu.c
5306 lines (4642 loc) · 213 KB
/
libSceIcu.c
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
/*
This file was generated by genstub.py, do not edit manually!
*/
int sprx_dlsym(unsigned int handle, const char *nid, void *addr);
int sprx_dlopen(const char* libname, unsigned short *handle);
int sprx_dlclose(unsigned int handle);
static __attribute__ ((used)) void* __ptr_T_CString_int64ToString;
asm(".intel_syntax noprefix\n"
".global T_CString_int64ToString\n"
".type T_CString_int64ToString @function\n"
"T_CString_int64ToString:\n"
"jmp qword ptr [rip + __ptr_T_CString_int64ToString]\n");
static __attribute__ ((used)) void* __ptr_T_CString_integerToString;
asm(".intel_syntax noprefix\n"
".global T_CString_integerToString\n"
".type T_CString_integerToString @function\n"
"T_CString_integerToString:\n"
"jmp qword ptr [rip + __ptr_T_CString_integerToString]\n");
static __attribute__ ((used)) void* __ptr_T_CString_stringToInteger;
asm(".intel_syntax noprefix\n"
".global T_CString_stringToInteger\n"
".type T_CString_stringToInteger @function\n"
"T_CString_stringToInteger:\n"
"jmp qword ptr [rip + __ptr_T_CString_stringToInteger]\n");
static __attribute__ ((used)) void* __ptr_T_CString_toLowerCase;
asm(".intel_syntax noprefix\n"
".global T_CString_toLowerCase\n"
".type T_CString_toLowerCase @function\n"
"T_CString_toLowerCase:\n"
"jmp qword ptr [rip + __ptr_T_CString_toLowerCase]\n");
static __attribute__ ((used)) void* __ptr_T_CString_toUpperCase;
asm(".intel_syntax noprefix\n"
".global T_CString_toUpperCase\n"
".type T_CString_toUpperCase @function\n"
"T_CString_toUpperCase:\n"
"jmp qword ptr [rip + __ptr_T_CString_toUpperCase]\n");
static __attribute__ ((used)) void* __ptr_UCNV_FROM_U_CALLBACK_ESCAPE;
asm(".intel_syntax noprefix\n"
".global UCNV_FROM_U_CALLBACK_ESCAPE\n"
".type UCNV_FROM_U_CALLBACK_ESCAPE @function\n"
"UCNV_FROM_U_CALLBACK_ESCAPE:\n"
"jmp qword ptr [rip + __ptr_UCNV_FROM_U_CALLBACK_ESCAPE]\n");
static __attribute__ ((used)) void* __ptr_UCNV_FROM_U_CALLBACK_SKIP;
asm(".intel_syntax noprefix\n"
".global UCNV_FROM_U_CALLBACK_SKIP\n"
".type UCNV_FROM_U_CALLBACK_SKIP @function\n"
"UCNV_FROM_U_CALLBACK_SKIP:\n"
"jmp qword ptr [rip + __ptr_UCNV_FROM_U_CALLBACK_SKIP]\n");
static __attribute__ ((used)) void* __ptr_UCNV_FROM_U_CALLBACK_STOP;
asm(".intel_syntax noprefix\n"
".global UCNV_FROM_U_CALLBACK_STOP\n"
".type UCNV_FROM_U_CALLBACK_STOP @function\n"
"UCNV_FROM_U_CALLBACK_STOP:\n"
"jmp qword ptr [rip + __ptr_UCNV_FROM_U_CALLBACK_STOP]\n");
static __attribute__ ((used)) void* __ptr_UCNV_FROM_U_CALLBACK_SUBSTITUTE;
asm(".intel_syntax noprefix\n"
".global UCNV_FROM_U_CALLBACK_SUBSTITUTE\n"
".type UCNV_FROM_U_CALLBACK_SUBSTITUTE @function\n"
"UCNV_FROM_U_CALLBACK_SUBSTITUTE:\n"
"jmp qword ptr [rip + __ptr_UCNV_FROM_U_CALLBACK_SUBSTITUTE]\n");
static __attribute__ ((used)) void* __ptr_UCNV_TO_U_CALLBACK_ESCAPE;
asm(".intel_syntax noprefix\n"
".global UCNV_TO_U_CALLBACK_ESCAPE\n"
".type UCNV_TO_U_CALLBACK_ESCAPE @function\n"
"UCNV_TO_U_CALLBACK_ESCAPE:\n"
"jmp qword ptr [rip + __ptr_UCNV_TO_U_CALLBACK_ESCAPE]\n");
static __attribute__ ((used)) void* __ptr_UCNV_TO_U_CALLBACK_SKIP;
asm(".intel_syntax noprefix\n"
".global UCNV_TO_U_CALLBACK_SKIP\n"
".type UCNV_TO_U_CALLBACK_SKIP @function\n"
"UCNV_TO_U_CALLBACK_SKIP:\n"
"jmp qword ptr [rip + __ptr_UCNV_TO_U_CALLBACK_SKIP]\n");
static __attribute__ ((used)) void* __ptr_UCNV_TO_U_CALLBACK_STOP;
asm(".intel_syntax noprefix\n"
".global UCNV_TO_U_CALLBACK_STOP\n"
".type UCNV_TO_U_CALLBACK_STOP @function\n"
"UCNV_TO_U_CALLBACK_STOP:\n"
"jmp qword ptr [rip + __ptr_UCNV_TO_U_CALLBACK_STOP]\n");
static __attribute__ ((used)) void* __ptr_UCNV_TO_U_CALLBACK_SUBSTITUTE;
asm(".intel_syntax noprefix\n"
".global UCNV_TO_U_CALLBACK_SUBSTITUTE\n"
".type UCNV_TO_U_CALLBACK_SUBSTITUTE @function\n"
"UCNV_TO_U_CALLBACK_SUBSTITUTE:\n"
"jmp qword ptr [rip + __ptr_UCNV_TO_U_CALLBACK_SUBSTITUTE]\n");
static __attribute__ ((used)) void* __ptr_locale_getKeywordsStart;
asm(".intel_syntax noprefix\n"
".global locale_getKeywordsStart\n"
".type locale_getKeywordsStart @function\n"
"locale_getKeywordsStart:\n"
"jmp qword ptr [rip + __ptr_locale_getKeywordsStart]\n");
static __attribute__ ((used)) void* __ptr_res_countArrayItems;
asm(".intel_syntax noprefix\n"
".global res_countArrayItems\n"
".type res_countArrayItems @function\n"
"res_countArrayItems:\n"
"jmp qword ptr [rip + __ptr_res_countArrayItems]\n");
static __attribute__ ((used)) void* __ptr_res_getAlias;
asm(".intel_syntax noprefix\n"
".global res_getAlias\n"
".type res_getAlias @function\n"
"res_getAlias:\n"
"jmp qword ptr [rip + __ptr_res_getAlias]\n");
static __attribute__ ((used)) void* __ptr_res_getArrayItem;
asm(".intel_syntax noprefix\n"
".global res_getArrayItem\n"
".type res_getArrayItem @function\n"
"res_getArrayItem:\n"
"jmp qword ptr [rip + __ptr_res_getArrayItem]\n");
static __attribute__ ((used)) void* __ptr_res_getBinaryNoTrace;
asm(".intel_syntax noprefix\n"
".global res_getBinaryNoTrace\n"
".type res_getBinaryNoTrace @function\n"
"res_getBinaryNoTrace:\n"
"jmp qword ptr [rip + __ptr_res_getBinaryNoTrace]\n");
static __attribute__ ((used)) void* __ptr_res_getIntVectorNoTrace;
asm(".intel_syntax noprefix\n"
".global res_getIntVectorNoTrace\n"
".type res_getIntVectorNoTrace @function\n"
"res_getIntVectorNoTrace:\n"
"jmp qword ptr [rip + __ptr_res_getIntVectorNoTrace]\n");
static __attribute__ ((used)) void* __ptr_res_getPublicType;
asm(".intel_syntax noprefix\n"
".global res_getPublicType\n"
".type res_getPublicType @function\n"
"res_getPublicType:\n"
"jmp qword ptr [rip + __ptr_res_getPublicType]\n");
static __attribute__ ((used)) void* __ptr_res_getResource;
asm(".intel_syntax noprefix\n"
".global res_getResource\n"
".type res_getResource @function\n"
"res_getResource:\n"
"jmp qword ptr [rip + __ptr_res_getResource]\n");
static __attribute__ ((used)) void* __ptr_res_getStringNoTrace;
asm(".intel_syntax noprefix\n"
".global res_getStringNoTrace\n"
".type res_getStringNoTrace @function\n"
"res_getStringNoTrace:\n"
"jmp qword ptr [rip + __ptr_res_getStringNoTrace]\n");
static __attribute__ ((used)) void* __ptr_res_getTableItemByIndex;
asm(".intel_syntax noprefix\n"
".global res_getTableItemByIndex\n"
".type res_getTableItemByIndex @function\n"
"res_getTableItemByIndex:\n"
"jmp qword ptr [rip + __ptr_res_getTableItemByIndex]\n");
static __attribute__ ((used)) void* __ptr_res_getTableItemByKey;
asm(".intel_syntax noprefix\n"
".global res_getTableItemByKey\n"
".type res_getTableItemByKey @function\n"
"res_getTableItemByKey:\n"
"jmp qword ptr [rip + __ptr_res_getTableItemByKey]\n");
static __attribute__ ((used)) void* __ptr_res_read;
asm(".intel_syntax noprefix\n"
".global res_read\n"
".type res_read @function\n"
"res_read:\n"
"jmp qword ptr [rip + __ptr_res_read]\n");
static __attribute__ ((used)) void* __ptr_u_UCharsToChars;
asm(".intel_syntax noprefix\n"
".global u_UCharsToChars\n"
".type u_UCharsToChars @function\n"
"u_UCharsToChars:\n"
"jmp qword ptr [rip + __ptr_u_UCharsToChars]\n");
static __attribute__ ((used)) void* __ptr_u_austrcpy;
asm(".intel_syntax noprefix\n"
".global u_austrcpy\n"
".type u_austrcpy @function\n"
"u_austrcpy:\n"
"jmp qword ptr [rip + __ptr_u_austrcpy]\n");
static __attribute__ ((used)) void* __ptr_u_austrncpy;
asm(".intel_syntax noprefix\n"
".global u_austrncpy\n"
".type u_austrncpy @function\n"
"u_austrncpy:\n"
"jmp qword ptr [rip + __ptr_u_austrncpy]\n");
static __attribute__ ((used)) void* __ptr_u_caseInsensitivePrefixMatch;
asm(".intel_syntax noprefix\n"
".global u_caseInsensitivePrefixMatch\n"
".type u_caseInsensitivePrefixMatch @function\n"
"u_caseInsensitivePrefixMatch:\n"
"jmp qword ptr [rip + __ptr_u_caseInsensitivePrefixMatch]\n");
static __attribute__ ((used)) void* __ptr_u_charAge;
asm(".intel_syntax noprefix\n"
".global u_charAge\n"
".type u_charAge @function\n"
"u_charAge:\n"
"jmp qword ptr [rip + __ptr_u_charAge]\n");
static __attribute__ ((used)) void* __ptr_u_charDigitValue;
asm(".intel_syntax noprefix\n"
".global u_charDigitValue\n"
".type u_charDigitValue @function\n"
"u_charDigitValue:\n"
"jmp qword ptr [rip + __ptr_u_charDigitValue]\n");
static __attribute__ ((used)) void* __ptr_u_charDirection;
asm(".intel_syntax noprefix\n"
".global u_charDirection\n"
".type u_charDirection @function\n"
"u_charDirection:\n"
"jmp qword ptr [rip + __ptr_u_charDirection]\n");
static __attribute__ ((used)) void* __ptr_u_charFromName;
asm(".intel_syntax noprefix\n"
".global u_charFromName\n"
".type u_charFromName @function\n"
"u_charFromName:\n"
"jmp qword ptr [rip + __ptr_u_charFromName]\n");
static __attribute__ ((used)) void* __ptr_u_charMirror;
asm(".intel_syntax noprefix\n"
".global u_charMirror\n"
".type u_charMirror @function\n"
"u_charMirror:\n"
"jmp qword ptr [rip + __ptr_u_charMirror]\n");
static __attribute__ ((used)) void* __ptr_u_charName;
asm(".intel_syntax noprefix\n"
".global u_charName\n"
".type u_charName @function\n"
"u_charName:\n"
"jmp qword ptr [rip + __ptr_u_charName]\n");
static __attribute__ ((used)) void* __ptr_u_charType;
asm(".intel_syntax noprefix\n"
".global u_charType\n"
".type u_charType @function\n"
"u_charType:\n"
"jmp qword ptr [rip + __ptr_u_charType]\n");
static __attribute__ ((used)) void* __ptr_u_charsToUChars;
asm(".intel_syntax noprefix\n"
".global u_charsToUChars\n"
".type u_charsToUChars @function\n"
"u_charsToUChars:\n"
"jmp qword ptr [rip + __ptr_u_charsToUChars]\n");
static __attribute__ ((used)) void* __ptr_u_cleanup;
asm(".intel_syntax noprefix\n"
".global u_cleanup\n"
".type u_cleanup @function\n"
"u_cleanup:\n"
"jmp qword ptr [rip + __ptr_u_cleanup]\n");
static __attribute__ ((used)) void* __ptr_u_countChar32;
asm(".intel_syntax noprefix\n"
".global u_countChar32\n"
".type u_countChar32 @function\n"
"u_countChar32:\n"
"jmp qword ptr [rip + __ptr_u_countChar32]\n");
static __attribute__ ((used)) void* __ptr_u_digit;
asm(".intel_syntax noprefix\n"
".global u_digit\n"
".type u_digit @function\n"
"u_digit:\n"
"jmp qword ptr [rip + __ptr_u_digit]\n");
static __attribute__ ((used)) void* __ptr_u_enumCharNames;
asm(".intel_syntax noprefix\n"
".global u_enumCharNames\n"
".type u_enumCharNames @function\n"
"u_enumCharNames:\n"
"jmp qword ptr [rip + __ptr_u_enumCharNames]\n");
static __attribute__ ((used)) void* __ptr_u_enumCharTypes;
asm(".intel_syntax noprefix\n"
".global u_enumCharTypes\n"
".type u_enumCharTypes @function\n"
"u_enumCharTypes:\n"
"jmp qword ptr [rip + __ptr_u_enumCharTypes]\n");
static __attribute__ ((used)) void* __ptr_u_errorName;
asm(".intel_syntax noprefix\n"
".global u_errorName\n"
".type u_errorName @function\n"
"u_errorName:\n"
"jmp qword ptr [rip + __ptr_u_errorName]\n");
static __attribute__ ((used)) void* __ptr_u_flushDefaultConverter;
asm(".intel_syntax noprefix\n"
".global u_flushDefaultConverter\n"
".type u_flushDefaultConverter @function\n"
"u_flushDefaultConverter:\n"
"jmp qword ptr [rip + __ptr_u_flushDefaultConverter]\n");
static __attribute__ ((used)) void* __ptr_u_foldCase;
asm(".intel_syntax noprefix\n"
".global u_foldCase\n"
".type u_foldCase @function\n"
"u_foldCase:\n"
"jmp qword ptr [rip + __ptr_u_foldCase]\n");
static __attribute__ ((used)) void* __ptr_u_forDigit;
asm(".intel_syntax noprefix\n"
".global u_forDigit\n"
".type u_forDigit @function\n"
"u_forDigit:\n"
"jmp qword ptr [rip + __ptr_u_forDigit]\n");
static __attribute__ ((used)) void* __ptr_u_getBidiPairedBracket;
asm(".intel_syntax noprefix\n"
".global u_getBidiPairedBracket\n"
".type u_getBidiPairedBracket @function\n"
"u_getBidiPairedBracket:\n"
"jmp qword ptr [rip + __ptr_u_getBidiPairedBracket]\n");
static __attribute__ ((used)) void* __ptr_u_getBinaryPropertySet;
asm(".intel_syntax noprefix\n"
".global u_getBinaryPropertySet\n"
".type u_getBinaryPropertySet @function\n"
"u_getBinaryPropertySet:\n"
"jmp qword ptr [rip + __ptr_u_getBinaryPropertySet]\n");
static __attribute__ ((used)) void* __ptr_u_getCombiningClass;
asm(".intel_syntax noprefix\n"
".global u_getCombiningClass\n"
".type u_getCombiningClass @function\n"
"u_getCombiningClass:\n"
"jmp qword ptr [rip + __ptr_u_getCombiningClass]\n");
static __attribute__ ((used)) void* __ptr_u_getDataDirectory;
asm(".intel_syntax noprefix\n"
".global u_getDataDirectory\n"
".type u_getDataDirectory @function\n"
"u_getDataDirectory:\n"
"jmp qword ptr [rip + __ptr_u_getDataDirectory]\n");
static __attribute__ ((used)) void* __ptr_u_getDefaultConverter;
asm(".intel_syntax noprefix\n"
".global u_getDefaultConverter\n"
".type u_getDefaultConverter @function\n"
"u_getDefaultConverter:\n"
"jmp qword ptr [rip + __ptr_u_getDefaultConverter]\n");
static __attribute__ ((used)) void* __ptr_u_getFC_NFKC_Closure;
asm(".intel_syntax noprefix\n"
".global u_getFC_NFKC_Closure\n"
".type u_getFC_NFKC_Closure @function\n"
"u_getFC_NFKC_Closure:\n"
"jmp qword ptr [rip + __ptr_u_getFC_NFKC_Closure]\n");
static __attribute__ ((used)) void* __ptr_u_getISOComment;
asm(".intel_syntax noprefix\n"
".global u_getISOComment\n"
".type u_getISOComment @function\n"
"u_getISOComment:\n"
"jmp qword ptr [rip + __ptr_u_getISOComment]\n");
static __attribute__ ((used)) void* __ptr_u_getIntPropertyMap;
asm(".intel_syntax noprefix\n"
".global u_getIntPropertyMap\n"
".type u_getIntPropertyMap @function\n"
"u_getIntPropertyMap:\n"
"jmp qword ptr [rip + __ptr_u_getIntPropertyMap]\n");
static __attribute__ ((used)) void* __ptr_u_getIntPropertyMaxValue;
asm(".intel_syntax noprefix\n"
".global u_getIntPropertyMaxValue\n"
".type u_getIntPropertyMaxValue @function\n"
"u_getIntPropertyMaxValue:\n"
"jmp qword ptr [rip + __ptr_u_getIntPropertyMaxValue]\n");
static __attribute__ ((used)) void* __ptr_u_getIntPropertyMinValue;
asm(".intel_syntax noprefix\n"
".global u_getIntPropertyMinValue\n"
".type u_getIntPropertyMinValue @function\n"
"u_getIntPropertyMinValue:\n"
"jmp qword ptr [rip + __ptr_u_getIntPropertyMinValue]\n");
static __attribute__ ((used)) void* __ptr_u_getIntPropertyValue;
asm(".intel_syntax noprefix\n"
".global u_getIntPropertyValue\n"
".type u_getIntPropertyValue @function\n"
"u_getIntPropertyValue:\n"
"jmp qword ptr [rip + __ptr_u_getIntPropertyValue]\n");
static __attribute__ ((used)) void* __ptr_u_getNumericValue;
asm(".intel_syntax noprefix\n"
".global u_getNumericValue\n"
".type u_getNumericValue @function\n"
"u_getNumericValue:\n"
"jmp qword ptr [rip + __ptr_u_getNumericValue]\n");
static __attribute__ ((used)) void* __ptr_u_getPropertyEnum;
asm(".intel_syntax noprefix\n"
".global u_getPropertyEnum\n"
".type u_getPropertyEnum @function\n"
"u_getPropertyEnum:\n"
"jmp qword ptr [rip + __ptr_u_getPropertyEnum]\n");
static __attribute__ ((used)) void* __ptr_u_getPropertyName;
asm(".intel_syntax noprefix\n"
".global u_getPropertyName\n"
".type u_getPropertyName @function\n"
"u_getPropertyName:\n"
"jmp qword ptr [rip + __ptr_u_getPropertyName]\n");
static __attribute__ ((used)) void* __ptr_u_getPropertyValueEnum;
asm(".intel_syntax noprefix\n"
".global u_getPropertyValueEnum\n"
".type u_getPropertyValueEnum @function\n"
"u_getPropertyValueEnum:\n"
"jmp qword ptr [rip + __ptr_u_getPropertyValueEnum]\n");
static __attribute__ ((used)) void* __ptr_u_getPropertyValueName;
asm(".intel_syntax noprefix\n"
".global u_getPropertyValueName\n"
".type u_getPropertyValueName @function\n"
"u_getPropertyValueName:\n"
"jmp qword ptr [rip + __ptr_u_getPropertyValueName]\n");
static __attribute__ ((used)) void* __ptr_u_getTimeZoneFilesDirectory;
asm(".intel_syntax noprefix\n"
".global u_getTimeZoneFilesDirectory\n"
".type u_getTimeZoneFilesDirectory @function\n"
"u_getTimeZoneFilesDirectory:\n"
"jmp qword ptr [rip + __ptr_u_getTimeZoneFilesDirectory]\n");
static __attribute__ ((used)) void* __ptr_u_getUnicodeVersion;
asm(".intel_syntax noprefix\n"
".global u_getUnicodeVersion\n"
".type u_getUnicodeVersion @function\n"
"u_getUnicodeVersion:\n"
"jmp qword ptr [rip + __ptr_u_getUnicodeVersion]\n");
static __attribute__ ((used)) void* __ptr_u_getVersion;
asm(".intel_syntax noprefix\n"
".global u_getVersion\n"
".type u_getVersion @function\n"
"u_getVersion:\n"
"jmp qword ptr [rip + __ptr_u_getVersion]\n");
static __attribute__ ((used)) void* __ptr_u_hasBinaryProperty;
asm(".intel_syntax noprefix\n"
".global u_hasBinaryProperty\n"
".type u_hasBinaryProperty @function\n"
"u_hasBinaryProperty:\n"
"jmp qword ptr [rip + __ptr_u_hasBinaryProperty]\n");
static __attribute__ ((used)) void* __ptr_u_isIDIgnorable;
asm(".intel_syntax noprefix\n"
".global u_isIDIgnorable\n"
".type u_isIDIgnorable @function\n"
"u_isIDIgnorable:\n"
"jmp qword ptr [rip + __ptr_u_isIDIgnorable]\n");
static __attribute__ ((used)) void* __ptr_u_isIDPart;
asm(".intel_syntax noprefix\n"
".global u_isIDPart\n"
".type u_isIDPart @function\n"
"u_isIDPart:\n"
"jmp qword ptr [rip + __ptr_u_isIDPart]\n");
static __attribute__ ((used)) void* __ptr_u_isIDStart;
asm(".intel_syntax noprefix\n"
".global u_isIDStart\n"
".type u_isIDStart @function\n"
"u_isIDStart:\n"
"jmp qword ptr [rip + __ptr_u_isIDStart]\n");
static __attribute__ ((used)) void* __ptr_u_isISOControl;
asm(".intel_syntax noprefix\n"
".global u_isISOControl\n"
".type u_isISOControl @function\n"
"u_isISOControl:\n"
"jmp qword ptr [rip + __ptr_u_isISOControl]\n");
static __attribute__ ((used)) void* __ptr_u_isJavaIDPart;
asm(".intel_syntax noprefix\n"
".global u_isJavaIDPart\n"
".type u_isJavaIDPart @function\n"
"u_isJavaIDPart:\n"
"jmp qword ptr [rip + __ptr_u_isJavaIDPart]\n");
static __attribute__ ((used)) void* __ptr_u_isJavaIDStart;
asm(".intel_syntax noprefix\n"
".global u_isJavaIDStart\n"
".type u_isJavaIDStart @function\n"
"u_isJavaIDStart:\n"
"jmp qword ptr [rip + __ptr_u_isJavaIDStart]\n");
static __attribute__ ((used)) void* __ptr_u_isJavaSpaceChar;
asm(".intel_syntax noprefix\n"
".global u_isJavaSpaceChar\n"
".type u_isJavaSpaceChar @function\n"
"u_isJavaSpaceChar:\n"
"jmp qword ptr [rip + __ptr_u_isJavaSpaceChar]\n");
static __attribute__ ((used)) void* __ptr_u_isMirrored;
asm(".intel_syntax noprefix\n"
".global u_isMirrored\n"
".type u_isMirrored @function\n"
"u_isMirrored:\n"
"jmp qword ptr [rip + __ptr_u_isMirrored]\n");
static __attribute__ ((used)) void* __ptr_u_isUAlphabetic;
asm(".intel_syntax noprefix\n"
".global u_isUAlphabetic\n"
".type u_isUAlphabetic @function\n"
"u_isUAlphabetic:\n"
"jmp qword ptr [rip + __ptr_u_isUAlphabetic]\n");
static __attribute__ ((used)) void* __ptr_u_isULowercase;
asm(".intel_syntax noprefix\n"
".global u_isULowercase\n"
".type u_isULowercase @function\n"
"u_isULowercase:\n"
"jmp qword ptr [rip + __ptr_u_isULowercase]\n");
static __attribute__ ((used)) void* __ptr_u_isUUppercase;
asm(".intel_syntax noprefix\n"
".global u_isUUppercase\n"
".type u_isUUppercase @function\n"
"u_isUUppercase:\n"
"jmp qword ptr [rip + __ptr_u_isUUppercase]\n");
static __attribute__ ((used)) void* __ptr_u_isUWhiteSpace;
asm(".intel_syntax noprefix\n"
".global u_isUWhiteSpace\n"
".type u_isUWhiteSpace @function\n"
"u_isUWhiteSpace:\n"
"jmp qword ptr [rip + __ptr_u_isUWhiteSpace]\n");
static __attribute__ ((used)) void* __ptr_u_isWhitespace;
asm(".intel_syntax noprefix\n"
".global u_isWhitespace\n"
".type u_isWhitespace @function\n"
"u_isWhitespace:\n"
"jmp qword ptr [rip + __ptr_u_isWhitespace]\n");
static __attribute__ ((used)) void* __ptr_u_isalnum;
asm(".intel_syntax noprefix\n"
".global u_isalnum\n"
".type u_isalnum @function\n"
"u_isalnum:\n"
"jmp qword ptr [rip + __ptr_u_isalnum]\n");
static __attribute__ ((used)) void* __ptr_u_isalpha;
asm(".intel_syntax noprefix\n"
".global u_isalpha\n"
".type u_isalpha @function\n"
"u_isalpha:\n"
"jmp qword ptr [rip + __ptr_u_isalpha]\n");
static __attribute__ ((used)) void* __ptr_u_isbase;
asm(".intel_syntax noprefix\n"
".global u_isbase\n"
".type u_isbase @function\n"
"u_isbase:\n"
"jmp qword ptr [rip + __ptr_u_isbase]\n");
static __attribute__ ((used)) void* __ptr_u_isblank;
asm(".intel_syntax noprefix\n"
".global u_isblank\n"
".type u_isblank @function\n"
"u_isblank:\n"
"jmp qword ptr [rip + __ptr_u_isblank]\n");
static __attribute__ ((used)) void* __ptr_u_iscntrl;
asm(".intel_syntax noprefix\n"
".global u_iscntrl\n"
".type u_iscntrl @function\n"
"u_iscntrl:\n"
"jmp qword ptr [rip + __ptr_u_iscntrl]\n");
static __attribute__ ((used)) void* __ptr_u_isdefined;
asm(".intel_syntax noprefix\n"
".global u_isdefined\n"
".type u_isdefined @function\n"
"u_isdefined:\n"
"jmp qword ptr [rip + __ptr_u_isdefined]\n");
static __attribute__ ((used)) void* __ptr_u_isdigit;
asm(".intel_syntax noprefix\n"
".global u_isdigit\n"
".type u_isdigit @function\n"
"u_isdigit:\n"
"jmp qword ptr [rip + __ptr_u_isdigit]\n");
static __attribute__ ((used)) void* __ptr_u_isgraph;
asm(".intel_syntax noprefix\n"
".global u_isgraph\n"
".type u_isgraph @function\n"
"u_isgraph:\n"
"jmp qword ptr [rip + __ptr_u_isgraph]\n");
static __attribute__ ((used)) void* __ptr_u_islower;
asm(".intel_syntax noprefix\n"
".global u_islower\n"
".type u_islower @function\n"
"u_islower:\n"
"jmp qword ptr [rip + __ptr_u_islower]\n");
static __attribute__ ((used)) void* __ptr_u_isprint;
asm(".intel_syntax noprefix\n"
".global u_isprint\n"
".type u_isprint @function\n"
"u_isprint:\n"
"jmp qword ptr [rip + __ptr_u_isprint]\n");
static __attribute__ ((used)) void* __ptr_u_ispunct;
asm(".intel_syntax noprefix\n"
".global u_ispunct\n"
".type u_ispunct @function\n"
"u_ispunct:\n"
"jmp qword ptr [rip + __ptr_u_ispunct]\n");
static __attribute__ ((used)) void* __ptr_u_isspace;
asm(".intel_syntax noprefix\n"
".global u_isspace\n"
".type u_isspace @function\n"
"u_isspace:\n"
"jmp qword ptr [rip + __ptr_u_isspace]\n");
static __attribute__ ((used)) void* __ptr_u_istitle;
asm(".intel_syntax noprefix\n"
".global u_istitle\n"
".type u_istitle @function\n"
"u_istitle:\n"
"jmp qword ptr [rip + __ptr_u_istitle]\n");
static __attribute__ ((used)) void* __ptr_u_isupper;
asm(".intel_syntax noprefix\n"
".global u_isupper\n"
".type u_isupper @function\n"
"u_isupper:\n"
"jmp qword ptr [rip + __ptr_u_isupper]\n");
static __attribute__ ((used)) void* __ptr_u_isxdigit;
asm(".intel_syntax noprefix\n"
".global u_isxdigit\n"
".type u_isxdigit @function\n"
"u_isxdigit:\n"
"jmp qword ptr [rip + __ptr_u_isxdigit]\n");
static __attribute__ ((used)) void* __ptr_u_memcasecmp;
asm(".intel_syntax noprefix\n"
".global u_memcasecmp\n"
".type u_memcasecmp @function\n"
"u_memcasecmp:\n"
"jmp qword ptr [rip + __ptr_u_memcasecmp]\n");
static __attribute__ ((used)) void* __ptr_u_memchr;
asm(".intel_syntax noprefix\n"
".global u_memchr\n"
".type u_memchr @function\n"
"u_memchr:\n"
"jmp qword ptr [rip + __ptr_u_memchr]\n");
static __attribute__ ((used)) void* __ptr_u_memchr32;
asm(".intel_syntax noprefix\n"
".global u_memchr32\n"
".type u_memchr32 @function\n"
"u_memchr32:\n"
"jmp qword ptr [rip + __ptr_u_memchr32]\n");
static __attribute__ ((used)) void* __ptr_u_memcmp;
asm(".intel_syntax noprefix\n"
".global u_memcmp\n"
".type u_memcmp @function\n"
"u_memcmp:\n"
"jmp qword ptr [rip + __ptr_u_memcmp]\n");
static __attribute__ ((used)) void* __ptr_u_memcmpCodePointOrder;
asm(".intel_syntax noprefix\n"
".global u_memcmpCodePointOrder\n"
".type u_memcmpCodePointOrder @function\n"
"u_memcmpCodePointOrder:\n"
"jmp qword ptr [rip + __ptr_u_memcmpCodePointOrder]\n");
static __attribute__ ((used)) void* __ptr_u_memcpy;
asm(".intel_syntax noprefix\n"
".global u_memcpy\n"
".type u_memcpy @function\n"
"u_memcpy:\n"
"jmp qword ptr [rip + __ptr_u_memcpy]\n");
static __attribute__ ((used)) void* __ptr_u_memmove;
asm(".intel_syntax noprefix\n"
".global u_memmove\n"
".type u_memmove @function\n"
"u_memmove:\n"
"jmp qword ptr [rip + __ptr_u_memmove]\n");
static __attribute__ ((used)) void* __ptr_u_memrchr;
asm(".intel_syntax noprefix\n"
".global u_memrchr\n"
".type u_memrchr @function\n"
"u_memrchr:\n"
"jmp qword ptr [rip + __ptr_u_memrchr]\n");
static __attribute__ ((used)) void* __ptr_u_memrchr32;
asm(".intel_syntax noprefix\n"
".global u_memrchr32\n"
".type u_memrchr32 @function\n"
"u_memrchr32:\n"
"jmp qword ptr [rip + __ptr_u_memrchr32]\n");
static __attribute__ ((used)) void* __ptr_u_memset;
asm(".intel_syntax noprefix\n"
".global u_memset\n"
".type u_memset @function\n"
"u_memset:\n"
"jmp qword ptr [rip + __ptr_u_memset]\n");
static __attribute__ ((used)) void* __ptr_u_releaseDefaultConverter;
asm(".intel_syntax noprefix\n"
".global u_releaseDefaultConverter\n"
".type u_releaseDefaultConverter @function\n"
"u_releaseDefaultConverter:\n"
"jmp qword ptr [rip + __ptr_u_releaseDefaultConverter]\n");
static __attribute__ ((used)) void* __ptr_u_setAtomicIncDecFunctions;
asm(".intel_syntax noprefix\n"
".global u_setAtomicIncDecFunctions\n"
".type u_setAtomicIncDecFunctions @function\n"
"u_setAtomicIncDecFunctions:\n"
"jmp qword ptr [rip + __ptr_u_setAtomicIncDecFunctions]\n");
static __attribute__ ((used)) void* __ptr_u_setDataDirectory;
asm(".intel_syntax noprefix\n"
".global u_setDataDirectory\n"
".type u_setDataDirectory @function\n"
"u_setDataDirectory:\n"
"jmp qword ptr [rip + __ptr_u_setDataDirectory]\n");
static __attribute__ ((used)) void* __ptr_u_setMemoryFunctions;
asm(".intel_syntax noprefix\n"
".global u_setMemoryFunctions\n"
".type u_setMemoryFunctions @function\n"
"u_setMemoryFunctions:\n"
"jmp qword ptr [rip + __ptr_u_setMemoryFunctions]\n");
static __attribute__ ((used)) void* __ptr_u_setMutexFunctions;
asm(".intel_syntax noprefix\n"
".global u_setMutexFunctions\n"
".type u_setMutexFunctions @function\n"
"u_setMutexFunctions:\n"
"jmp qword ptr [rip + __ptr_u_setMutexFunctions]\n");
static __attribute__ ((used)) void* __ptr_u_setTimeZoneFilesDirectory;
asm(".intel_syntax noprefix\n"
".global u_setTimeZoneFilesDirectory\n"
".type u_setTimeZoneFilesDirectory @function\n"
"u_setTimeZoneFilesDirectory:\n"
"jmp qword ptr [rip + __ptr_u_setTimeZoneFilesDirectory]\n");
static __attribute__ ((used)) void* __ptr_u_strCaseCompare;
asm(".intel_syntax noprefix\n"
".global u_strCaseCompare\n"
".type u_strCaseCompare @function\n"
"u_strCaseCompare:\n"
"jmp qword ptr [rip + __ptr_u_strCaseCompare]\n");
static __attribute__ ((used)) void* __ptr_u_strCompare;
asm(".intel_syntax noprefix\n"
".global u_strCompare\n"
".type u_strCompare @function\n"
"u_strCompare:\n"
"jmp qword ptr [rip + __ptr_u_strCompare]\n");
static __attribute__ ((used)) void* __ptr_u_strCompareIter;
asm(".intel_syntax noprefix\n"
".global u_strCompareIter\n"
".type u_strCompareIter @function\n"
"u_strCompareIter:\n"
"jmp qword ptr [rip + __ptr_u_strCompareIter]\n");
static __attribute__ ((used)) void* __ptr_u_strFindFirst;
asm(".intel_syntax noprefix\n"
".global u_strFindFirst\n"
".type u_strFindFirst @function\n"
"u_strFindFirst:\n"
"jmp qword ptr [rip + __ptr_u_strFindFirst]\n");
static __attribute__ ((used)) void* __ptr_u_strFindLast;
asm(".intel_syntax noprefix\n"
".global u_strFindLast\n"
".type u_strFindLast @function\n"
"u_strFindLast:\n"
"jmp qword ptr [rip + __ptr_u_strFindLast]\n");
static __attribute__ ((used)) void* __ptr_u_strFoldCase;
asm(".intel_syntax noprefix\n"
".global u_strFoldCase\n"
".type u_strFoldCase @function\n"
"u_strFoldCase:\n"
"jmp qword ptr [rip + __ptr_u_strFoldCase]\n");
static __attribute__ ((used)) void* __ptr_u_strFromJavaModifiedUTF8WithSub;
asm(".intel_syntax noprefix\n"
".global u_strFromJavaModifiedUTF8WithSub\n"
".type u_strFromJavaModifiedUTF8WithSub @function\n"
"u_strFromJavaModifiedUTF8WithSub:\n"
"jmp qword ptr [rip + __ptr_u_strFromJavaModifiedUTF8WithSub]\n");
static __attribute__ ((used)) void* __ptr_u_strFromUTF32;
asm(".intel_syntax noprefix\n"
".global u_strFromUTF32\n"
".type u_strFromUTF32 @function\n"
"u_strFromUTF32:\n"
"jmp qword ptr [rip + __ptr_u_strFromUTF32]\n");
static __attribute__ ((used)) void* __ptr_u_strFromUTF32WithSub;
asm(".intel_syntax noprefix\n"
".global u_strFromUTF32WithSub\n"
".type u_strFromUTF32WithSub @function\n"
"u_strFromUTF32WithSub:\n"
"jmp qword ptr [rip + __ptr_u_strFromUTF32WithSub]\n");
static __attribute__ ((used)) void* __ptr_u_strFromUTF8;
asm(".intel_syntax noprefix\n"
".global u_strFromUTF8\n"
".type u_strFromUTF8 @function\n"
"u_strFromUTF8:\n"
"jmp qword ptr [rip + __ptr_u_strFromUTF8]\n");
static __attribute__ ((used)) void* __ptr_u_strFromUTF8Lenient;
asm(".intel_syntax noprefix\n"
".global u_strFromUTF8Lenient\n"
".type u_strFromUTF8Lenient @function\n"
"u_strFromUTF8Lenient:\n"
"jmp qword ptr [rip + __ptr_u_strFromUTF8Lenient]\n");
static __attribute__ ((used)) void* __ptr_u_strFromUTF8WithSub;
asm(".intel_syntax noprefix\n"
".global u_strFromUTF8WithSub\n"
".type u_strFromUTF8WithSub @function\n"
"u_strFromUTF8WithSub:\n"
"jmp qword ptr [rip + __ptr_u_strFromUTF8WithSub]\n");
static __attribute__ ((used)) void* __ptr_u_strHasMoreChar32Than;
asm(".intel_syntax noprefix\n"
".global u_strHasMoreChar32Than\n"
".type u_strHasMoreChar32Than @function\n"
"u_strHasMoreChar32Than:\n"
"jmp qword ptr [rip + __ptr_u_strHasMoreChar32Than]\n");
static __attribute__ ((used)) void* __ptr_u_strToJavaModifiedUTF8;
asm(".intel_syntax noprefix\n"
".global u_strToJavaModifiedUTF8\n"
".type u_strToJavaModifiedUTF8 @function\n"
"u_strToJavaModifiedUTF8:\n"
"jmp qword ptr [rip + __ptr_u_strToJavaModifiedUTF8]\n");
static __attribute__ ((used)) void* __ptr_u_strToLower;
asm(".intel_syntax noprefix\n"
".global u_strToLower\n"
".type u_strToLower @function\n"
"u_strToLower:\n"
"jmp qword ptr [rip + __ptr_u_strToLower]\n");
static __attribute__ ((used)) void* __ptr_u_strToUTF32;
asm(".intel_syntax noprefix\n"
".global u_strToUTF32\n"
".type u_strToUTF32 @function\n"
"u_strToUTF32:\n"
"jmp qword ptr [rip + __ptr_u_strToUTF32]\n");
static __attribute__ ((used)) void* __ptr_u_strToUTF32WithSub;
asm(".intel_syntax noprefix\n"
".global u_strToUTF32WithSub\n"
".type u_strToUTF32WithSub @function\n"
"u_strToUTF32WithSub:\n"
"jmp qword ptr [rip + __ptr_u_strToUTF32WithSub]\n");
static __attribute__ ((used)) void* __ptr_u_strToUTF8;
asm(".intel_syntax noprefix\n"
".global u_strToUTF8\n"
".type u_strToUTF8 @function\n"
"u_strToUTF8:\n"
"jmp qword ptr [rip + __ptr_u_strToUTF8]\n");
static __attribute__ ((used)) void* __ptr_u_strToUTF8WithSub;
asm(".intel_syntax noprefix\n"
".global u_strToUTF8WithSub\n"
".type u_strToUTF8WithSub @function\n"
"u_strToUTF8WithSub:\n"
"jmp qword ptr [rip + __ptr_u_strToUTF8WithSub]\n");
static __attribute__ ((used)) void* __ptr_u_strToUpper;
asm(".intel_syntax noprefix\n"
".global u_strToUpper\n"
".type u_strToUpper @function\n"
"u_strToUpper:\n"
"jmp qword ptr [rip + __ptr_u_strToUpper]\n");
static __attribute__ ((used)) void* __ptr_u_strcasecmp;
asm(".intel_syntax noprefix\n"
".global u_strcasecmp\n"
".type u_strcasecmp @function\n"
"u_strcasecmp:\n"
"jmp qword ptr [rip + __ptr_u_strcasecmp]\n");
static __attribute__ ((used)) void* __ptr_u_strcat;
asm(".intel_syntax noprefix\n"
".global u_strcat\n"
".type u_strcat @function\n"
"u_strcat:\n"
"jmp qword ptr [rip + __ptr_u_strcat]\n");
static __attribute__ ((used)) void* __ptr_u_strchr;
asm(".intel_syntax noprefix\n"
".global u_strchr\n"
".type u_strchr @function\n"
"u_strchr:\n"
"jmp qword ptr [rip + __ptr_u_strchr]\n");
static __attribute__ ((used)) void* __ptr_u_strchr32;
asm(".intel_syntax noprefix\n"
".global u_strchr32\n"
".type u_strchr32 @function\n"
"u_strchr32:\n"
"jmp qword ptr [rip + __ptr_u_strchr32]\n");
static __attribute__ ((used)) void* __ptr_u_strcmp;
asm(".intel_syntax noprefix\n"
".global u_strcmp\n"
".type u_strcmp @function\n"
"u_strcmp:\n"
"jmp qword ptr [rip + __ptr_u_strcmp]\n");
static __attribute__ ((used)) void* __ptr_u_strcmpCodePointOrder;
asm(".intel_syntax noprefix\n"
".global u_strcmpCodePointOrder\n"
".type u_strcmpCodePointOrder @function\n"
"u_strcmpCodePointOrder:\n"
"jmp qword ptr [rip + __ptr_u_strcmpCodePointOrder]\n");
static __attribute__ ((used)) void* __ptr_u_strcpy;
asm(".intel_syntax noprefix\n"
".global u_strcpy\n"
".type u_strcpy @function\n"
"u_strcpy:\n"
"jmp qword ptr [rip + __ptr_u_strcpy]\n");
static __attribute__ ((used)) void* __ptr_u_strcspn;
asm(".intel_syntax noprefix\n"
".global u_strcspn\n"
".type u_strcspn @function\n"
"u_strcspn:\n"
"jmp qword ptr [rip + __ptr_u_strcspn]\n");
static __attribute__ ((used)) void* __ptr_u_strlen;
asm(".intel_syntax noprefix\n"
".global u_strlen\n"
".type u_strlen @function\n"
"u_strlen:\n"
"jmp qword ptr [rip + __ptr_u_strlen]\n");
static __attribute__ ((used)) void* __ptr_u_strncasecmp;
asm(".intel_syntax noprefix\n"
".global u_strncasecmp\n"
".type u_strncasecmp @function\n"
"u_strncasecmp:\n"
"jmp qword ptr [rip + __ptr_u_strncasecmp]\n");
static __attribute__ ((used)) void* __ptr_u_strncat;
asm(".intel_syntax noprefix\n"
".global u_strncat\n"
".type u_strncat @function\n"
"u_strncat:\n"
"jmp qword ptr [rip + __ptr_u_strncat]\n");
static __attribute__ ((used)) void* __ptr_u_strncmp;
asm(".intel_syntax noprefix\n"
".global u_strncmp\n"
".type u_strncmp @function\n"
"u_strncmp:\n"