-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibSceFont.c
1106 lines (967 loc) · 51.8 KB
/
libSceFont.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_sceFontAttachDeviceCacheBuffer;
asm(".intel_syntax noprefix\n"
".global sceFontAttachDeviceCacheBuffer\n"
".type sceFontAttachDeviceCacheBuffer @function\n"
"sceFontAttachDeviceCacheBuffer:\n"
"jmp qword ptr [rip + __ptr_sceFontAttachDeviceCacheBuffer]\n");
static __attribute__ ((used)) void* __ptr_sceFontBindRenderer;
asm(".intel_syntax noprefix\n"
".global sceFontBindRenderer\n"
".type sceFontBindRenderer @function\n"
"sceFontBindRenderer:\n"
"jmp qword ptr [rip + __ptr_sceFontBindRenderer]\n");
static __attribute__ ((used)) void* __ptr_sceFontCharacterGetBidiLevel;
asm(".intel_syntax noprefix\n"
".global sceFontCharacterGetBidiLevel\n"
".type sceFontCharacterGetBidiLevel @function\n"
"sceFontCharacterGetBidiLevel:\n"
"jmp qword ptr [rip + __ptr_sceFontCharacterGetBidiLevel]\n");
static __attribute__ ((used)) void* __ptr_sceFontCharacterGetSyllableStringState;
asm(".intel_syntax noprefix\n"
".global sceFontCharacterGetSyllableStringState\n"
".type sceFontCharacterGetSyllableStringState @function\n"
"sceFontCharacterGetSyllableStringState:\n"
"jmp qword ptr [rip + __ptr_sceFontCharacterGetSyllableStringState]\n");
static __attribute__ ((used)) void* __ptr_sceFontCharacterGetTextFontCode;
asm(".intel_syntax noprefix\n"
".global sceFontCharacterGetTextFontCode\n"
".type sceFontCharacterGetTextFontCode @function\n"
"sceFontCharacterGetTextFontCode:\n"
"jmp qword ptr [rip + __ptr_sceFontCharacterGetTextFontCode]\n");
static __attribute__ ((used)) void* __ptr_sceFontCharacterGetTextOrder;
asm(".intel_syntax noprefix\n"
".global sceFontCharacterGetTextOrder\n"
".type sceFontCharacterGetTextOrder @function\n"
"sceFontCharacterGetTextOrder:\n"
"jmp qword ptr [rip + __ptr_sceFontCharacterGetTextOrder]\n");
static __attribute__ ((used)) void* __ptr_sceFontCharacterLooksFormatCharacters;
asm(".intel_syntax noprefix\n"
".global sceFontCharacterLooksFormatCharacters\n"
".type sceFontCharacterLooksFormatCharacters @function\n"
"sceFontCharacterLooksFormatCharacters:\n"
"jmp qword ptr [rip + __ptr_sceFontCharacterLooksFormatCharacters]\n");
static __attribute__ ((used)) void* __ptr_sceFontCharacterLooksWhiteSpace;
asm(".intel_syntax noprefix\n"
".global sceFontCharacterLooksWhiteSpace\n"
".type sceFontCharacterLooksWhiteSpace @function\n"
"sceFontCharacterLooksWhiteSpace:\n"
"jmp qword ptr [rip + __ptr_sceFontCharacterLooksWhiteSpace]\n");
static __attribute__ ((used)) void* __ptr_sceFontCharacterRefersTextBack;
asm(".intel_syntax noprefix\n"
".global sceFontCharacterRefersTextBack\n"
".type sceFontCharacterRefersTextBack @function\n"
"sceFontCharacterRefersTextBack:\n"
"jmp qword ptr [rip + __ptr_sceFontCharacterRefersTextBack]\n");
static __attribute__ ((used)) void* __ptr_sceFontCharacterRefersTextNext;
asm(".intel_syntax noprefix\n"
".global sceFontCharacterRefersTextNext\n"
".type sceFontCharacterRefersTextNext @function\n"
"sceFontCharacterRefersTextNext:\n"
"jmp qword ptr [rip + __ptr_sceFontCharacterRefersTextNext]\n");
static __attribute__ ((used)) void* __ptr_sceFontCharactersRefersTextCodes;
asm(".intel_syntax noprefix\n"
".global sceFontCharactersRefersTextCodes\n"
".type sceFontCharactersRefersTextCodes @function\n"
"sceFontCharactersRefersTextCodes:\n"
"jmp qword ptr [rip + __ptr_sceFontCharactersRefersTextCodes]\n");
static __attribute__ ((used)) void* __ptr_sceFontClearDeviceCache;
asm(".intel_syntax noprefix\n"
".global sceFontClearDeviceCache\n"
".type sceFontClearDeviceCache @function\n"
"sceFontClearDeviceCache:\n"
"jmp qword ptr [rip + __ptr_sceFontClearDeviceCache]\n");
static __attribute__ ((used)) void* __ptr_sceFontCloseFont;
asm(".intel_syntax noprefix\n"
".global sceFontCloseFont\n"
".type sceFontCloseFont @function\n"
"sceFontCloseFont:\n"
"jmp qword ptr [rip + __ptr_sceFontCloseFont]\n");
static __attribute__ ((used)) void* __ptr_sceFontControl;
asm(".intel_syntax noprefix\n"
".global sceFontControl\n"
".type sceFontControl @function\n"
"sceFontControl:\n"
"jmp qword ptr [rip + __ptr_sceFontControl]\n");
static __attribute__ ((used)) void* __ptr_sceFontCreateLibrary;
asm(".intel_syntax noprefix\n"
".global sceFontCreateLibrary\n"
".type sceFontCreateLibrary @function\n"
"sceFontCreateLibrary:\n"
"jmp qword ptr [rip + __ptr_sceFontCreateLibrary]\n");
static __attribute__ ((used)) void* __ptr_sceFontCreateLibraryWithEdition;
asm(".intel_syntax noprefix\n"
".global sceFontCreateLibraryWithEdition\n"
".type sceFontCreateLibraryWithEdition @function\n"
"sceFontCreateLibraryWithEdition:\n"
"jmp qword ptr [rip + __ptr_sceFontCreateLibraryWithEdition]\n");
static __attribute__ ((used)) void* __ptr_sceFontCreateRenderer;
asm(".intel_syntax noprefix\n"
".global sceFontCreateRenderer\n"
".type sceFontCreateRenderer @function\n"
"sceFontCreateRenderer:\n"
"jmp qword ptr [rip + __ptr_sceFontCreateRenderer]\n");
static __attribute__ ((used)) void* __ptr_sceFontCreateRendererWithEdition;
asm(".intel_syntax noprefix\n"
".global sceFontCreateRendererWithEdition\n"
".type sceFontCreateRendererWithEdition @function\n"
"sceFontCreateRendererWithEdition:\n"
"jmp qword ptr [rip + __ptr_sceFontCreateRendererWithEdition]\n");
static __attribute__ ((used)) void* __ptr_sceFontCreateString;
asm(".intel_syntax noprefix\n"
".global sceFontCreateString\n"
".type sceFontCreateString @function\n"
"sceFontCreateString:\n"
"jmp qword ptr [rip + __ptr_sceFontCreateString]\n");
static __attribute__ ((used)) void* __ptr_sceFontCreateWords;
asm(".intel_syntax noprefix\n"
".global sceFontCreateWords\n"
".type sceFontCreateWords @function\n"
"sceFontCreateWords:\n"
"jmp qword ptr [rip + __ptr_sceFontCreateWords]\n");
static __attribute__ ((used)) void* __ptr_sceFontCreateWritingLine;
asm(".intel_syntax noprefix\n"
".global sceFontCreateWritingLine\n"
".type sceFontCreateWritingLine @function\n"
"sceFontCreateWritingLine:\n"
"jmp qword ptr [rip + __ptr_sceFontCreateWritingLine]\n");
static __attribute__ ((used)) void* __ptr_sceFontDefineAttribute;
asm(".intel_syntax noprefix\n"
".global sceFontDefineAttribute\n"
".type sceFontDefineAttribute @function\n"
"sceFontDefineAttribute:\n"
"jmp qword ptr [rip + __ptr_sceFontDefineAttribute]\n");
static __attribute__ ((used)) void* __ptr_sceFontDeleteGlyph;
asm(".intel_syntax noprefix\n"
".global sceFontDeleteGlyph\n"
".type sceFontDeleteGlyph @function\n"
"sceFontDeleteGlyph:\n"
"jmp qword ptr [rip + __ptr_sceFontDeleteGlyph]\n");
static __attribute__ ((used)) void* __ptr_sceFontDestroyLibrary;
asm(".intel_syntax noprefix\n"
".global sceFontDestroyLibrary\n"
".type sceFontDestroyLibrary @function\n"
"sceFontDestroyLibrary:\n"
"jmp qword ptr [rip + __ptr_sceFontDestroyLibrary]\n");
static __attribute__ ((used)) void* __ptr_sceFontDestroyRenderer;
asm(".intel_syntax noprefix\n"
".global sceFontDestroyRenderer\n"
".type sceFontDestroyRenderer @function\n"
"sceFontDestroyRenderer:\n"
"jmp qword ptr [rip + __ptr_sceFontDestroyRenderer]\n");
static __attribute__ ((used)) void* __ptr_sceFontDestroyString;
asm(".intel_syntax noprefix\n"
".global sceFontDestroyString\n"
".type sceFontDestroyString @function\n"
"sceFontDestroyString:\n"
"jmp qword ptr [rip + __ptr_sceFontDestroyString]\n");
static __attribute__ ((used)) void* __ptr_sceFontDestroyWords;
asm(".intel_syntax noprefix\n"
".global sceFontDestroyWords\n"
".type sceFontDestroyWords @function\n"
"sceFontDestroyWords:\n"
"jmp qword ptr [rip + __ptr_sceFontDestroyWords]\n");
static __attribute__ ((used)) void* __ptr_sceFontDestroyWritingLine;
asm(".intel_syntax noprefix\n"
".global sceFontDestroyWritingLine\n"
".type sceFontDestroyWritingLine @function\n"
"sceFontDestroyWritingLine:\n"
"jmp qword ptr [rip + __ptr_sceFontDestroyWritingLine]\n");
static __attribute__ ((used)) void* __ptr_sceFontDettachDeviceCacheBuffer;
asm(".intel_syntax noprefix\n"
".global sceFontDettachDeviceCacheBuffer\n"
".type sceFontDettachDeviceCacheBuffer @function\n"
"sceFontDettachDeviceCacheBuffer:\n"
"jmp qword ptr [rip + __ptr_sceFontDettachDeviceCacheBuffer]\n");
static __attribute__ ((used)) void* __ptr_sceFontGenerateCharGlyph;
asm(".intel_syntax noprefix\n"
".global sceFontGenerateCharGlyph\n"
".type sceFontGenerateCharGlyph @function\n"
"sceFontGenerateCharGlyph:\n"
"jmp qword ptr [rip + __ptr_sceFontGenerateCharGlyph]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetAttribute;
asm(".intel_syntax noprefix\n"
".global sceFontGetAttribute\n"
".type sceFontGetAttribute @function\n"
"sceFontGetAttribute:\n"
"jmp qword ptr [rip + __ptr_sceFontGetAttribute]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetCharGlyphCode;
asm(".intel_syntax noprefix\n"
".global sceFontGetCharGlyphCode\n"
".type sceFontGetCharGlyphCode @function\n"
"sceFontGetCharGlyphCode:\n"
"jmp qword ptr [rip + __ptr_sceFontGetCharGlyphCode]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetCharGlyphMetrics;
asm(".intel_syntax noprefix\n"
".global sceFontGetCharGlyphMetrics\n"
".type sceFontGetCharGlyphMetrics @function\n"
"sceFontGetCharGlyphMetrics:\n"
"jmp qword ptr [rip + __ptr_sceFontGetCharGlyphMetrics]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetEffectSlant;
asm(".intel_syntax noprefix\n"
".global sceFontGetEffectSlant\n"
".type sceFontGetEffectSlant @function\n"
"sceFontGetEffectSlant:\n"
"jmp qword ptr [rip + __ptr_sceFontGetEffectSlant]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetEffectWeight;
asm(".intel_syntax noprefix\n"
".global sceFontGetEffectWeight\n"
".type sceFontGetEffectWeight @function\n"
"sceFontGetEffectWeight:\n"
"jmp qword ptr [rip + __ptr_sceFontGetEffectWeight]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetFontGlyphsCount;
asm(".intel_syntax noprefix\n"
".global sceFontGetFontGlyphsCount\n"
".type sceFontGetFontGlyphsCount @function\n"
"sceFontGetFontGlyphsCount:\n"
"jmp qword ptr [rip + __ptr_sceFontGetFontGlyphsCount]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetFontGlyphsOutlineProfile;
asm(".intel_syntax noprefix\n"
".global sceFontGetFontGlyphsOutlineProfile\n"
".type sceFontGetFontGlyphsOutlineProfile @function\n"
"sceFontGetFontGlyphsOutlineProfile:\n"
"jmp qword ptr [rip + __ptr_sceFontGetFontGlyphsOutlineProfile]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetFontMetrics;
asm(".intel_syntax noprefix\n"
".global sceFontGetFontMetrics\n"
".type sceFontGetFontMetrics @function\n"
"sceFontGetFontMetrics:\n"
"jmp qword ptr [rip + __ptr_sceFontGetFontMetrics]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetFontResolution;
asm(".intel_syntax noprefix\n"
".global sceFontGetFontResolution\n"
".type sceFontGetFontResolution @function\n"
"sceFontGetFontResolution:\n"
"jmp qword ptr [rip + __ptr_sceFontGetFontResolution]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetFontStyleInformation;
asm(".intel_syntax noprefix\n"
".global sceFontGetFontStyleInformation\n"
".type sceFontGetFontStyleInformation @function\n"
"sceFontGetFontStyleInformation:\n"
"jmp qword ptr [rip + __ptr_sceFontGetFontStyleInformation]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetGlyphExpandBufferState;
asm(".intel_syntax noprefix\n"
".global sceFontGetGlyphExpandBufferState\n"
".type sceFontGetGlyphExpandBufferState @function\n"
"sceFontGetGlyphExpandBufferState:\n"
"jmp qword ptr [rip + __ptr_sceFontGetGlyphExpandBufferState]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetHorizontalLayout;
asm(".intel_syntax noprefix\n"
".global sceFontGetHorizontalLayout\n"
".type sceFontGetHorizontalLayout @function\n"
"sceFontGetHorizontalLayout:\n"
"jmp qword ptr [rip + __ptr_sceFontGetHorizontalLayout]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetKerning;
asm(".intel_syntax noprefix\n"
".global sceFontGetKerning\n"
".type sceFontGetKerning @function\n"
"sceFontGetKerning:\n"
"jmp qword ptr [rip + __ptr_sceFontGetKerning]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetLibrary;
asm(".intel_syntax noprefix\n"
".global sceFontGetLibrary\n"
".type sceFontGetLibrary @function\n"
"sceFontGetLibrary:\n"
"jmp qword ptr [rip + __ptr_sceFontGetLibrary]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetPixelResolution;
asm(".intel_syntax noprefix\n"
".global sceFontGetPixelResolution\n"
".type sceFontGetPixelResolution @function\n"
"sceFontGetPixelResolution:\n"
"jmp qword ptr [rip + __ptr_sceFontGetPixelResolution]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetRenderCharGlyphMetrics;
asm(".intel_syntax noprefix\n"
".global sceFontGetRenderCharGlyphMetrics\n"
".type sceFontGetRenderCharGlyphMetrics @function\n"
"sceFontGetRenderCharGlyphMetrics:\n"
"jmp qword ptr [rip + __ptr_sceFontGetRenderCharGlyphMetrics]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetRenderEffectSlant;
asm(".intel_syntax noprefix\n"
".global sceFontGetRenderEffectSlant\n"
".type sceFontGetRenderEffectSlant @function\n"
"sceFontGetRenderEffectSlant:\n"
"jmp qword ptr [rip + __ptr_sceFontGetRenderEffectSlant]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetRenderEffectWeight;
asm(".intel_syntax noprefix\n"
".global sceFontGetRenderEffectWeight\n"
".type sceFontGetRenderEffectWeight @function\n"
"sceFontGetRenderEffectWeight:\n"
"jmp qword ptr [rip + __ptr_sceFontGetRenderEffectWeight]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetRenderScalePixel;
asm(".intel_syntax noprefix\n"
".global sceFontGetRenderScalePixel\n"
".type sceFontGetRenderScalePixel @function\n"
"sceFontGetRenderScalePixel:\n"
"jmp qword ptr [rip + __ptr_sceFontGetRenderScalePixel]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetRenderScalePoint;
asm(".intel_syntax noprefix\n"
".global sceFontGetRenderScalePoint\n"
".type sceFontGetRenderScalePoint @function\n"
"sceFontGetRenderScalePoint:\n"
"jmp qword ptr [rip + __ptr_sceFontGetRenderScalePoint]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetRenderScaledKerning;
asm(".intel_syntax noprefix\n"
".global sceFontGetRenderScaledKerning\n"
".type sceFontGetRenderScaledKerning @function\n"
"sceFontGetRenderScaledKerning:\n"
"jmp qword ptr [rip + __ptr_sceFontGetRenderScaledKerning]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetResolutionDpi;
asm(".intel_syntax noprefix\n"
".global sceFontGetResolutionDpi\n"
".type sceFontGetResolutionDpi @function\n"
"sceFontGetResolutionDpi:\n"
"jmp qword ptr [rip + __ptr_sceFontGetResolutionDpi]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetScalePixel;
asm(".intel_syntax noprefix\n"
".global sceFontGetScalePixel\n"
".type sceFontGetScalePixel @function\n"
"sceFontGetScalePixel:\n"
"jmp qword ptr [rip + __ptr_sceFontGetScalePixel]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetScalePoint;
asm(".intel_syntax noprefix\n"
".global sceFontGetScalePoint\n"
".type sceFontGetScalePoint @function\n"
"sceFontGetScalePoint:\n"
"jmp qword ptr [rip + __ptr_sceFontGetScalePoint]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetScriptLanguage;
asm(".intel_syntax noprefix\n"
".global sceFontGetScriptLanguage\n"
".type sceFontGetScriptLanguage @function\n"
"sceFontGetScriptLanguage:\n"
"jmp qword ptr [rip + __ptr_sceFontGetScriptLanguage]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetTypographicDesign;
asm(".intel_syntax noprefix\n"
".global sceFontGetTypographicDesign\n"
".type sceFontGetTypographicDesign @function\n"
"sceFontGetTypographicDesign:\n"
"jmp qword ptr [rip + __ptr_sceFontGetTypographicDesign]\n");
static __attribute__ ((used)) void* __ptr_sceFontGetVerticalLayout;
asm(".intel_syntax noprefix\n"
".global sceFontGetVerticalLayout\n"
".type sceFontGetVerticalLayout @function\n"
"sceFontGetVerticalLayout:\n"
"jmp qword ptr [rip + __ptr_sceFontGetVerticalLayout]\n");
static __attribute__ ((used)) void* __ptr_sceFontGlyphDefineAttribute;
asm(".intel_syntax noprefix\n"
".global sceFontGlyphDefineAttribute\n"
".type sceFontGlyphDefineAttribute @function\n"
"sceFontGlyphDefineAttribute:\n"
"jmp qword ptr [rip + __ptr_sceFontGlyphDefineAttribute]\n");
static __attribute__ ((used)) void* __ptr_sceFontGlyphGetAttribute;
asm(".intel_syntax noprefix\n"
".global sceFontGlyphGetAttribute\n"
".type sceFontGlyphGetAttribute @function\n"
"sceFontGlyphGetAttribute:\n"
"jmp qword ptr [rip + __ptr_sceFontGlyphGetAttribute]\n");
static __attribute__ ((used)) void* __ptr_sceFontGlyphGetGlyphForm;
asm(".intel_syntax noprefix\n"
".global sceFontGlyphGetGlyphForm\n"
".type sceFontGlyphGetGlyphForm @function\n"
"sceFontGlyphGetGlyphForm:\n"
"jmp qword ptr [rip + __ptr_sceFontGlyphGetGlyphForm]\n");
static __attribute__ ((used)) void* __ptr_sceFontGlyphGetMetricsForm;
asm(".intel_syntax noprefix\n"
".global sceFontGlyphGetMetricsForm\n"
".type sceFontGlyphGetMetricsForm @function\n"
"sceFontGlyphGetMetricsForm:\n"
"jmp qword ptr [rip + __ptr_sceFontGlyphGetMetricsForm]\n");
static __attribute__ ((used)) void* __ptr_sceFontGlyphRefersMetrics;
asm(".intel_syntax noprefix\n"
".global sceFontGlyphRefersMetrics\n"
".type sceFontGlyphRefersMetrics @function\n"
"sceFontGlyphRefersMetrics:\n"
"jmp qword ptr [rip + __ptr_sceFontGlyphRefersMetrics]\n");
static __attribute__ ((used)) void* __ptr_sceFontGlyphRefersMetricsHorizontal;
asm(".intel_syntax noprefix\n"
".global sceFontGlyphRefersMetricsHorizontal\n"
".type sceFontGlyphRefersMetricsHorizontal @function\n"
"sceFontGlyphRefersMetricsHorizontal:\n"
"jmp qword ptr [rip + __ptr_sceFontGlyphRefersMetricsHorizontal]\n");
static __attribute__ ((used)) void* __ptr_sceFontGlyphRefersMetricsHorizontalAdvance;
asm(".intel_syntax noprefix\n"
".global sceFontGlyphRefersMetricsHorizontalAdvance\n"
".type sceFontGlyphRefersMetricsHorizontalAdvance @function\n"
"sceFontGlyphRefersMetricsHorizontalAdvance:\n"
"jmp qword ptr [rip + __ptr_sceFontGlyphRefersMetricsHorizontalAdvance]\n");
static __attribute__ ((used)) void* __ptr_sceFontGlyphRefersMetricsHorizontalX;
asm(".intel_syntax noprefix\n"
".global sceFontGlyphRefersMetricsHorizontalX\n"
".type sceFontGlyphRefersMetricsHorizontalX @function\n"
"sceFontGlyphRefersMetricsHorizontalX:\n"
"jmp qword ptr [rip + __ptr_sceFontGlyphRefersMetricsHorizontalX]\n");
static __attribute__ ((used)) void* __ptr_sceFontGlyphRefersOutline;
asm(".intel_syntax noprefix\n"
".global sceFontGlyphRefersOutline\n"
".type sceFontGlyphRefersOutline @function\n"
"sceFontGlyphRefersOutline:\n"
"jmp qword ptr [rip + __ptr_sceFontGlyphRefersOutline]\n");
static __attribute__ ((used)) void* __ptr_sceFontGlyphRenderImage;
asm(".intel_syntax noprefix\n"
".global sceFontGlyphRenderImage\n"
".type sceFontGlyphRenderImage @function\n"
"sceFontGlyphRenderImage:\n"
"jmp qword ptr [rip + __ptr_sceFontGlyphRenderImage]\n");
static __attribute__ ((used)) void* __ptr_sceFontGlyphRenderImageHorizontal;
asm(".intel_syntax noprefix\n"
".global sceFontGlyphRenderImageHorizontal\n"
".type sceFontGlyphRenderImageHorizontal @function\n"
"sceFontGlyphRenderImageHorizontal:\n"
"jmp qword ptr [rip + __ptr_sceFontGlyphRenderImageHorizontal]\n");
static __attribute__ ((used)) void* __ptr_sceFontGlyphRenderImageVertical;
asm(".intel_syntax noprefix\n"
".global sceFontGlyphRenderImageVertical\n"
".type sceFontGlyphRenderImageVertical @function\n"
"sceFontGlyphRenderImageVertical:\n"
"jmp qword ptr [rip + __ptr_sceFontGlyphRenderImageVertical]\n");
static __attribute__ ((used)) void* __ptr_sceFontMemoryInit;
asm(".intel_syntax noprefix\n"
".global sceFontMemoryInit\n"
".type sceFontMemoryInit @function\n"
"sceFontMemoryInit:\n"
"jmp qword ptr [rip + __ptr_sceFontMemoryInit]\n");
static __attribute__ ((used)) void* __ptr_sceFontMemoryTerm;
asm(".intel_syntax noprefix\n"
".global sceFontMemoryTerm\n"
".type sceFontMemoryTerm @function\n"
"sceFontMemoryTerm:\n"
"jmp qword ptr [rip + __ptr_sceFontMemoryTerm]\n");
static __attribute__ ((used)) void* __ptr_sceFontOpenFontFile;
asm(".intel_syntax noprefix\n"
".global sceFontOpenFontFile\n"
".type sceFontOpenFontFile @function\n"
"sceFontOpenFontFile:\n"
"jmp qword ptr [rip + __ptr_sceFontOpenFontFile]\n");
static __attribute__ ((used)) void* __ptr_sceFontOpenFontInstance;
asm(".intel_syntax noprefix\n"
".global sceFontOpenFontInstance\n"
".type sceFontOpenFontInstance @function\n"
"sceFontOpenFontInstance:\n"
"jmp qword ptr [rip + __ptr_sceFontOpenFontInstance]\n");
static __attribute__ ((used)) void* __ptr_sceFontOpenFontMemory;
asm(".intel_syntax noprefix\n"
".global sceFontOpenFontMemory\n"
".type sceFontOpenFontMemory @function\n"
"sceFontOpenFontMemory:\n"
"jmp qword ptr [rip + __ptr_sceFontOpenFontMemory]\n");
static __attribute__ ((used)) void* __ptr_sceFontOpenFontSet;
asm(".intel_syntax noprefix\n"
".global sceFontOpenFontSet\n"
".type sceFontOpenFontSet @function\n"
"sceFontOpenFontSet:\n"
"jmp qword ptr [rip + __ptr_sceFontOpenFontSet]\n");
static __attribute__ ((used)) void* __ptr_sceFontRebindRenderer;
asm(".intel_syntax noprefix\n"
".global sceFontRebindRenderer\n"
".type sceFontRebindRenderer @function\n"
"sceFontRebindRenderer:\n"
"jmp qword ptr [rip + __ptr_sceFontRebindRenderer]\n");
static __attribute__ ((used)) void* __ptr_sceFontRenderCharGlyphImage;
asm(".intel_syntax noprefix\n"
".global sceFontRenderCharGlyphImage\n"
".type sceFontRenderCharGlyphImage @function\n"
"sceFontRenderCharGlyphImage:\n"
"jmp qword ptr [rip + __ptr_sceFontRenderCharGlyphImage]\n");
static __attribute__ ((used)) void* __ptr_sceFontRenderCharGlyphImageHorizontal;
asm(".intel_syntax noprefix\n"
".global sceFontRenderCharGlyphImageHorizontal\n"
".type sceFontRenderCharGlyphImageHorizontal @function\n"
"sceFontRenderCharGlyphImageHorizontal:\n"
"jmp qword ptr [rip + __ptr_sceFontRenderCharGlyphImageHorizontal]\n");
static __attribute__ ((used)) void* __ptr_sceFontRenderCharGlyphImageVertical;
asm(".intel_syntax noprefix\n"
".global sceFontRenderCharGlyphImageVertical\n"
".type sceFontRenderCharGlyphImageVertical @function\n"
"sceFontRenderCharGlyphImageVertical:\n"
"jmp qword ptr [rip + __ptr_sceFontRenderCharGlyphImageVertical]\n");
static __attribute__ ((used)) void* __ptr_sceFontRenderSurfaceInit;
asm(".intel_syntax noprefix\n"
".global sceFontRenderSurfaceInit\n"
".type sceFontRenderSurfaceInit @function\n"
"sceFontRenderSurfaceInit:\n"
"jmp qword ptr [rip + __ptr_sceFontRenderSurfaceInit]\n");
static __attribute__ ((used)) void* __ptr_sceFontRenderSurfaceSetScissor;
asm(".intel_syntax noprefix\n"
".global sceFontRenderSurfaceSetScissor\n"
".type sceFontRenderSurfaceSetScissor @function\n"
"sceFontRenderSurfaceSetScissor:\n"
"jmp qword ptr [rip + __ptr_sceFontRenderSurfaceSetScissor]\n");
static __attribute__ ((used)) void* __ptr_sceFontRenderSurfaceSetStyleFrame;
asm(".intel_syntax noprefix\n"
".global sceFontRenderSurfaceSetStyleFrame\n"
".type sceFontRenderSurfaceSetStyleFrame @function\n"
"sceFontRenderSurfaceSetStyleFrame:\n"
"jmp qword ptr [rip + __ptr_sceFontRenderSurfaceSetStyleFrame]\n");
static __attribute__ ((used)) void* __ptr_sceFontRendererGetOutlineBufferSize;
asm(".intel_syntax noprefix\n"
".global sceFontRendererGetOutlineBufferSize\n"
".type sceFontRendererGetOutlineBufferSize @function\n"
"sceFontRendererGetOutlineBufferSize:\n"
"jmp qword ptr [rip + __ptr_sceFontRendererGetOutlineBufferSize]\n");
static __attribute__ ((used)) void* __ptr_sceFontRendererResetOutlineBuffer;
asm(".intel_syntax noprefix\n"
".global sceFontRendererResetOutlineBuffer\n"
".type sceFontRendererResetOutlineBuffer @function\n"
"sceFontRendererResetOutlineBuffer:\n"
"jmp qword ptr [rip + __ptr_sceFontRendererResetOutlineBuffer]\n");
static __attribute__ ((used)) void* __ptr_sceFontRendererSetOutlineBufferPolicy;
asm(".intel_syntax noprefix\n"
".global sceFontRendererSetOutlineBufferPolicy\n"
".type sceFontRendererSetOutlineBufferPolicy @function\n"
"sceFontRendererSetOutlineBufferPolicy:\n"
"jmp qword ptr [rip + __ptr_sceFontRendererSetOutlineBufferPolicy]\n");
static __attribute__ ((used)) void* __ptr_sceFontSetEffectSlant;
asm(".intel_syntax noprefix\n"
".global sceFontSetEffectSlant\n"
".type sceFontSetEffectSlant @function\n"
"sceFontSetEffectSlant:\n"
"jmp qword ptr [rip + __ptr_sceFontSetEffectSlant]\n");
static __attribute__ ((used)) void* __ptr_sceFontSetEffectWeight;
asm(".intel_syntax noprefix\n"
".global sceFontSetEffectWeight\n"
".type sceFontSetEffectWeight @function\n"
"sceFontSetEffectWeight:\n"
"jmp qword ptr [rip + __ptr_sceFontSetEffectWeight]\n");
static __attribute__ ((used)) void* __ptr_sceFontSetFontsOpenMode;
asm(".intel_syntax noprefix\n"
".global sceFontSetFontsOpenMode\n"
".type sceFontSetFontsOpenMode @function\n"
"sceFontSetFontsOpenMode:\n"
"jmp qword ptr [rip + __ptr_sceFontSetFontsOpenMode]\n");
static __attribute__ ((used)) void* __ptr_sceFontSetResolutionDpi;
asm(".intel_syntax noprefix\n"
".global sceFontSetResolutionDpi\n"
".type sceFontSetResolutionDpi @function\n"
"sceFontSetResolutionDpi:\n"
"jmp qword ptr [rip + __ptr_sceFontSetResolutionDpi]\n");
static __attribute__ ((used)) void* __ptr_sceFontSetScalePixel;
asm(".intel_syntax noprefix\n"
".global sceFontSetScalePixel\n"
".type sceFontSetScalePixel @function\n"
"sceFontSetScalePixel:\n"
"jmp qword ptr [rip + __ptr_sceFontSetScalePixel]\n");
static __attribute__ ((used)) void* __ptr_sceFontSetScalePoint;
asm(".intel_syntax noprefix\n"
".global sceFontSetScalePoint\n"
".type sceFontSetScalePoint @function\n"
"sceFontSetScalePoint:\n"
"jmp qword ptr [rip + __ptr_sceFontSetScalePoint]\n");
static __attribute__ ((used)) void* __ptr_sceFontSetScriptLanguage;
asm(".intel_syntax noprefix\n"
".global sceFontSetScriptLanguage\n"
".type sceFontSetScriptLanguage @function\n"
"sceFontSetScriptLanguage:\n"
"jmp qword ptr [rip + __ptr_sceFontSetScriptLanguage]\n");
static __attribute__ ((used)) void* __ptr_sceFontSetTypographicDesign;
asm(".intel_syntax noprefix\n"
".global sceFontSetTypographicDesign\n"
".type sceFontSetTypographicDesign @function\n"
"sceFontSetTypographicDesign:\n"
"jmp qword ptr [rip + __ptr_sceFontSetTypographicDesign]\n");
static __attribute__ ((used)) void* __ptr_sceFontSetupRenderEffectSlant;
asm(".intel_syntax noprefix\n"
".global sceFontSetupRenderEffectSlant\n"
".type sceFontSetupRenderEffectSlant @function\n"
"sceFontSetupRenderEffectSlant:\n"
"jmp qword ptr [rip + __ptr_sceFontSetupRenderEffectSlant]\n");
static __attribute__ ((used)) void* __ptr_sceFontSetupRenderEffectWeight;
asm(".intel_syntax noprefix\n"
".global sceFontSetupRenderEffectWeight\n"
".type sceFontSetupRenderEffectWeight @function\n"
"sceFontSetupRenderEffectWeight:\n"
"jmp qword ptr [rip + __ptr_sceFontSetupRenderEffectWeight]\n");
static __attribute__ ((used)) void* __ptr_sceFontSetupRenderScalePixel;
asm(".intel_syntax noprefix\n"
".global sceFontSetupRenderScalePixel\n"
".type sceFontSetupRenderScalePixel @function\n"
"sceFontSetupRenderScalePixel:\n"
"jmp qword ptr [rip + __ptr_sceFontSetupRenderScalePixel]\n");
static __attribute__ ((used)) void* __ptr_sceFontSetupRenderScalePoint;
asm(".intel_syntax noprefix\n"
".global sceFontSetupRenderScalePoint\n"
".type sceFontSetupRenderScalePoint @function\n"
"sceFontSetupRenderScalePoint:\n"
"jmp qword ptr [rip + __ptr_sceFontSetupRenderScalePoint]\n");
static __attribute__ ((used)) void* __ptr_sceFontStringGetTerminateCode;
asm(".intel_syntax noprefix\n"
".global sceFontStringGetTerminateCode\n"
".type sceFontStringGetTerminateCode @function\n"
"sceFontStringGetTerminateCode:\n"
"jmp qword ptr [rip + __ptr_sceFontStringGetTerminateCode]\n");
static __attribute__ ((used)) void* __ptr_sceFontStringGetTerminateOrder;
asm(".intel_syntax noprefix\n"
".global sceFontStringGetTerminateOrder\n"
".type sceFontStringGetTerminateOrder @function\n"
"sceFontStringGetTerminateOrder:\n"
"jmp qword ptr [rip + __ptr_sceFontStringGetTerminateOrder]\n");
static __attribute__ ((used)) void* __ptr_sceFontStringGetWritingForm;
asm(".intel_syntax noprefix\n"
".global sceFontStringGetWritingForm\n"
".type sceFontStringGetWritingForm @function\n"
"sceFontStringGetWritingForm:\n"
"jmp qword ptr [rip + __ptr_sceFontStringGetWritingForm]\n");
static __attribute__ ((used)) void* __ptr_sceFontStringRefersRenderCharacters;
asm(".intel_syntax noprefix\n"
".global sceFontStringRefersRenderCharacters\n"
".type sceFontStringRefersRenderCharacters @function\n"
"sceFontStringRefersRenderCharacters:\n"
"jmp qword ptr [rip + __ptr_sceFontStringRefersRenderCharacters]\n");
static __attribute__ ((used)) void* __ptr_sceFontStringRefersTextCharacters;
asm(".intel_syntax noprefix\n"
".global sceFontStringRefersTextCharacters\n"
".type sceFontStringRefersTextCharacters @function\n"
"sceFontStringRefersTextCharacters:\n"
"jmp qword ptr [rip + __ptr_sceFontStringRefersTextCharacters]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameGetEffectSlant;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameGetEffectSlant\n"
".type sceFontStyleFrameGetEffectSlant @function\n"
"sceFontStyleFrameGetEffectSlant:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameGetEffectSlant]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameGetEffectWeight;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameGetEffectWeight\n"
".type sceFontStyleFrameGetEffectWeight @function\n"
"sceFontStyleFrameGetEffectWeight:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameGetEffectWeight]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameGetResolutionDpi;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameGetResolutionDpi\n"
".type sceFontStyleFrameGetResolutionDpi @function\n"
"sceFontStyleFrameGetResolutionDpi:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameGetResolutionDpi]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameGetScalePixel;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameGetScalePixel\n"
".type sceFontStyleFrameGetScalePixel @function\n"
"sceFontStyleFrameGetScalePixel:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameGetScalePixel]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameGetScalePoint;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameGetScalePoint\n"
".type sceFontStyleFrameGetScalePoint @function\n"
"sceFontStyleFrameGetScalePoint:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameGetScalePoint]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameInit;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameInit\n"
".type sceFontStyleFrameInit @function\n"
"sceFontStyleFrameInit:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameInit]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameSetEffectSlant;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameSetEffectSlant\n"
".type sceFontStyleFrameSetEffectSlant @function\n"
"sceFontStyleFrameSetEffectSlant:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameSetEffectSlant]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameSetEffectWeight;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameSetEffectWeight\n"
".type sceFontStyleFrameSetEffectWeight @function\n"
"sceFontStyleFrameSetEffectWeight:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameSetEffectWeight]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameSetResolutionDpi;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameSetResolutionDpi\n"
".type sceFontStyleFrameSetResolutionDpi @function\n"
"sceFontStyleFrameSetResolutionDpi:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameSetResolutionDpi]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameSetScalePixel;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameSetScalePixel\n"
".type sceFontStyleFrameSetScalePixel @function\n"
"sceFontStyleFrameSetScalePixel:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameSetScalePixel]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameSetScalePoint;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameSetScalePoint\n"
".type sceFontStyleFrameSetScalePoint @function\n"
"sceFontStyleFrameSetScalePoint:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameSetScalePoint]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameUnsetEffectSlant;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameUnsetEffectSlant\n"
".type sceFontStyleFrameUnsetEffectSlant @function\n"
"sceFontStyleFrameUnsetEffectSlant:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameUnsetEffectSlant]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameUnsetEffectWeight;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameUnsetEffectWeight\n"
".type sceFontStyleFrameUnsetEffectWeight @function\n"
"sceFontStyleFrameUnsetEffectWeight:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameUnsetEffectWeight]\n");
static __attribute__ ((used)) void* __ptr_sceFontStyleFrameUnsetScale;
asm(".intel_syntax noprefix\n"
".global sceFontStyleFrameUnsetScale\n"
".type sceFontStyleFrameUnsetScale @function\n"
"sceFontStyleFrameUnsetScale:\n"
"jmp qword ptr [rip + __ptr_sceFontStyleFrameUnsetScale]\n");
static __attribute__ ((used)) void* __ptr_sceFontSupportExternalFonts;
asm(".intel_syntax noprefix\n"
".global sceFontSupportExternalFonts\n"
".type sceFontSupportExternalFonts @function\n"
"sceFontSupportExternalFonts:\n"
"jmp qword ptr [rip + __ptr_sceFontSupportExternalFonts]\n");
static __attribute__ ((used)) void* __ptr_sceFontSupportSystemFonts;
asm(".intel_syntax noprefix\n"
".global sceFontSupportSystemFonts\n"
".type sceFontSupportSystemFonts @function\n"
"sceFontSupportSystemFonts:\n"
"jmp qword ptr [rip + __ptr_sceFontSupportSystemFonts]\n");
static __attribute__ ((used)) void* __ptr_sceFontTextCodesStepBack;
asm(".intel_syntax noprefix\n"
".global sceFontTextCodesStepBack\n"
".type sceFontTextCodesStepBack @function\n"
"sceFontTextCodesStepBack:\n"
"jmp qword ptr [rip + __ptr_sceFontTextCodesStepBack]\n");
static __attribute__ ((used)) void* __ptr_sceFontTextCodesStepNext;
asm(".intel_syntax noprefix\n"
".global sceFontTextCodesStepNext\n"
".type sceFontTextCodesStepNext @function\n"
"sceFontTextCodesStepNext:\n"
"jmp qword ptr [rip + __ptr_sceFontTextCodesStepNext]\n");
static __attribute__ ((used)) void* __ptr_sceFontTextSourceInit;
asm(".intel_syntax noprefix\n"
".global sceFontTextSourceInit\n"
".type sceFontTextSourceInit @function\n"
"sceFontTextSourceInit:\n"
"jmp qword ptr [rip + __ptr_sceFontTextSourceInit]\n");
static __attribute__ ((used)) void* __ptr_sceFontTextSourceRewind;
asm(".intel_syntax noprefix\n"
".global sceFontTextSourceRewind\n"
".type sceFontTextSourceRewind @function\n"
"sceFontTextSourceRewind:\n"
"jmp qword ptr [rip + __ptr_sceFontTextSourceRewind]\n");
static __attribute__ ((used)) void* __ptr_sceFontTextSourceSetDefaultFont;
asm(".intel_syntax noprefix\n"
".global sceFontTextSourceSetDefaultFont\n"
".type sceFontTextSourceSetDefaultFont @function\n"
"sceFontTextSourceSetDefaultFont:\n"
"jmp qword ptr [rip + __ptr_sceFontTextSourceSetDefaultFont]\n");
static __attribute__ ((used)) void* __ptr_sceFontTextSourceSetWritingForm;
asm(".intel_syntax noprefix\n"
".global sceFontTextSourceSetWritingForm\n"
".type sceFontTextSourceSetWritingForm @function\n"
"sceFontTextSourceSetWritingForm:\n"
"jmp qword ptr [rip + __ptr_sceFontTextSourceSetWritingForm]\n");
static __attribute__ ((used)) void* __ptr_sceFontUnbindRenderer;
asm(".intel_syntax noprefix\n"
".global sceFontUnbindRenderer\n"
".type sceFontUnbindRenderer @function\n"
"sceFontUnbindRenderer:\n"
"jmp qword ptr [rip + __ptr_sceFontUnbindRenderer]\n");
static __attribute__ ((used)) void* __ptr_sceFontWordsFindWordCharacters;
asm(".intel_syntax noprefix\n"
".global sceFontWordsFindWordCharacters\n"
".type sceFontWordsFindWordCharacters @function\n"
"sceFontWordsFindWordCharacters:\n"
"jmp qword ptr [rip + __ptr_sceFontWordsFindWordCharacters]\n");
static __attribute__ ((used)) void* __ptr_sceFontWritingGetRenderMetrics;
asm(".intel_syntax noprefix\n"
".global sceFontWritingGetRenderMetrics\n"
".type sceFontWritingGetRenderMetrics @function\n"
"sceFontWritingGetRenderMetrics:\n"
"jmp qword ptr [rip + __ptr_sceFontWritingGetRenderMetrics]\n");
static __attribute__ ((used)) void* __ptr_sceFontWritingInit;
asm(".intel_syntax noprefix\n"
".global sceFontWritingInit\n"
".type sceFontWritingInit @function\n"
"sceFontWritingInit:\n"
"jmp qword ptr [rip + __ptr_sceFontWritingInit]\n");
static __attribute__ ((used)) void* __ptr_sceFontWritingLineClear;
asm(".intel_syntax noprefix\n"
".global sceFontWritingLineClear\n"
".type sceFontWritingLineClear @function\n"
"sceFontWritingLineClear:\n"
"jmp qword ptr [rip + __ptr_sceFontWritingLineClear]\n");
static __attribute__ ((used)) void* __ptr_sceFontWritingLineGetOrderingSpace;
asm(".intel_syntax noprefix\n"
".global sceFontWritingLineGetOrderingSpace\n"
".type sceFontWritingLineGetOrderingSpace @function\n"
"sceFontWritingLineGetOrderingSpace:\n"
"jmp qword ptr [rip + __ptr_sceFontWritingLineGetOrderingSpace]\n");
static __attribute__ ((used)) void* __ptr_sceFontWritingLineGetRenderMetrics;
asm(".intel_syntax noprefix\n"
".global sceFontWritingLineGetRenderMetrics\n"
".type sceFontWritingLineGetRenderMetrics @function\n"
"sceFontWritingLineGetRenderMetrics:\n"
"jmp qword ptr [rip + __ptr_sceFontWritingLineGetRenderMetrics]\n");
static __attribute__ ((used)) void* __ptr_sceFontWritingLineRefersRenderStep;
asm(".intel_syntax noprefix\n"
".global sceFontWritingLineRefersRenderStep\n"
".type sceFontWritingLineRefersRenderStep @function\n"
"sceFontWritingLineRefersRenderStep:\n"
"jmp qword ptr [rip + __ptr_sceFontWritingLineRefersRenderStep]\n");
static __attribute__ ((used)) void* __ptr_sceFontWritingLineWritesOrder;
asm(".intel_syntax noprefix\n"
".global sceFontWritingLineWritesOrder\n"
".type sceFontWritingLineWritesOrder @function\n"
"sceFontWritingLineWritesOrder:\n"
"jmp qword ptr [rip + __ptr_sceFontWritingLineWritesOrder]\n");
static __attribute__ ((used)) void* __ptr_sceFontWritingRefersRenderStep;
asm(".intel_syntax noprefix\n"
".global sceFontWritingRefersRenderStep\n"
".type sceFontWritingRefersRenderStep @function\n"
"sceFontWritingRefersRenderStep:\n"
"jmp qword ptr [rip + __ptr_sceFontWritingRefersRenderStep]\n");
static __attribute__ ((used)) void* __ptr_sceFontWritingRefersRenderStepCharacter;
asm(".intel_syntax noprefix\n"
".global sceFontWritingRefersRenderStepCharacter\n"
".type sceFontWritingRefersRenderStepCharacter @function\n"
"sceFontWritingRefersRenderStepCharacter:\n"
"jmp qword ptr [rip + __ptr_sceFontWritingRefersRenderStepCharacter]\n");
static __attribute__ ((used)) void* __ptr_sceFontWritingSetMaskInvisible;
asm(".intel_syntax noprefix\n"
".global sceFontWritingSetMaskInvisible\n"
".type sceFontWritingSetMaskInvisible @function\n"
"sceFontWritingSetMaskInvisible:\n"
"jmp qword ptr [rip + __ptr_sceFontWritingSetMaskInvisible]\n");
static unsigned short __handle = 0;
static void __attribute__((constructor(104)))
__constructor(void) {
if(sprx_dlopen("libSceFont", &__handle)) return;
if(sprx_dlsym(__handle, "CUKn5pX-NVY", &__ptr_sceFontAttachDeviceCacheBuffer)) return;
if(sprx_dlsym(__handle, "3OdRkSjOcog", &__ptr_sceFontBindRenderer)) return;
if(sprx_dlsym(__handle, "6DFUkCwQLa8", &__ptr_sceFontCharacterGetBidiLevel)) return;
if(sprx_dlsym(__handle, "coCrV6IWplE", &__ptr_sceFontCharacterGetSyllableStringState)) return;
if(sprx_dlsym(__handle, "zN3+nuA0SFQ", &__ptr_sceFontCharacterGetTextFontCode)) return;
if(sprx_dlsym(__handle, "mxgmMj-Mq-o", &__ptr_sceFontCharacterGetTextOrder)) return;
if(sprx_dlsym(__handle, "-P6X35Rq2-E", &__ptr_sceFontCharacterLooksFormatCharacters)) return;
if(sprx_dlsym(__handle, "SaRlqtqaCew", &__ptr_sceFontCharacterLooksWhiteSpace)) return;
if(sprx_dlsym(__handle, "6Gqlv5KdTbU", &__ptr_sceFontCharacterRefersTextBack)) return;
if(sprx_dlsym(__handle, "BkjBP+YC19w", &__ptr_sceFontCharacterRefersTextNext)) return;
if(sprx_dlsym(__handle, "lVSR5ftvNag", &__ptr_sceFontCharactersRefersTextCodes)) return;
if(sprx_dlsym(__handle, "I9R5VC6eZWo", &__ptr_sceFontClearDeviceCache)) return;
if(sprx_dlsym(__handle, "vzHs3C8lWJk", &__ptr_sceFontCloseFont)) return;
if(sprx_dlsym(__handle, "MpKSBaYKluo", &__ptr_sceFontControl)) return;
if(sprx_dlsym(__handle, "nWrfPI4Okmg", &__ptr_sceFontCreateLibrary)) return;
if(sprx_dlsym(__handle, "n590hj5Oe-k", &__ptr_sceFontCreateLibraryWithEdition)) return;
if(sprx_dlsym(__handle, "u5fZd3KZcs0", &__ptr_sceFontCreateRenderer)) return;
if(sprx_dlsym(__handle, "WaSFJoRWXaI", &__ptr_sceFontCreateRendererWithEdition)) return;
if(sprx_dlsym(__handle, "MO24vDhmS4E", &__ptr_sceFontCreateString)) return;
if(sprx_dlsym(__handle, "cYrMGk1wrMA", &__ptr_sceFontCreateWords)) return;
if(sprx_dlsym(__handle, "7rogx92EEyc", &__ptr_sceFontCreateWritingLine)) return;
if(sprx_dlsym(__handle, "8h-SOB-asgk", &__ptr_sceFontDefineAttribute)) return;
if(sprx_dlsym(__handle, "LHDoRWVFGqk", &__ptr_sceFontDeleteGlyph)) return;
if(sprx_dlsym(__handle, "FXP359ygujs", &__ptr_sceFontDestroyLibrary)) return;
if(sprx_dlsym(__handle, "exAxkyVLt0s", &__ptr_sceFontDestroyRenderer)) return;
if(sprx_dlsym(__handle, "SSCaczu2aMQ", &__ptr_sceFontDestroyString)) return;
if(sprx_dlsym(__handle, "hWE4AwNixqY", &__ptr_sceFontDestroyWords)) return;
if(sprx_dlsym(__handle, "PEjv7CVDRYs", &__ptr_sceFontDestroyWritingLine)) return;
if(sprx_dlsym(__handle, "UuY-OJF+f0k", &__ptr_sceFontDettachDeviceCacheBuffer)) return;
if(sprx_dlsym(__handle, "C-4Qw5Srlyw", &__ptr_sceFontGenerateCharGlyph)) return;
if(sprx_dlsym(__handle, "5kx49CAlO-M", &__ptr_sceFontGetAttribute)) return;
if(sprx_dlsym(__handle, "OINC0X9HGBY", &__ptr_sceFontGetCharGlyphCode)) return;
if(sprx_dlsym(__handle, "L97d+3OgMlE", &__ptr_sceFontGetCharGlyphMetrics)) return;
if(sprx_dlsym(__handle, "ynSqYL8VpoA", &__ptr_sceFontGetEffectSlant)) return;
if(sprx_dlsym(__handle, "d7dDgRY+Bzw", &__ptr_sceFontGetEffectWeight)) return;
if(sprx_dlsym(__handle, "ZB8xRemRRG8", &__ptr_sceFontGetFontGlyphsCount)) return;