-
Notifications
You must be signed in to change notification settings - Fork 1
/
.lst
6664 lines (6664 loc) · 318 KB
/
.lst
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
w __cxa_begin_cleanup
w __cxa_call_unexpected
w __cxa_type_match
w __deregister_frame_info
w __gnu_Unwind_Find_exidx
w __register_frame_info
w _ITM_deregisterTMCloneTable
w _ITM_registerTMCloneTable
w _Jv_RegisterClasses
00000000 b .LANCHOR1
00000000 b _TLS_MODULE_BASE_
00000000 a shift
00000000 a shift
00000000 00002000 b tmp_buffer.6545
00001ff8 b .LANCHOR2
00002000 00000401 b __fixedpath
00002404 00000802 b __utf16path
00002c08 00000802 b __utf16path_old.6616
00100000 T __start__
00100000 T _start
00100008 T __service_ptr
0010000c T __apt_appid
00100010 T __heap_size_hbl
00100014 T __linear_heap_size_hbl
00100018 T __system_arglist
0010001c T __system_runflags
00100020 t startup
0010005c t ClearMem
00100070 t ClrLoop
00100098 T _init
001000b0 t deregister_tm_clones
001000e0 t register_tm_clones
00100118 t __do_global_dtors_aux
0010015c t frame_dummy
001001b8 00000120 T __system_allocateHeaps
001002d8 000000f4 T __libctru_exit
001003cc 00000108 T __system_initArgv
001004d4 0000014c W __libctru_init
00100620 00000014 T initSystem
00100634 00000018 T __ctru_exit
0010064c 00000068 T dump_result_value
001006b4 00000060 T wait_for_input
00100714 00000010 T sysconf
00100724 00000144 t ctr_free_pages.part.0
00100868 00000038 T ctr_get_stack_free
001008a0 00000050 T ctr_get_stack_usage
001008f0 00000144 T ctr_free_pages
00100a34 00000034 T ctr_get_free_space
00100a68 0000005c T ctr_request_free_pages
00100ac4 0000014c T _sbrk_r
00100c10 00000024 t addrMapNodeComparator(rbtree_node const*, rbtree_node const*)
00100c34 00000004 t addrMapNodeDestructor(rbtree_node*)
00100c38 0000015c T linearMemAlign
00100d94 00000154 T linearAlloc
00100ee8 00000008 T linearRealloc
00100ef0 00000050 T linearFree
00100f40 0000000c T linearSpaceFree
00100f4c 00000040 T ctr_get_linear_free
00100f8c 00000030 T ctr_get_linear_unused
00100fbc 00000088 T ctr_linear_free_pages
00101044 00000088 T ctr_linear_get_stats
001010cc 00000020 t k_restore_vram_value
001010ec 00000034 t k_enable_all_svc
00101120 00000560 T svchax_init
00101680 0000001c t zlib_stream_set
0010169c 0000000c t zlib_stream_get_avail_in
001016a8 0000000c t zlib_stream_get_avail_out
001016b4 00000010 t zlib_stream_get_total_out
001016c4 00000014 t zlib_stream_decrement_total_out
001016d8 00000328 t sha256_block
00101a00 00000494 t SHA1ProcessMessageBlock
00101e94 00000004 t gfx_ctx_null_check_window
00101e98 00000008 t gfx_ctx_null_set_resize
00101ea0 00000014 t gfx_ctx_null_get_video_size
00101eb4 00000008 t gfx_ctx_null_set_video_mode
00101ebc 00000008 t gfx_ctx_null_bind_api
00101ec4 0000000c t gfx_ctx_null_init
00101ed0 00000010 t ctr_set_nonblock_state
00101ee0 0000000c t ctr_set_texture_enable
00101eec 00000014 t ctr_set_rotation
00101f00 0000000c t ctr_set_filtering
00101f0c 00000010 t ctr_apply_state_changes
00101f1c 00000028 t ctr_viewport_info
00101f44 00000010 t ctr_get_poke_interface
00101f54 00000008 t null_gfx_frame
00101f5c 00000008 t null_gfx_suppress_screensaver
00101f64 00000008 t null_gfx_set_shader
00101f6c 00000008 t null_gfx_read_viewport
00101f74 00000010 t font_renderer_bmp_get_atlas
00101f84 00000024 t font_renderer_bmp_get_glyph
00101fa8 0000000c t font_renderer_bmp_get_default_font
00101fb4 00000018 t font_renderer_bmp_get_line_height
00101fcc 00000014 t ctr_input_poll
00101fe0 0000002c t ctr_input_meta_key_pressed
0010200c 0000000c t ctr_input_get_capabilities
00102018 0000000c t ctr_input_get_joypad_driver
00102024 0000000c t ctr_input_keyboard_mapping_is_blocked
00102030 0000000c t ctr_input_keyboard_mapping_set_block
0010203c 0000000c t ctr_joypad_name
00102048 00000010 t ctr_joypad_get_buttons
00102058 0000002c t ctr_joypad_query_pad
00102084 00000008 t nullinput_input_state
0010208c 00000008 t nullinput_input_meta_key_pressed
00102094 0000000c t nullinput_get_capabilities
001020a0 00000008 t nullinput_set_sensor_state
001020a8 0000000c t null_joypad_name
001020b4 00000008 t null_joypad_button
001020bc 0000000c t null_joypad_get_buttons
001020c8 00000008 t null_joypad_axis
001020d0 00000008 t null_joypad_query_pad
001020d8 0000001c t hid_joypad_query_pad
001020f4 00000028 t hid_joypad_free
0010211c 0000002c t hid_joypad_button
00102148 0000001c t hid_joypad_get_buttons
00102164 0000002c t hid_joypad_axis
00102190 00000018 t hid_joypad_poll
001021a8 00000030 t hid_joypad_rumble
001021d8 0000001c t hid_joypad_name
001021f4 00000010 t null_hid_joypad_query
00102204 00000008 t null_hid_joypad_name
0010220c 0000000c t null_hid_joypad_get_buttons
00102218 00000008 t null_hid_joypad_button
00102220 00000008 t null_hid_joypad_rumble
00102228 00000008 t null_hid_joypad_axis
00102230 000001a0 t resampler_sinc_process
001023d0 000000ac t resampler_nearest_process
0010247c 00000004 t resampler_null_process
00102480 00000008 t resampler_null_init
00102488 00000010 t resampler_CC_process
00102498 00000008 t nullcamera_init
001024a0 00000008 t nullcamera_poll
001024a8 0000002c t null_location_get_position
001024d4 00000004 t null_location_set_interval
001024d8 00000008 t ctr_csnd_audio_alive
001024e0 0000000c t ctr_csnd_audio_set_nonblock_state
001024ec 00000008 t ctr_dsp_audio_alive
001024f4 0000000c t ctr_dsp_audio_set_nonblock_state
00102500 00000008 t ctr_dsp_audio_buffer_size
00102508 00000008 t null_audio_write
00102510 00000008 t null_audio_use_float
00102518 00000030 T video_driver_get_current_framebuffer
00102548 00000034 T video_driver_get_proc_address
0010257c 00000048 T input_driver_set_rumble_state
001025c4 0000004c T input_sensor_set_state
00102610 00000040 T input_sensor_get_input
00102650 00000030 T audio_driver_sample_rewind
00102680 00000044 T audio_driver_sample_batch_rewind
001026c4 00000030 T driver_location_stop
001026f4 0000003c T driver_location_set_interval
00102730 0000007c T conv_rgb565_0rgb1555
001027ac 00000080 T conv_0rgb1555_rgb565
0010282c 000000b4 T conv_0rgb1555_argb8888
001028e0 000000a8 T conv_rgb565_argb8888
00102988 000000a0 T conv_argb8888_rgba4444
00102a28 000000a8 T conv_rgba4444_argb8888
00102ad0 00000080 T conv_rgba4444_rgb565
00102b50 00000098 T conv_0rgb1555_bgr24
00102be8 00000094 T conv_rgb565_bgr24
00102c7c 00000078 T conv_bgr24_argb8888
00102cf4 00000080 T conv_argb8888_0rgb1555
00102d74 00000074 T conv_argb8888_bgr24
00102de8 00000080 T conv_argb8888_abgr8888
00102e68 000001e8 T conv_yuyv_argb8888
00103050 00000240 T scaler_argb8888_vert
00103290 00000250 T scaler_argb8888_horiz
001034e0 000000f0 T scaler_argb8888_point_special
001035d0 00000008 t twoxsai_generic_threads
001035d8 00000200 t twoxsai_generic_packets
001037d8 0000000c T twoxsai_get_implementation
001037e4 00000008 t supertwoxsai_generic_threads
001037ec 00000200 t supertwoxsai_generic_packets
001039ec 0000000c T supertwoxsai_get_implementation
001039f8 00000008 t supereagle_generic_threads
00103a00 00000200 t supereagle_generic_packets
00103c00 0000000c T supereagle_get_implementation
00103c0c 00000008 t twoxbr_generic_threads
00103c14 00000200 t twoxbr_generic_packets
00103e14 0000000c T twoxbr_get_implementation
00103e20 00000008 t darken_threads
00103e28 00000010 t darken_output
00103e38 00000084 t darken_work_cb_xrgb8888
00103ebc 00000084 t darken_work_cb_rgb565
00103f40 000001c0 t darken_packets
00104100 0000000c T darken_get_implementation
0010410c 00000008 t epx_generic_threads
00104114 00000160 t epx_generic_packets
00104274 0000000c T epx_get_implementation
00104280 00000008 t scale2x_generic_threads
00104288 00000260 t scale2x_work_cb_xrgb8888
001044e8 00000264 t scale2x_work_cb_rgb565
0010474c 00000200 t scale2x_generic_packets
0010494c 0000000c T scale2x_get_implementation
00104958 00000008 t blargg_ntsc_snes_generic_threads
00104960 0000002c t blargg_ntsc_snes_generic_output
0010498c 00000150 t blargg_ntsc_snes_generic_packets
00104adc 0000000c T blargg_ntsc_snes_get_implementation
00104ae8 00000008 t lq2x_generic_threads
00104af0 00000200 t lq2x_generic_packets
00104cf0 0000000c T lq2x_get_implementation
00104cfc 00000008 t phosphor2x_generic_input_fmts
00104d04 00000004 t phosphor2x_generic_output_fmts
00104d08 00000008 t phosphor2x_generic_threads
00104d10 00000018 t phosphor2x_generic_output
00104d28 00000200 t phosphor2x_generic_packets
00104f28 0000000c T phosphor2x_get_implementation
00104f34 00000108 t echo_process
0010503c 0000000c T echo_dspfilter_get_implementation
00105048 00000028 t gains_cmp
00105070 0000000c T eq_dspfilter_get_implementation
0010507c 0000000c T chorus_dspfilter_get_implementation
00105088 00000120 t iir_process
001051a8 0000000c T iir_dspfilter_get_implementation
001051b4 0000005c t panning_process
00105210 0000000c T panning_dspfilter_get_implementation
0010521c 0000000c T phaser_dspfilter_get_implementation
00105228 0000000c T wahwah_dspfilter_get_implementation
00105234 00000008 T libretro_dummy_retro_api_version
0010523c 00000004 T libretro_dummy_retro_set_controller_port_device
00105240 00000050 T libretro_dummy_retro_get_system_av_info
00105290 00000028 T libretro_dummy_retro_set_environment
001052b8 00000004 T libretro_dummy_retro_set_audio_sample
001052bc 00000004 T libretro_dummy_retro_set_audio_sample_batch
001052c0 00000010 T libretro_dummy_retro_set_input_poll
001052d0 00000004 T libretro_dummy_retro_set_input_state
001052d4 00000010 T libretro_dummy_retro_set_video_refresh
001052e4 000000a8 T libretro_dummy_retro_run
0010538c 00000008 T libretro_dummy_retro_load_game_special
00105394 00000008 T libretro_dummy_retro_serialize_size
0010539c 00000008 T libretro_dummy_retro_get_memory_data
001053a4 00000008 T libretro_dummy_retro_get_memory_size
001053ac 00000004 T libretro_dummy_retro_cheat_set
001053b0 00000024 t file_list_type_cmp
001053d4 00000004 t frontend_ctr_shutdown
001053d8 00000008 t frontend_ctr_get_rating
001053e0 00000008 T frontend_ctr_get_architecture
001053e8 00000008 t ui_companion_null_iterate
001053f0 00000004 t ui_companion_null_event_command
001053f4 00000004 t ui_companion_null_notify_list_pushed
001053f8 0000002c t retro_task_regular_push_running
00105424 0000002c t retro_task_regular_reset
00105450 00000048 t retro_task_regular_find
00105498 00000008 t record_null_new
001054a0 00000008 t record_null_push_audio
001054a8 00000008 t record_null_finalize
001054b0 00000018 t cb_nbio_default
001054c8 00000008 t file_decompressed_target_file
001054d0 00000084 t setting_int_action_left_default
00105554 00000084 t setting_uint_action_left_default
001055d8 000000a4 t setting_uint_action_right_default
0010567c 000000a4 t setting_int_action_right_default
00105720 00000064 t setting_fraction_action_left_default
00105784 0000009c t setting_fraction_action_right_default
00105820 00000028 t setting_generic_action_ok_default
00105848 00000038 t setting_action_start_bind_device
00105880 0000001c t setting_action_start_analog_dpad_mode
0010589c 00000014 t setting_string_action_start_generic
001058b0 00000074 t setting_bind_action_start
00105924 00000054 t setting_action_left_analog_dpad_mode
00105978 00000054 t setting_action_right_analog_dpad_mode
001059cc 00000060 t setting_action_left_bind_device
00105a2c 00000054 t setting_action_right_bind_device
00105a80 000001b8 T general_read_handler
00105c38 00000008 t action_ok_update_autoconfig_profiles_hid
00105c40 00000080 t action_select_input_desc
00105cc0 0000012c t action_start_remap_file_load
00105dec 00000030 t action_start_performance_counters_core
00105e1c 00000030 t action_start_performance_counters_frontend
00105e4c 00000070 t action_start_input_desc
00105ebc 00000008 t action_start_shader_num_passes
00105ec4 00000054 t action_left_input_desc
00105f18 00000080 T action_right_input_desc
00105f98 00000008 t action_right_shader_num_passes
00105fa0 00000008 t deferred_push_cursor_manager_list_deferred_query_subsearch
00105fa8 00000010 t easing_linear
00105fb8 00000020 t easing_out_quad
00105fd8 00000064 t easing_in_out_cubic
0010603c 0000282c t menu_hash_to_str_us_label
00108868 00000008 t menu_display_null_get_default_mvp
00108870 00000004 t menu_display_null_restore_clear_color
00108874 00000004 t menu_display_null_clear_color
00108878 0000000c t menu_display_null_get_tex_coords
00108884 00000008 t menu_display_null_font_init_first
0010888c 0000002c t rgui_gray_filler
001088b8 0000002c t rgui_green_filler
001088e4 00000028 t rgui_navigation_clear
0010890c 00000010 t rgui_environ
0010891c 0000029c t longest_match
00108bb8 000005c0 t send_tree
00109178 000002c0 t send_all_trees
00109438 00000434 t compress_block
0010986c 0000000c t zlib_stream_new
00109878 0000000c t null_hid_init
00109884 00000020 t resampler_nearest_init
001098a4 00000150 t chorus_init
001099f4 00000158 t phaser_init
00109b4c 0000011c t wahwah_init
00109c68 00000020 T libretro_dummy_retro_init
00109c88 0000000c t ui_companion_null_init
00109c94 00000060 T conv_copy
00109cf4 000000f4 t panning_init
00109de8 00000028 t font_renderer_bmp_free
00109e10 0000002c t ctr_input_free_input
00109e3c 00000024 t twoxsai_generic_destroy
00109e60 00000054 t twoxsai_generic_create
00109eb4 00000024 t supertwoxsai_generic_destroy
00109ed8 00000054 t supertwoxsai_generic_create
00109f2c 00000024 t supereagle_generic_destroy
00109f50 00000054 t supereagle_generic_create
00109fa4 00000024 t twoxbr_generic_destroy
00109fc8 00000328 t twoxbr_generic_create
0010a2f0 00000024 t darken_destroy
0010a314 0000005c t darken_create
0010a370 00000024 t epx_generic_destroy
0010a394 00000054 t epx_generic_create
0010a3e8 00000024 t scale2x_generic_destroy
0010a40c 00000054 t scale2x_generic_create
0010a460 00000034 t blargg_ntsc_snes_generic_destroy
0010a494 00000024 t lq2x_generic_destroy
0010a4b8 00000054 t lq2x_generic_create
0010a50c 00000024 t phosphor2x_generic_destroy
0010a530 00000048 t echo_free
0010a578 00000004 t reverb_free
0010a57c 00000028 T libretro_dummy_retro_deinit
0010a5a4 00000034 t state_manager_free
0010a5d8 0000000c t ui_companion_null_deinit
0010a5e4 00000008 T zcfree
0010a5ec 00000024 t resampler_sinc_free
0010a610 00000010 t resampler_CC_free
0010a620 00000080 t menu_setting_free
0010a6a0 00000024 T libretro_dummy_retro_get_system_info
0010a6c4 000000b8 t content_playlist_free_entry
0010a77c 00000008 T zcalloc
0010a784 0000008c t resampler_CC_init
0010a810 00000004 T retro_get_perf_counter
0010a814 00000020 T retro_get_time_usec
0010a834 00000070 t menu_input_key_bind_custom_bind_keyboard_cb
0010a8a4 0000013c t fixup_filter_sub
0010a9e0 000000dc t menu_settings_list_append
0010aabc 0000000c t qstrcmp_plain
0010aac8 00000024 t file_list_alt_cmp
0010aaec 00000030 t menu_displaylist_sort_playlist
0010ab1c 00000024 t setting_get_string_representation_int
0010ab40 00000024 t setting_get_string_representation_uint
0010ab64 00000038 t setting_get_string_representation_st_float
0010ab9c 00000024 t setting_get_string_representation_hex
0010abc0 00000028 t action_get_title_default
0010abe8 000000ac t ctr_set_texture_frame
0010ac94 00000074 t ctr_free
0010ad08 0000024c t font_renderer_bmp_init
0010af54 00000184 t chorus_process
0010b0d8 00000048 t easing_out_sine
0010b120 000003a4 t resampler_CC_upsample
0010b4c4 0000034c t resampler_CC_downsample
0010b810 00000120 t easing_out_bounce
0010b930 00000044 t ctr_csnd_audio_free
0010b974 00000040 t ctr_csnd_audio_stop
0010b9b4 00000024 t ctr_dsp_audio_write_avail
0010b9d8 00000028 t ctr_dsp_audio_free
0010ba00 00000024 t ctr_dsp_audio_stop
0010ba24 00000104 t ctr_dsp_audio_init
0010bb28 00000094 t easing_in_out_circ
0010bbbc 00000090 t easing_in_out_quint
0010bc4c 00000038 t easing_out_quint
0010bc84 00000028 t easing_in_quint
0010bcac 00000088 t easing_in_out_quart
0010bd34 00000040 t easing_out_quart
0010bd74 00000024 t easing_in_quart
0010bd98 00000034 t easing_out_cubic
0010bdcc 00000024 t easing_in_cubic
0010bdf0 0000006c t easing_in_out_quad
0010be5c 00000020 t easing_in_quad
0010be7c 00000068 t easing_in_out_sine
0010bee4 00000054 t easing_in_sine
0010bf38 000001ac t phaser_process
0010c0e4 00000220 t wahwah_process
0010c304 0000016c t phosphor2x_generic_create
0010c470 00000030 t easing_out_circ
0010c4a0 00000044 t easing_in_circ
0010c4e4 00000088 t frontend_ctr_deinit
0010c56c 00000204 t frontend_ctr_init
0010c770 0000019c t content_playlist_read_file
0010c90c 0000003c T retro_perf_register
0010c948 0000004c t ctr_joypad_button
0010c994 000000e0 t ctr_joypad_axis
0010ca74 0000007c T driver_location_get_position
0010caf0 0000079c t twoxsai_work_cb_xrgb8888
0010d28c 000007b8 t twoxsai_work_cb_rgb565
0010da44 00000768 t supertwoxsai_work_cb_xrgb8888
0010e1ac 00000790 t supertwoxsai_work_cb_rgb565
0010e93c 00000700 t supereagle_work_cb_xrgb8888
0010f03c 000006f0 t supereagle_work_cb_rgb565
0010f72c 00001844 t twoxbr_work_cb_rgb565
00110f70 00000738 t epx_work_cb_rgb565
001116a8 000002d0 t lq2x_work_cb_rgb565
00111978 000002c8 t lq2x_work_cb_xrgb8888
00111c40 00000268 t ips_apply_patch
00111ea8 00000190 t state_manager_pop
00112038 000003fc t phosphor2x_work_cb_xrgb8888
00112434 0000041c t phosphor2x_work_cb_rgb565
00112850 00000024 t qstrcmp_dir
00112874 0000008c t easing_out_in_quint
00112900 00000090 t easing_out_in_quart
00112990 00000084 t easing_out_in_cubic
00112a14 0000006c t easing_out_in_quad
00112a80 000000ac t easing_out_in_sine
00112b2c 000000f0 t easing_in_out_expo
00112c1c 000000f8 t easing_out_in_expo
00112d14 00000064 t rgui_set_message
00112d78 00000154 t menu_input_key_bind_poll_bind_state_internal.isra.91
00112ecc 00000110 t menu_input_key_bind_poll_bind_state
00112fdc 000001bc t csndPlaySound_custom.part.93
00113198 00000150 t ctr_csnd_audio_init
001132e8 00000f2c t menu_cbs_init_bind_ok_compare_label.isra.153
00114214 000002cc t menu_cbs_init_bind_left_compare_label.isra.154
001144e0 000002a0 t menu_cbs_init_bind_right_compare_label.isra.155
00114780 000010ec t menu_cbs_init_bind_title_compare_label.isra.156
0011586c 0000364c t menu_hash_to_str_us.part.165
00118eb8 00000048 t make_poly_from_roots.constprop.262
00118f00 00000850 t iir_init
00119750 00000128 t eq8.constprop.269
00119878 00000130 t df8.constprop.270
001199a8 00000034 t crc32.constprop.278
001199dc 000001c0 t file_archive_parse_file_iterate_step
00119b9c 00000084 t strlcpy_retro__.constprop.366
00119c20 00000008 t action_ok_deferred_list_stub
00119c28 00000008 t action_ok_update_core_info_files
00119c30 00000008 t action_ok_core_content_download
00119c38 00000008 t action_ok_update_databases
00119c40 00000008 t action_ok_update_cheats
00119c48 00000008 t action_ok_update_autoconfig_profiles
00119c50 00000008 t action_ok_update_shaders_cg
00119c58 00000008 t action_ok_update_shaders_glsl
00119c60 00000008 t action_ok_update_overlays
00119c68 00000008 t action_ok_lakka_download
00119c70 00000008 t action_ok_update_assets
00119c78 00000008 t action_ok_core_updater_download
00119c80 00000008 t ctr_input_set_rumble
00119c88 00000008 t nullinput_set_rumble
00119c90 00000008 t ctr_set_shader
00119c98 00000008 t action_left_shader_scale_pass
00119ca0 00000008 t action_left_shader_filter_pass
00119ca8 00000008 t action_left_shader_filter_default
00119cb0 00000008 t action_left_shader_num_passes
00119cb8 00000008 t action_right_shader_scale_pass
00119cc0 00000008 t action_right_shader_filter_pass
00119cc8 00000008 t action_right_shader_filter_default
00119cd0 00000008 t nullinput_input_key_pressed
00119cd8 00000008 t action_start_shader_action_parameter
00119ce0 00000008 t action_start_shader_action_preset_parameter
00119ce8 00000008 t action_start_shader_pass
00119cf0 00000008 t action_start_shader_scale_pass
00119cf8 00000008 t action_start_shader_filter_pass
00119d00 00000008 t record_null_push_video
00119d08 00000008 t ctr_suppress_screensaver
00119d10 00000008 t ctr_read_viewport
00119d18 00000004 t gfx_ctx_null_input_driver
00119d1c 00000008 t gfx_ctx_null_suppress_screensaver
00119d24 00000008 T libretro_dummy_retro_serialize
00119d2c 00000008 T libretro_dummy_retro_unserialize
00119d34 00000008 t nullcamera_start
00119d3c 00000008 t null_location_start
00119d44 00000008 t ctr_csnd_audio_use_float
00119d4c 00000008 t ctr_csnd_audio_buffer_size
00119d54 00000008 t ctr_dsp_audio_use_float
00119d5c 00000008 t null_audio_stop
00119d64 00000008 t null_audio_alive
00119d6c 00000008 t null_audio_start
00119d74 00000004 t null_audio_set_nonblock_state
00119d78 00000008 t null_audio_write_avail
00119d80 00000004 t ctr_input_grab_mouse
00119d84 00000008 T libretro_dummy_retro_load_game
00119d8c 00000008 t gfx_ctx_null_has_focus
00119d94 00000008 t gfx_ctx_null_has_windowed
00119d9c 00000004 t gfx_ctx_null_show_mouse
00119da0 00000004 t gfx_ctx_null_bind_hw_render
00119da4 00000008 t ctr_has_windowed
00119dac 00000004 t gfx_ctx_null_swap_interval
00119db0 00000008 t ctr_alive
00119db8 00000008 t ctr_focus
00119dc0 00000008 t null_gfx_has_windowed
00119dc8 00000004 t null_gfx_set_rotation
00119dcc 00000004 t null_gfx_viewport_info
00119dd0 00000004 t null_gfx_get_poke_interface
00119dd4 00000004 t twoxsai_generic_output_fmts
00119dd8 00000018 t twoxsai_generic_output
00119df0 00000004 t supertwoxsai_generic_output_fmts
00119df4 00000018 t supertwoxsai_generic_output
00119e0c 00000004 t supereagle_generic_output_fmts
00119e10 00000018 t supereagle_generic_output
00119e28 00000004 t twoxbr_generic_output_fmts
00119e2c 00000018 t twoxbr_generic_output
00119e44 00000004 t darken_output_fmts
00119e48 00000004 t epx_generic_output_fmts
00119e4c 00000018 t epx_generic_output
00119e64 00000004 t scale2x_generic_output_fmts
00119e68 00000018 t scale2x_generic_output
00119e80 00000004 t blargg_ntsc_snes_generic_output_fmts
00119e84 00000004 t lq2x_generic_output_fmts
00119e88 00000018 t lq2x_generic_output
00119ea0 00000008 t null_gfx_alive
00119ea8 00000008 t null_gfx_focus
00119eb0 00000008 t null_joypad_init
00119eb8 00000004 t nullinput_grab_mouse
00119ebc 00000004 t null_gfx_set_nonblock_state
00119ec0 00000004 t menu_display_null_draw
00119ec4 00000004 t menu_display_null_draw_bg
00119ec8 00000004 t nullinput_input_free_input
00119ecc 00000008 t lq2x_generic_input_fmts
00119ed4 00000004 t nullinput_input_poll
00119ed8 00000004 t null_hid_poll
00119edc 00000004 t null_audio_free
00119ee0 00000008 t darken_input_fmts
00119ee8 00000008 t scale2x_generic_input_fmts
00119ef0 00000004 t gfx_ctx_null_update_window_title
00119ef4 00000004 t gfx_ctx_null_destroy
00119ef8 00000008 t supereagle_generic_input_fmts
00119f00 00000008 t twoxbr_generic_input_fmts
00119f08 00000008 t supertwoxsai_generic_input_fmts
00119f10 00000008 t twoxsai_generic_input_fmts
00119f18 00000004 t null_gfx_free
00119f1c 00000004 t nullcamera_free
00119f20 00000004 t null_location_free
00119f24 00000004 t null_location_stop
00119f28 00000004 t nullcamera_stop
00119f2c 00000008 t null_location_init
00119f34 00000004 t resampler_null_free
00119f38 00000004 t gfx_ctx_null_swap_buffers
00119f3c 00000008 T libretro_dummy_retro_get_region
00119f44 00000008 t epx_generic_input_fmts
00119f4c 00000008 t blargg_ntsc_snes_generic_input_fmts
00119f54 00000004 t record_null_free
00119f58 00000004 t ui_companion_null_notify_content_loaded
00119f5c 00000004 t ui_companion_null_toggle
00119f60 00000004 t menu_display_null_blend_begin
00119f64 00000004 t menu_display_null_blend_end
00119f68 00000004 t ctr_joypad_destroy
00119f6c 00000004 t retro_task_regular_deinit
00119f70 00000004 t retro_task_regular_init
00119f74 00000004 t null_joypad_poll
00119f78 00000004 T libretro_dummy_retro_unload_game
00119f7c 00000004 T libretro_dummy_retro_reset
00119f80 00000004 T libretro_dummy_retro_cheat_reset
00119f84 00000004 t null_joypad_destroy
00119f88 00000004 t chorus_free
00119f8c 00000070 t ups_patch_read
00119ffc 000003d4 t ups_apply_patch
0011a3d0 00000048 t bps_read
0011a418 00000004 t iir_free
0011a41c 00000004 t panning_free
0011a420 00000004 t phaser_free
0011a424 00000088 t action_start_cheat_num_passes
0011a4ac 0000016c t gen_filter_sinc_sub
0011a618 0000007c t easing_out_expo
0011a694 00000078 t easing_in_expo
0011a70c 00000590 t png_reverse_filter_regular_iterate
0011ac9c 0000000c t null_hid_free
0011aca8 0000000c t wahwah_free
0011acb4 0000000c T config_userdata_free
0011acc0 0000000c t resampler_nearest_free
0011accc 00000b3c t build_tree
0011b808 00000098 t easing_out_in_circ
0011b8a0 00000058 t ctr_csnd_audio_write_avail
0011b8f8 00000750 t reverb_process
0011c048 00000428 t gz_open
0011c470 0000023c t echo_init
0011c6ac 0000006c t eq_free
0011c718 00000540 t eq_process
0011cc58 00000044 t rarch_task_decompress_finder
0011cc9c 000001f0 t resampler_sinc_new
0011ce8c 00000114 t flush_pending
0011cfa0 00000040 t settings_data_list_current_add_flags.constprop.330
0011cfe0 000000a0 t settings_data_list_current_add_flags.constprop.331
0011d080 00000028 t settings_data_list_current_add_flags.constprop.333
0011d0a8 00000028 t settings_data_list_current_add_flags.constprop.334
0011d0d0 00000410 t driver_find_index
0011d4e0 0000005c t zlib_stream_free
0011d53c 00000104 t ctr_input_key_pressed
0011d640 00000128 t easing_in_bounce
0011d768 00000104 t config_get_array.constprop.316
0011d86c 000000f4 t fill_pathname_basedir.constprop.352
0011d960 000000f4 t menu_entry_get.constprop.260
0011da54 0000013c t menu_entry_get.constprop.259
0011db90 00000064 t setting_get_string_representation_default
0011dbf4 0000006c t action_get_title_input_settings
0011dc60 00000274 t easing_in_out_bounce
0011ded4 00000068 t menu_action_setting_disp_set_label_shader_scale_pass
0011df3c 00000260 t easing_out_in_bounce
0011e19c 000000bc t strlcat_retro__.constprop.360
0011e258 000000c4 t strlcat_retro__.constprop.361
0011e31c 0000014c t menu_action_setting_disp_set_label_remap_file_load
0011e468 00000064 t menu_action_setting_disp_set_label_menu_file_parent_directory
0011e4cc 000000c4 t menu_action_setting_disp_set_label_menu_more
0011e590 00000110 t config_get_array.constprop.317
0011e6a0 0000132c t reverb_init
0011f9cc 00000068 t menu_action_setting_disp_set_label_shader_filter_pass
0011fa34 00000068 t menu_action_setting_disp_set_label_shader_preset_parameter
0011fa9c 00000068 t menu_action_setting_disp_set_label_shader_num_passes
0011fb04 00000068 t menu_action_setting_disp_set_label_shader_parameter
0011fb6c 00000064 t menu_action_setting_disp_set_label_menu_file_use_directory
0011fbd0 000000c4 t menu_action_setting_disp_set_label_perf_counters
0011fc94 000000c4 t menu_action_setting_disp_set_label_libretro_perf_counters
0011fd58 00000054 t setting_get_string_representation_st_string
0011fdac 000000ac t menu_action_handle_setting.constprop.252
0011fe58 00000064 t bind_left_generic
0011febc 000000a8 t menu_action_handle_setting.constprop.253
0011ff64 00000064 t action_start_lookup_setting
0011ffc8 000000ac t menu_action_handle_setting.constprop.251
00120074 00000064 T bind_right_generic
001200d8 00000068 t action_select_driver_setting
00120140 00000084 t menu_action_setting_disp_set_label_cheat_num_passes
001201c4 0000015c t fill_pathname_noext.constprop.351
00120320 00000060 t setting_get_string_representation_st_dir
00120380 0000006c t setting_get_string_representation_st_bool
001203ec 000000d4 t menu_action_setting_disp_set_label_menu_file_config
001204c0 000000d4 t menu_action_setting_disp_set_label_menu_file_carchive
00120594 000000d4 t menu_action_setting_disp_set_label_menu_file_filter
00120668 000000d4 t menu_action_setting_disp_set_label_menu_file_plain
0012073c 000000d4 t menu_action_setting_disp_set_label_menu_file_image
00120810 000000d4 t menu_action_setting_disp_set_label_menu_file_shader_preset
001208e4 000000d4 t menu_action_setting_disp_set_label_menu_file_rdb
001209b8 000000d4 t menu_action_setting_disp_set_label_menu_file_cheat
00120a8c 000000d4 t menu_action_setting_disp_set_label_music
00120b60 000000d4 t menu_action_setting_disp_set_label_menu_file_directory
00120c34 000000d4 t menu_action_setting_disp_set_label_menu_file_font
00120d08 000000d4 t menu_action_setting_disp_set_label_menu_file_shader
00120ddc 000000d4 t menu_action_setting_disp_set_label_movie
00120eb0 000000d4 t menu_action_setting_disp_set_label_menu_file_overlay
00120f84 000000d4 t menu_action_setting_disp_set_label_menu_file_imageviewer
00121058 000000d4 t menu_action_setting_disp_set_label_menu_file_cursor
0012112c 000000d4 t menu_action_setting_disp_set_label_menu_file_in_carchive
00121200 00000064 t setting_get_string_representation_uint_video_rotation
00121264 00000068 t setting_get_string_representation_uint_aspect_ratio_index
001212cc 00000068 t setting_get_string_representation_uint_libretro_log_level
00121334 00000178 t fill_pathname_join_delim.constprop.359
001214ac 000001b8 t fill_pathname_join_delim.constprop.358
00121664 00000028 t action_get_title_disk_image_append
0012168c 00000028 t action_get_title_cheat_file_load
001216b4 00000028 t action_get_title_remap_file_load
001216dc 00000028 t action_get_title_overlay
00121704 00000028 t action_get_title_cheat_directory
0012172c 00000028 t action_get_xmb_font_path
00121754 00000028 t action_get_title_video_shader_preset
0012177c 00000028 t action_get_title_deferred_core_list
001217a4 00000028 t action_get_title_configurations
001217cc 00000028 t action_get_title_content_database_directory
001217f4 00000028 t action_get_title_savestate_directory
0012181c 00000028 t action_get_title_dynamic_wallpapers_directory
00121844 00000028 t action_get_title_core_assets_directory
0012186c 00000028 t action_get_title_config_directory
00121894 00000028 t action_get_title_input_remapping_directory
001218bc 00000028 t action_get_title_autoconfig_directory
001218e4 00000028 t action_get_title_playlist_directory
0012190c 00000028 t action_get_title_browser_directory
00121934 00000028 t action_get_title_content_directory
0012195c 00000028 t action_get_title_screenshot_directory
00121984 00000028 t action_get_title_cursor_directory
001219ac 00000028 t action_get_title_onscreen_overlay_keyboard_directory
001219d4 00000028 t action_get_title_recording_config_directory
001219fc 00000028 t action_get_title_recording_output_directory
00121a24 00000028 t action_get_title_system_directory
00121a4c 00000028 t action_get_title_menu
00121a74 00000028 t action_get_title_font_path
00121a9c 000001b8 t fill_pathname_join_delim.constprop.357
00121c54 00000114 t menu_action_setting_disp_set_label_menu_file_core
00121d68 000001bc t fill_pathname.constprop.350
00121f24 000000d4 t sanitize_to_string
00121ff8 00000018 t action_get_title_action_generic
00122010 00000114 t menu_action_setting_disp_set_label_menu_file_url_core
00122124 00003fcc t twoxbr_work_cb_xrgb8888
001260f0 000000e0 t menu_action_setting_disp_set_label_poll_type_behavior
001261d0 000000e0 t menu_action_setting_disp_set_label_menu_toggle_gamepad_combo
001262b0 00000090 t setting_get_string_representation_uint_video_monitor_index
00126340 000002b8 t CONFIG_UINT.constprop.329
001265f8 000000b8 t setting_action_ok_bind_defaults
001266b0 000002e8 t CONFIG_BOOL.constprop.336
00126998 000002d8 t CONFIG_BOOL.constprop.335
00126c70 00000170 T config_userdata_get_string
00126de0 00000178 T config_userdata_get_float
00126f58 000000fc t zlib_stream_decompress_init
00127054 0000035c t png_reverse_filter_init
001273b0 0000000c T retro_main_verbosity
001273bc 00000010 T retro_main_log_file
001273cc 0000003c T retro_main_log_file_init
00127408 00000040 T retro_main_log_file_deinit
00127448 00000074 T RARCH_LOG_V
001274bc 000000bc t rarch_log_libretro
00127578 0000008c T RARCH_LOG
00127604 00000038 T retro_get_cpu_features
0012763c 00000094 T retro_perf_log
001276d0 00000054 t hid_joypad_init
00127724 00000188 t ctr_input_initialize
001278ac 00000074 T RARCH_LOG_OUTPUT_V
00127920 0000007c T RARCH_LOG_OUTPUT
0012799c 00000074 T RARCH_WARN_V
00127a10 0000007c T RARCH_WARN
00127a8c 00000108 t parse_hat
00127b94 00000074 T RARCH_ERR_V
00127c08 0000007c T RARCH_ERR
00127c84 0000002c t null_gfx_init
00127cb0 00000018 t nullinput_input_init
00127cc8 00000018 t null_audio_init
00127ce0 00000040 T file_archive_parse_file_iterate_stop
00127d20 00000024 T file_archive_parse_file_progress
00127d44 0000000c T file_archive_get_default_file_backend
00127d50 00000170 T utf8_conv_utf32
00127ec0 000001f4 T utf16_conv_utf8
001280b4 000000a8 T utf8cpy
0012815c 00000008 T utf8skip
00128164 00000004 T utf8len
00128168 0000000c T retro_get_perf_counter_rarch
00128174 0000000c T retro_get_perf_counter_libretro
00128180 00000010 T retro_get_perf_count_rarch
00128190 00000010 T retro_get_perf_count_libretro
001281a0 00000024 T retro_perf_clear
001281c4 00000008 T retro_get_cpu_cores
001281cc 0000037c T __getopt_long_retro
00128548 000000b4 T strcasestr_retro__
001285fc 00000098 T strlcpy_retro__
00128694 000000dc t menu_action_setting_disp_set_label_menu_input_keyboard_gamepad_mapping_type
00128770 00000220 t find_driver_nonempty
00128990 00000088 t setting_string_action_left_driver
00128a18 000000d0 t setting_string_action_right_driver
00128ae8 000000cc t menu_animation_ctl.constprop.322
00128bb4 000000c8 T strlcat_retro__
00128c7c 000001c8 t fill_pathname_resolve_relative.constprop.355
00128e44 000000b4 t menu_action_setting_disp_set_label_state
00128ef8 00000134 T rl_fnmatch
0012902c 00000034 T memalign_alloc
00129060 00000008 T memalign_free
00129068 0000009c T config_file_free
00129104 00000098 T config_get_double
0012919c 0000009c T config_get_float
00129238 000000d0 T config_get_int
00129308 00000088 T config_userdata_get_int
00129390 000000d4 T config_get_uint64
00129464 000000d0 T config_get_uint
00129534 000000d0 T config_get_hex
00129604 000000ac T config_get_char
001296b0 00000094 T config_get_string
00129744 000000ac T config_get_config_path
001297f0 0000012c T config_get_array
0012991c 0000012c T config_get_path
00129a48 0000010c T config_get_bool
00129b54 00000150 T config_set_string
00129ca4 00000088 T config_unset
00129d2c 00000004 T config_set_path
00129d30 00000060 T config_set_double
00129d90 00000064 T config_set_float
00129df4 00000058 T config_set_int
00129e4c 00000058 T config_set_hex
00129ea4 0000005c T config_set_uint64
00129f00 0000004c T config_set_char
00129f4c 00000020 T config_set_bool
00129f6c 000000c4 T config_file_write
0012a030 00000084 T config_file_dump
0012a0b4 00000048 T config_entry_exists
0012a0fc 00000028 T config_get_entry_list_head
0012a124 00000020 T config_get_entry_list_next
0012a144 000000f0 T core_option_free
0012a234 0000008c T core_option_get
0012a2c0 0000000c T core_option_updated
0012a2cc 000000f4 T core_option_flush
0012a3c0 00000114 T core_option_flush_game_specific
0012a4d4 0000000c T core_option_size
0012a4e0 00000010 T core_option_get_desc
0012a4f0 00000028 T core_option_get_val
0012a518 0000003c T core_option_set_val
0012a554 00000040 T core_option_next
0012a594 00000044 T core_option_prev
0012a5d8 00000024 T core_option_set_default
0012a5fc 00000018 T cheat_manager_get_buf_size
0012a614 00000018 T cheat_manager_get_size
0012a62c 00000040 T cheat_manager_set_code
0012a66c 00000080 T cheat_manager_new
0012a6ec 000000b4 T cheat_manager_realloc
0012a7a0 00000078 T cheat_manager_free
0012a818 00000028 T cheat_manager_get_code
0012a840 00000024 T cheat_manager_get_desc
0012a864 00000028 T cheat_manager_get_code_state
0012a88c 00000080 T cheat_manager_state_free
0012a90c 00000060 T cheat_manager_alloc_if_empty
0012a96c 000001e4 T sha256_hash
0012ab50 00000030 T djb2_calculate
0012ab80 00000084 T video_texture_image_color_convert
0012ac04 00000034 T video_texture_image_free
0012ac38 000001d8 T rtga_image_load_shift
0012ae10 0000002c T png_realloc_idat
0012ae3c 00000424 T rpng_nbio_load_image_argb_iterate
0012b260 00000458 T rpng_nbio_load_image_argb_process
0012b6b8 00000438 t rarch_task_file_load_handler
0012baf0 000000a4 t cb_image_menu_boxart
0012bb94 000000a4 t cb_image_menu_wallpaper
0012bc38 0000005c T rpng_nbio_load_image_free
0012bc94 0000012c t cb_nbio_image_menu_boxart
0012bdc0 0000012c t cb_nbio_image_menu_wallpaper
0012beec 00000070 T rpng_nbio_load_image_argb_start
0012bf5c 0000002c T rpng_is_valid
0012bf88 00000010 T rpng_set_buf_ptr
0012bf98 00000010 T rpng_alloc
0012bfa8 0000002c T matrix_4x4_identity
0012bfd4 000000b8 T matrix_4x4_transpose
0012c08c 0000005c T matrix_4x4_rotate_x
0012c0e8 0000005c T matrix_4x4_rotate_y
0012c144 0000005c T matrix_4x4_rotate_z
0012c1a0 000000a4 T matrix_4x4_ortho
0012c244 00000040 T matrix_4x4_scale
0012c284 0000004c T matrix_4x4_translate
0012c2d0 00000064 T matrix_4x4_projection
0012c334 0000020c T matrix_4x4_multiply
0012c540 00000028 T matrix_3x3_identity
0012c568 00000028 T matrix_3x3_inits
0012c590 00000050 T matrix_3x3_transpose
0012c5e0 00000110 T matrix_3x3_multiply
0012c6f0 0000007c T matrix_3x3_divide_scalar
0012c76c 0000004c T matrix_3x3_determinant
0012c7b8 0000009c T matrix_3x3_adjoint
0012c854 00000124 T matrix_3x3_invert
0012c978 00000154 T matrix_3x3_square_to_quad
0012cacc 00000270 T matrix_3x3_quad_to_square
0012cd3c 00000328 T matrix_3x3_quad_to_quad
0012d064 000000a4 T font_renderer_create_default
0012d108 00000024 T font_driver_has_render_msg
0012d12c 00000024 T font_driver_render_msg
0012d150 00000024 T font_driver_bind_block
0012d174 0000001c T font_driver_flush
0012d190 0000002c T font_driver_get_message_width
0012d1bc 00000040 T font_driver_free
0012d1fc 00000008 T font_driver_init_first
0012d204 0000005c T input_get_auto_bind
0012d260 00000014 T joypad_driver_find_handle
0012d274 0000001c T joypad_driver_find_ident
0012d290 0000015c T input_joypad_init_driver
0012d3ec 00000054 T input_joypad_init_first
0012d440 00000014 T input_joypad_name
0012d454 0000005c T input_joypad_set_rumble
0012d4b0 0000010c T input_joypad_pressed
0012d5bc 000001c0 T input_joypad_analog
0012d77c 00000150 t ctr_input_state
0012d8cc 00000060 T input_joypad_axis_raw
0012d92c 00000028 T input_joypad_button_raw
0012d954 0000002c T input_joypad_hat_raw
0012d980 00000070 T input_conv_analog_id_to_bind_id
0012d9f0 00000014 T hid_driver_find_handle
0012da04 00000010 T hid_driver_get_data
0012da14 0000001c T hid_driver_find_ident
0012da30 00000044 T input_hid_init_first
0012da74 00000018 T input_config_bind_map_get_valid
0012da8c 00000018 T input_config_bind_map_get_meta
0012daa4 00000018 T input_config_bind_map_get_base
0012dabc 00000018 T input_config_bind_map_get_desc
0012dad4 000001b4 T input_config_parse_key
0012dc88 00000040 T input_config_get_prefix
0012dcc8 000000b0 T input_config_translate_str_to_rk
0012dd78 00000068 T input_config_translate_str_to_bind_id
0012dde0 000002f4 T input_config_parse_joy_button
0012e0d4 00000304 T input_config_parse_joy_axis
0012e3d8 000003f8 T input_config_get_bind_string
0012e7d0 00000194 t menu_action_setting_disp_set_label_input_desc
0012e964 0000008c t setting_get_string_representation_st_bind
0012e9f0 00000058 T input_keymaps_init_keyboard_lut
0012ea48 0000003c T input_keymaps_translate_keysym_to_rk
0012ea84 000000c8 T input_keymaps_translate_rk_to_str
0012eb4c 00000014 T input_keymaps_translate_rk_to_keysym
0012eb60 000008d0 T input_remapping_load_file
0012f430 0000011c T input_remapping_set_defaults
0012f54c 000000a0 T input_remapping_state
0012f5ec 00000124 T input_keyboard_line_event
0012f710 00000004 T input_keyboard_line_get_buffer
0012f714 00000034 T input_keyboard_wait_keys
0012f748 00000034 T input_keyboard_wait_keys_cancel
0012f77c 00000198 T state_tracker_init
0012f914 00000020 T state_tracker_free
0012f934 00000060 T fifo_new
0012f994 00000010 T fifo_clear
0012f9a4 00000024 T fifo_free
0012f9c8 0000001c T fifo_read_avail
0012f9e4 00000024 T fifo_write_avail
0012fa08 00000068 T fifo_write
0012fa70 0000006c T fifo_read
0012fadc 00000014 T audio_resampler_driver_find_handle
0012faf0 0000001c T audio_resampler_driver_find_ident
0012fb0c 00000174 T rarch_resampler_realloc
0012fc80 000001d8 T csndPlaySound_custom
0012fe58 00000014 T video_driver_find_handle
0012fe6c 0000001c T video_driver_find_ident
0012fe88 00000010 T video_driver_get_ptr
0012fe98 00000018 T video_driver_get_ident
0012feb0 00000010 T video_driver_get_poke
0012fec0 00000038 T video_driver_set_shader
0012fef8 00000064 T video_driver_set_viewport
0012ff5c 00000048 T video_driver_set_rotation
0012ffa4 00000044 T video_driver_get_video_output_size
0012ffe8 00000040 T video_driver_set_osd_msg
00130028 00000030 T video_driver_set_texture_enable
00130058 0000004c T video_driver_set_texture_frame
001300a4 00000058 T video_driver_read_frame_raw
001300fc 00000030 T video_driver_set_filtering
0013012c 00000048 T video_driver_cached_frame_get
00130174 00000028 T video_driver_get_size
0013019c 00000028 T video_driver_set_size
001301c4 00000140 T video_monitor_fps_statistics
00130304 0000017c T video_monitor_get_fps
00130480 00000010 T video_driver_get_aspect_ratio
00130490 00000010 T video_driver_set_aspect_ratio_value
001304a0 00000010 T video_driver_frame_filter_get_ptr
001304b0 00000010 T video_driver_get_pixel_format
001304c0 00000010 T video_driver_set_pixel_format
001304d0 00000004 T video_driver_menu_settings
001304d4 0000014c T video_viewport_get_scaled_integer
00130620 0000000c T video_viewport_get_system_av_info
0013062c 00000010 T video_viewport_get_custom
0013063c 00000030 T video_pixel_get_alignment
0013066c 00000010 T video_driver_display_type_set
0013067c 00000010 T video_driver_display_get
0013068c 00000010 T video_driver_display_set
0013069c 00000010 T video_driver_display_type_get
001306ac 00000010 T video_driver_window_set
001306bc 00000010 T video_driver_window_get
001306cc 00000060 T video_driver_texture_load
0013072c 0000004c T video_driver_texture_unload
00130778 000001bc T gfx_coord_array_add
00130934 00000080 T gfx_coord_array_free
001309b4 00000014 T input_driver_find_handle
001309c8 0000001c T input_driver_find_ident
001309e4 00000010 T input_get_ptr
001309f4 0000000c T input_get_double_ptr
00130a00 00000040 T input_driver_state
00130a40 00000030 T input_driver_get_joypad_driver
00130a70 00000030 T input_driver_get_sec_joypad_driver
00130aa0 00000034 T input_driver_get_capabilities
00130ad4 00000024 T input_driver_keyboard_mapping_set_block
00130af8 000000c0 T input_push_analog_dpad
00130bb8 00000024 T input_pop_analog_dpad
00130bdc 00000010 T input_driver_get_data
00130bec 0000000c T input_driver_get_data_ptr
00130bf8 00000014 T audio_driver_find_handle
00130c0c 0000001c T audio_driver_find_ident
00130c28 00000010 T audio_driver_set_volume_gain
00130c38 00000094 T audio_driver_dsp_filter_free
00130ccc 00000010 T audio_driver_set_buffer_size
00130cdc 00000014 T camera_driver_find_handle
00130cf0 0000001c T camera_driver_find_ident
00130d0c 00000014 T location_driver_find_handle
00130d20 0000001c T location_driver_find_ident
00130d3c 00000070 T driver_find_next
00130dac 000005b8 T scaler_gen_filter
00131364 00000004 T scaler_alloc
00131368 0000000c T scaler_free
00131374 000000c0 T scaler_ctx_gen_reset
00131434 00000378 T scaler_ctx_gen_filter
001317ac 00000144 T scaler_ctx_scale
001318f0 00000138 T df8
00131a28 00000128 T eq8
00131b50 00001030 T snes_ntsc_init
00132b80 000001c8 t blargg_ntsc_snes_generic_create
00132d48 00000860 T snes_ntsc_blit
001335a8 00000cf4 T snes_ntsc_blit_hires
0013429c 00000080 t blargg_ntsc_snes_work_cb_rgb565
0013431c 0000018c T fft_new
001344a8 00000a24 t eq_init
00134ecc 00000034 T fft_free
00134f00 00000138 T fft_process_forward_complex
00135038 0000013c T fft_process_forward
00135174 0000019c T fft_process_inverse
00135310 0000000c T reverb_dspfilter_get_implementation
0013531c 000000a8 T libretro_find_subsystem_info
001353c4 00000064 T libretro_find_controller_description
00135428 0000025c T init_libretro_sym
00135684 00000044 T rarch_softfilter_free
001356c8 00000040 T rarch_softfilter_get_max_output_size
00135708 00000038 T rarch_softfilter_get_output_size
00135740 00000008 T rarch_softfilter_get_output_format
00135748 0000009c T rarch_softfilter_process
001357e4 00000084 T rarch_dsp_filter_free
00135868 00000078 T rarch_dsp_filter_process
001358e0 00000280 T content_push_to_history_playlist
00135b60 00000054 T path_get_extension
00135bb4 0000005c T path_remove_extension
00135c10 00000018 T path_contains_compressed_file
00135c28 00000064 T path_is_compressed_file
00135c8c 0000002c T path_file_exists
00135cb8 00000210 T fill_pathname
00135ec8 000001a8 T fill_pathname_noext
00136070 000000d8 T fill_pathname_slash
00136148 000001e0 t fill_pathname_dir.constprop.349
00136328 00000190 t fill_pathname_join.constprop.353
001364b8 00000118 t core_info_list_update_missing_firmware
001365d0 000001f8 T fill_pathname_dir
001367c8 000000f4 T fill_pathname_base
001368bc 00000128 T fill_pathname_basedir
001369e4 00000178 T fill_pathname_parent_dir
00136b5c 00000098 T fill_dated_filename
00136bf4 0000006c T path_basedir
00136c60 000002f4 t add_sub_conf
00136f54 00000328 t parse_line
0013727c 00000248 t config_file_new_internal
001374c4 00000008 T config_file_new
001374cc 00000050 T config_append_file
0013751c 000003d0 T cheat_manager_load
001378ec 00000454 T rarch_softfilter_new