-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRSPE_r1.dmap
12452 lines (12452 loc) · 538 KB
/
RSPE_r1.dmap
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
.text section layout
80004000 000050 80004000 0 memcpy
80004050 0000b4 80004050 0 __fill_mem
80004104 000030 80004104 0 memset
80004134 000030 80004134 0 TRK_memset
80004164 000024 80004164 0 TRK_memcpy
800060bc 00002c 800060bc 0 __TRK_reset
800060e8 000024 800060e8 0 __check_pad3
80006110 00000c 80006110 0 __set_debug_bba
8000611c 000008 8000611c 0 __get_debug_bba
80006124 00016c 80006124 0 __start
80006290 000090 80006290 0 __init_registers
80006320 0000a8 80006320 0 __init_data
800063c8 000024 800063c8 0 __init_hardware
800063ec 000034 800063ec 0 __flush_cache
800076e0 000018 800076e0 0 ut::List_Init
800076f8 000070 800076f8 0 ut::List_Append
80007768 000120 80007768 0 ut::List_Insert
80007888 00006c 80007888 0 ut::List_Remove
800078f4 000020 800078f4 0 ut::List_GetNext
80007914 00001c 80007914 0 ut::List_GetPrev
80007930 00004c 80007930 0 ut::List_GetNth
8000797c 000084 8000797c 0 LinkListImpl::~LinkListImpl
80007a00 000048 80007a00 0 LinkListImpl::Erase
80007a48 000044 80007a48 0 LinkListImpl::Clear
80007a8c 00002c 80007a8c 0 LinkListImpl::Insert
80007ab8 000030 80007ab8 0 LinkListImpl::Erase
80007ae8 000074 80007ae8 0 ut::IsValidBinaryFile
80007b5c 000078 80007b5c 0 CharStrmReader::ReadNextCharUTF8
80007bd4 00001c 80007bd4 0 CharStrmReader::ReadNextCharUTF16
80007bf0 00001c 80007bf0 0 CharStrmReader::ReadNextCharCP1252
80007c0c 000060 80007c0c 0 CharStrmReader::ReadNextCharSJIS
80007c6c 000010 80007c6c 0 TagProcessorBase<char>::TagProcessorBase
80007c7c 000040 80007c7c 0 TagProcessorBase<char>::~TagProcessorBase
80007cbc 000130 80007cbc 0 TagProcessorBase<char>::Process
80007dec 0001e8 80007dec 0 TagProcessorBase<char>::CalcRect
80007fd4 000010 80007fd4 0 TagProcessorBase<wchar_t>::TagProcessorBase
80007fe4 000040 80007fe4 0 TagProcessorBase<wchar_t>::~TagProcessorBase
80008024 000130 80008024 0 TagProcessorBase<wchar_t>::Process
80008154 0001e8 80008154 0 TagProcessorBase<wchar_t>::CalcRect
8000833c 000008 8000833c 0 IOStream::ReadAsync
80008344 000004 80008344 0 IOStream::Write
80008348 000008 80008348 0 IOStream::WriteAsync
80008350 000008 80008350 0 IOStream::IsBusy
80008358 000008 80008358 0 IOStream::GetBufferAlign
80008360 000008 80008360 0 IOStream::GetSizeAlign
80008368 000008 80008368 0 IOStream::GetOffsetAlign
80008370 00000c 80008370 0 __sinit_\ut_IOStream_cpp
8000837c 000004 8000837c 0 FileStream::Cancel
80008380 000008 80008380 0 FileStream::CancelAsync
80008388 000064 80008388 0 FilePosition::Skip
800083ec 000050 800083ec 0 FilePosition::Append
8000843c 000098 8000843c 0 FilePosition::Seek
800084d4 000008 800084d4 0 FileStream::GetRuntimeTypeInfo
800084dc 00000c 800084dc 0 __sinit_\ut_FileStream_cpp
800084e8 000028 800084e8 0 DvdFileStream::DvdAsyncCallback_
80008514 000024 80008514 0 DvdFileStream::DvdCBAsyncCallback_
8000853c 0000bc 8000853c 0 DvdFileStream::DvdFileStream
800085f8 000130 800085f8 0 DvdFileStream::DvdFileStream
80008728 000078 80008728 0 DvdFileStream::~DvdFileStream
800087a0 000050 800087a0 0 DvdFileStream::Close
800087f0 000088 800087f0 0 DvdFileStream::Read
80008878 0000f4 80008878 0 DvdFileStream::ReadAsync
8000896c 00003c 8000896c 0 DvdFileStream::Peek
800089a8 000080 800089a8 0 DvdFileStream::PeekAsync
80008a28 000008 80008a28 0 DvdFileStream::Seek
80008a30 000008 80008a30 0 DvdFileStream::Cancel
80008a38 00005c 80008a38 0 DvdFileStream::CancelAsync
80008a94 000008 80008a94 0 DvdFileStream::GetBufferAlign
80008a9c 000008 80008a9c 0 DvdFileStream::GetSizeAlign
80008aa4 000008 80008aa4 0 DvdFileStream::GetOffsetAlign
80008aac 000008 80008aac 0 DvdFileStream::CanCancel
80008ab4 000008 80008ab4 0 DvdFileStream::CanWrite
80008abc 000008 80008abc 0 DvdFileStream::CanRead
80008ac4 000008 80008ac4 0 DvdFileStream::CanSeek
80008acc 000008 80008acc 0 DvdFileStream::CanAsync
80008ad4 000008 80008ad4 0 DvdFileStream::GetSize
80008adc 000008 80008adc 0 DvdFileStream::Tell
80008ae4 000008 80008ae4 0 DvdFileStream::IsBusy
80008aec 000008 80008aec 0 DvdFileStream::GetRuntimeTypeInfo
80008af4 00000c 80008af4 0 __sinit_\ut_DvdFileStream_cpp
80008b00 000074 80008b00 0 DvdLockedFileStream::DvdLockedFileStream
80008b74 000074 80008b74 0 DvdLockedFileStream::DvdLockedFileStream
80008be8 000058 80008be8 0 DvdLockedFileStream::~DvdLockedFileStream
80008c40 000074 80008c40 0 DvdLockedFileStream::Read
80008cb4 000074 80008cb4 0 DvdLockedFileStream::Peek
80008d28 000008 80008d28 0 DvdLockedFileStream::CanAsync
80008d30 000008 80008d30 0 DvdLockedFileStream::PeekAsync
80008d38 000008 80008d38 0 DvdLockedFileStream::ReadAsync
80008d40 000008 80008d40 0 DvdLockedFileStream::GetRuntimeTypeInfo
80008d48 00000c 80008d48 0 __sinit_\ut_DvdLockedFileStream_cpp
80008d54 000028 80008d54 0 NandFileStream::NandAsyncCallback_
80008d80 000070 80008d80 0 NandFileStream::NandFileStream
80008df0 000070 80008df0 0 NandFileStream::NandFileStream
80008e60 000078 80008e60 0 NandFileStream::~NandFileStream
80008ed8 0000e8 80008ed8 0 NandFileStream::Open
80008fc0 000774 80008fc0 0 NandFileStream::Open
80009734 000050 80009734 0 NandFileStream::Close
80009784 00007c 80009784 0 NandFileStream::Read
80009800 0000a4 80009800 0 NandFileStream::ReadAsync
800098a4 00006c 800098a4 0 NandFileStream::Write
80009910 0000a8 80009910 0 NandFileStream::WriteAsync
800099b8 000008 800099b8 0 NandFileStream::Seek
800099c0 000008 800099c0 0 NandFileStream::GetBufferAlign
800099c8 000008 800099c8 0 NandFileStream::GetSizeAlign
800099d0 000008 800099d0 0 NandFileStream::GetOffsetAlign
800099d8 000008 800099d8 0 FileStream::CanCancel
800099e0 000008 800099e0 0 NandFileStream::CanWrite
800099e8 000008 800099e8 0 NandFileStream::CanRead
800099f0 000008 800099f0 0 NandFileStream::CanSeek
800099f8 000008 800099f8 0 NandFileStream::CanAsync
80009a00 000008 80009a00 0 NandFileStream::GetSize
80009a08 000008 80009a08 0 NandFileStream::Tell
80009a10 000008 80009a10 0 NandFileStream::IsBusy
80009a18 000008 80009a18 0 NandFileStream::GetRuntimeTypeInfo
80009a20 00000c 80009a20 0 __sinit_\ut_NandFileStream_cpp
80009a2c 000060 80009a2c 0 LC::Enable
80009a8c 000078 80009a8c 0 LC::Disable
80009b04 000070 80009b04 0 LC::Lock
80009b74 000040 80009b74 0 LC::Unlock
80009bb4 000004 80009bb4 0 LC::LoadBlocks
80009bb8 000004 80009bb8 0 LC::StoreBlocks
80009bbc 000004 80009bbc 0 LC::StoreData
80009bc0 000018 80009bc0 0 __sinit_\ut_LockedCache_cpp
80009bd8 0000a8 80009bd8 0 Font::InitReaderFunc
80009c80 000054 80009c80 0 RomFont::RomFont
80009cd4 000040 80009cd4 0 Font::~Font
80009d14 000040 80009d14 0 RomFont::~RomFont
80009d54 0000d4 80009d54 0 RomFont::Load
80009e28 000058 80009e28 0 RomFont::GetRequireBufferSize
80009e80 00000c 80009e80 0 RomFont::GetWidth
80009e8c 00005c 80009e8c 0 RomFont::GetHeight
80009ee8 00000c 80009ee8 0 RomFont::GetAscent
80009ef4 00000c 80009ef4 0 RomFont::GetDescent
80009f00 00000c 80009f00 0 RomFont::GetBaselinePos
80009f0c 00000c 80009f0c 0 RomFont::GetCellHeight
80009f18 00000c 80009f18 0 RomFont::GetCellWidth
80009f24 00000c 80009f24 0 RomFont::GetMaxCharWidth
80009f30 000008 80009f30 0 RomFont::GetType
80009f38 000008 80009f38 0 RomFont::GetTextureFormat
80009f40 00000c 80009f40 0 RomFont::GetLineFeed
80009f4c 000018 80009f4c 0 RomFont::GetDefaultCharWidths
80009f64 00001c 80009f64 0 RomFont::SetDefaultCharWidth
80009f80 000100 80009f80 0 RomFont::SetAlternateChar
8000a080 00000c 8000a080 0 RomFont::SetLineFeed
8000a08c 00011c 8000a08c 0 RomFont::GetCharWidth
8000a1a8 00004c 8000a1a8 0 RomFont::GetCharWidths
8000a1f4 00018c 8000a1f4 0 RomFont::GetGlyph
8000a380 000034 8000a380 0 RomFont::GetEncoding
8000a3b4 000044 8000a3b4 0 ResFontBase::ResFontBase
8000a3f8 000040 8000a3f8 0 ResFontBase::~ResFontBase
8000a438 00000c 8000a438 0 ResFontBase::SetResourceBuffer
8000a444 00000c 8000a444 0 ResFontBase::GetWidth
8000a450 00000c 8000a450 0 ResFontBase::GetHeight
8000a45c 00000c 8000a45c 0 ResFontBase::GetAscent
8000a468 000014 8000a468 0 ResFontBase::GetDescent
8000a47c 000014 8000a47c 0 ResFontBase::GetBaselinePos
8000a490 000010 8000a490 0 ResFontBase::GetCellHeight
8000a4a0 000010 8000a4a0 0 ResFontBase::GetCellWidth
8000a4b0 000010 8000a4b0 0 ResFontBase::GetMaxCharWidth
8000a4c0 000008 8000a4c0 0 ResFontBase::GetType
8000a4c8 000010 8000a4c8 0 ResFontBase::GetTextureFormat
8000a4d8 000010 8000a4d8 0 ResFontBase::GetLineFeed
8000a4e8 000018 8000a4e8 0 ResFontBase::GetDefaultCharWidths
8000a500 000020 8000a500 0 ResFontBase::SetDefaultCharWidths
8000a520 000098 8000a520 0 ResFontBase::SetAlternateChar
8000a5b8 00000c 8000a5b8 0 ResFontBase::SetLineFeed
8000a5c4 00004c 8000a5c4 0 ResFontBase::GetCharWidth
8000a610 0000ec 8000a610 0 ResFontBase::GetCharWidths
8000a6fc 0000a4 8000a6fc 0 ResFontBase::GetGlyph
8000a7a0 00000c 8000a7a0 0 ResFontBase::GetEncoding
8000a7ac 0000d4 8000a7ac 0 ResFontBase::FindGlyphIndex
8000a880 000104 8000a880 0 ResFontBase::GetGlyphFromIndex
8000a984 00003c 8000a984 0 ResFont::ResFont
8000a9c0 000058 8000a9c0 0 ResFont::~ResFont
8000aa18 000144 8000aa18 0 ResFont::SetResource
8000ab5c 00012c 8000ab5c 0 ResFont::Rebuild
8000ac88 000040 8000ac88 0 Color::~Color
8000acc8 000220 8000acc8 0 CharWriter::CharWriter
8000aee8 000044 8000aee8 0 CharWriter::SetColorMapping
8000af2c 000160 8000af2c 0 CharWriter::SetTextColor
8000b08c 000040 8000b08c 0 CharWriter::~CharWriter
8000b0cc 000a58 8000b0cc 0 CharWriter::SetupGX
8000bb24 0000c4 8000bb24 0 CharWriter::SetFontSize
8000bbe8 000060 8000bbe8 0 CharWriter::GetFontWidth
8000bc48 000060 8000bc48 0 CharWriter::GetFontHeight
8000bca8 000060 8000bca8 0 CharWriter::GetFontAscent
8000bd08 000060 8000bd08 0 CharWriter::GetFontDescent
8000bd68 000024 8000bd68 0 CharWriter::EnableLinearFilter
8000bd8c 000130 8000bd8c 0 CharWriter::Print
8000bebc 00027c 8000bebc 0 CharWriter::PrintGlyph
8000c138 000150 8000c138 0 CharWriter::UpdateVertexColor
8000c288 00034c 8000c288 0 CharWriter::SetupGXWithColorMapping
8000c5d4 00005c 8000c5d4 0 TextWriterBase<char>::TextWriterBase<char>
8000c630 000058 8000c630 0 TextWriterBase<char>::~TextWriterBase<char>
8000c688 00007c 8000c688 0 TextWriterBase<char>::GetLineHeight
8000c704 000268 8000c704 0 TextWriterBase<char>::Printf
8000c96c 000204 8000c96c 0 TextWriterBase<char>::Print
8000cb70 000688 8000cb70 0 TextWriterBase<char>::CalcLineRectImpl
8000d1f8 000038 8000d1f8 0 Font::GetCharStrmReader
8000d230 000110 8000d230 0 TextWriterBase<char>::CalcStringRectImpl
8000d340 000a38 8000d340 0 TextWriterBase<char>::PrintImpl
8000dd78 00074c 8000dd78 0 TextWriterBase<char>::AdjustCursor
8000e4c4 00005c 8000e4c4 0 TextWriterBase<wchar_t>::TextWriterBase<wchar_t>
8000e520 000058 8000e520 0 TextWriterBase<wchar_t>::~TextWriterBase<wchar_t>
8000e578 00007c 8000e578 0 TextWriterBase<wchar_t>::GetLineHeight
8000e5f4 0002a4 8000e5f4 0 TextWriterBase<wchar_t>::CalcStringWidth
8000e898 000288 8000e898 0 TextWriterBase<wchar_t>::CalcStringRect
8000eb20 000204 8000eb20 0 TextWriterBase<wchar_t>::Print
8000ed24 000688 8000ed24 0 TextWriterBase<wchar_t>::CalcLineRectImpl
8000f3ac 000120 8000f3ac 0 TextWriterBase<wchar_t>::CalcStringRectImpl
8000f4cc 000a5c 8000f4cc 0 TextWriterBase<wchar_t>::PrintImpl
8000ff28 00074c 8000ff28 0 TextWriterBase<wchar_t>::AdjustCursor
80010674 000084 80010674 0 __sinit_\ut_TextWriterBase_cpp
800106f8 000084 800106f8 0 DrawOrder::Draw
8001077c 000078 8001077c 0 DrawOrder::Add
800107f4 000010 800107f4 0 DrawOrder::Remove
80010804 000064 80010804 0 Effect::Effect
80010868 000060 80010868 0 Effect::~Effect
800108c8 000134 800108c8 0 Effect::Initialize
800109fc 00000c 800109fc 0 Effect::SendClosing
80010a08 000004 80010a08 0 Effect::DestroyFunc
80010a0c 000104 80010a0c 0 Effect::Closing
80010b10 0000e0 80010b10 0 Effect::CreateEmitter
80010bf0 000088 80010bf0 0 Effect::RetireEmitter
80010c78 0000d8 80010c78 0 Effect::RetireEmitterAll
80010d50 000084 80010d50 0 Effect::RetireParticleAll
80010dd4 0003ec 80010dd4 0 Effect::Calc
800111c0 00002c 800111c0 0 Effect::Draw
800111f0 000008 800111f0 0 Effect::GetNumEmitter
800111f8 000008 800111f8 0 Effect::GetEmitter
80011200 000090 80011200 0 Effect::ForeachParticleManager
80011290 0000d8 80011290 0 Effect::ForeachEmitterFrom
80011368 000070 80011368 0 Effect::SetRootMtx
800113d8 0000e0 800113d8 0 Effect::CreateEmitter
800114b8 000060 800114b8 0 EffectSystem::EffectSystem
80011518 00007c 80011518 0 EffectSystem::~EffectSystem
80011594 00000c 80011594 0 EffectSystem::GetInstance
800115a0 000100 800115a0 0 EffectSystem::Initialize
800116a0 000048 800116a0 0 ActivityList::SetOffset
800116e8 000060 800116e8 0 EffectSystem::Closing
80011748 00011c 80011748 0 EffectSystem::CreateEffect
80011864 0000f0 80011864 0 EffectSystem::RetireEffectAll
80011954 00008c 80011954 0 EffectSystem::RetireEmitterAll
800119e0 00008c 800119e0 0 EffectSystem::RetireParticleAll
80011a6c 00009c 80011a6c 0 EffectSystem::Calc
80011b08 000084 80011b08 0 EffectSystem::Draw
80011b8c 000098 80011b8c 0 __sinit_\ef_effectsystem_cpp
80011c24 000058 80011c24 0 Emitter::Emitter
80011c7c 000040 80011c7c 0 Emitter::~Emitter
80011cbc 000084 80011cbc 0 Emitter::RetireParticleAll
80011d40 00000c 80011d40 0 Emitter::SendClosing
80011d4c 0000e8 80011d4c 0 Emitter::DestroyFunc
80011e34 0000a8 80011e34 0 Emitter::Closing
80011edc 0000d8 80011edc 0 Emitter::RetireParticleManagerAll
80011fb4 0002c0 80011fb4 0 Emitter::InitializeDatas
80012274 000158 80012274 0 Emitter::Initialize
800123cc 0002a0 800123cc 0 Emitter::CreateEmitter
8001266c 000680 8001266c 0 Emitter::CreateEmitterTmp
80012cec 0000d4 80012cec 0 ef::GetLODratio
80012dc0 000428 80012dc0 0 Emitter::Emission
800131e8 0002dc 800131e8 0 Emitter::CalcEmitter
800134c4 000088 800134c4 0 Emitter::CalcParticle
8001354c 000114 8001354c 0 Emitter::CalcEmission
80013660 000290 80013660 0 Emitter::CalcBillboard
800138f0 0001a0 800138f0 0 Emitter::RestructMatrix
80013a90 00015c 80013a90 0 Emitter::CalcGlobalMtx
80013bec 0000e8 80013bec 0 Emitter::SetMtxDirty
80013cd4 000008 80013cd4 0 Emitter::GetNumParticleManager
80013cdc 000008 80013cdc 0 Emitter::GetParticleManager
80013ce4 000048 80013ce4 0 ef::foreachParticleManagerSub
80013d2c 0000e4 80013d2c 0 Emitter::ForeachParticleManager
80013e10 001298 80013e10 0 ef::AnimCurveExecuteU8
800150a8 000f9c 800150a8 0 ef::AnimCurveExecuteF32
80016044 001088 80016044 0 ef::AnimCurveExecuteRotate
800170cc 0005d4 800170cc 0 ef::AnimCurveExecuteTexture
800176a0 000154 800176a0 0 ef::createChild
800177f4 000da0 800177f4 0 ef::AnimCurveExecuteChild
80018594 000010 80018594 0 Particle::Particle
800185a4 000040 800185a4 0 Particle::~Particle
800185e4 00000c 800185e4 0 Particle::SendClosing
800185f0 000004 800185f0 0 Particle::DestroyFunc
800185f4 000310 800185f4 0 ParticleParameter::Initialize
80018904 000770 80018904 0 Particle::Initialize
80019074 0002b8 80019074 0 Particle::Draw_GetColor
8001932c 000058 8001932c 0 ParticleManager::ParticleManager
80019384 00000c 80019384 0 ParticleManager::SendClosing
80019390 000004 80019390 0 ParticleManager::DestroyFunc
80019394 00008c 80019394 0 ParticleManager::Closing
80019420 0000c0 80019420 0 ParticleManager::RetireParticleAll
800194e0 000138 800194e0 0 ParticleManager::Initialize
80019618 000040 80019618 0 ParticleManager::~ParticleManager
80019658 00012c 80019658 0 ParticleManager::CreateParticle
80019784 001598 80019784 0 ParticleManager::Calc
8001ad1c 00003c 8001ad1c 0 ParticleManager::Draw
8001ad5c 0000d8 8001ad5c 0 ParticleManager::CalcGlobalMtx
8001ae34 00006c 8001ae34 0 ParticleManager::BeginCalc
8001aea0 000040 8001aea0 0 ParticleManager::EndCalc
8001aee0 0000f4 8001aee0 0 ParticleManager::BeginDraw
8001afd4 000004 8001afd4 0 ParticleManager::EndDraw
8001afd8 000420 8001afd8 0 ParticleManager::Draw_ModifyColor
8001b3f8 000004 8001b3f8 0 __sinit_\ef_particlemanager_cpp
8001b3fc 00000c 8001b3fc 0 Resource::GetInstance
8001b408 000048 8001b408 0 Resource::Initialize
8001b450 000164 8001b450 0 ef::breffRelocate
8001b5b4 0000b8 8001b5b4 0 ef::breffSearchName
8001b66c 000094 8001b66c 0 ef::breffIndexOf
8001b700 00008c 8001b700 0 ef::breftRelocate
8001b78c 0000b8 8001b78c 0 ef::breftSearchName
8001b844 00007c 8001b844 0 Resource::Add
8001b8c0 0000b4 8001b8c0 0 Resource::FindEmitter
8001b974 0000a4 8001b974 0 Resource::_FindEmitter
8001ba18 0000c8 8001ba18 0 Resource::_FindTexture
8001bae0 00007c 8001bae0 0 Resource::AddTexture
8001bb5c 00010c 8001bb5c 0 Resource::relocateCurveTexture
8001bc68 0000e8 8001bc68 0 Resource::relocateCurveChild
8001bd50 000208 8001bd50 0 Resource::RelocateCommand
8001bf58 0000a0 8001bf58 0 Resource::RemoveEffectProject
8001bff8 0000a0 8001bff8 0 Resource::RemoveTextureProject
8001c098 000050 8001c098 0 __sinit_\ef_resource_cpp
8001c0e8 000084 8001c0e8 0 ef::UtlistToArray
8001c16c 000110 8001c16c 0 ef::Rotation2VecY
8001c27c 0000f4 8001c27c 0 ef::GetDirMtxY
8001c370 000144 8001c370 0 ef::MtxGetRotationMtx
8001c4b4 000194 8001c4b4 0 ef::MtxGetRotation
8001c648 00001c 8001c648 0 ef::MtxGetTranslate
8001c664 000468 8001c664 0 ef::MtxGetScale
8001cacc 000010 8001cacc 0 HandleBase::HandleBase
8001cadc 000014 8001cadc 0 HandleBase::operator_=
8001caf0 000028 8001caf0 0 HandleBase::operator_=
8001cb18 00002c 8001cb18 0 HandleBase::IsValid
8001cb44 000040 8001cb44 0 HandleBase::GetPtr
8001cb84 00051c 8001cb84 0 EmitterForm::CalcVelocity
8001d0a0 0000d4 8001d0a0 0 EmitterForm::CalcLife
8001d174 00000c 8001d174 0 CreationQueue::CreationQueue
8001d180 0000c4 8001d180 0 CreationQueue::AddParticleCreation
8001d244 0000c4 8001d244 0 CreationQueue::AddEmitterCreation
8001d308 000124 8001d308 0 CreationQueue::Execute
8001d42c 000060 8001d42c 0 EmitFormBuilder::Create
8001d48c 000058 8001d48c 0 __sinit_\ef_emform_cpp
8001d4e4 000354 8001d4e4 0 EmitterFormPoint::Emission
8001d838 00039c 8001d838 0 EmitterFormLine::Emission
8001dbd4 000528 8001dbd4 0 EmitterFormDisc::Emission
8001e0fc 0008f4 8001e0fc 0 EmitterFormSphere::Emission
8001e9f0 00046c 8001e9f0 0 EmitterFormCylinder::EmissionSub
8001ee5c 000348 8001ee5c 0 EmitterFormCylinder::Emission
8001f1a4 0006a0 8001f1a4 0 EmitterFormTorus::Emission
8001f844 0003b8 8001f844 0 EmitterFormCube::EmissionSub
8001fbfc 001788 8001fbfc 0 EmitterFormCube::Emission
80021384 0001e4 80021384 0 DrawStrategyBuilder::Create
80021568 000040 80021568 0 DrawBillboardStrategy::~DrawBillboardStrategy
800215a8 000040 800215a8 0 DrawDirectionalStrategy::~DrawDirectionalStrategy
800215e8 000040 800215e8 0 DrawFreeStrategy::~DrawFreeStrategy
80021628 000040 80021628 0 DrawLineStrategy::~DrawLineStrategy
80021668 000040 80021668 0 DrawPointStrategy::~DrawPointStrategy
800216a8 000040 800216a8 0 DrawStripeStrategy::~DrawStripeStrategy
800216e8 000040 800216e8 0 DrawSmoothStripeStrategy::~DrawSmoothStripeStrategy
80021728 000310 80021728 0 DrawStrategyImpl::DrawStrategyImpl
80021a38 000070 80021a38 0 DrawStrategyImpl::InitTexture
80021aa8 0002e0 80021aa8 0 DrawStrategyImpl::InitTev
80021d88 0002b0 80021d88 0 DrawStrategyImpl::InitColor
80022038 0004d8 80022038 0 DrawStrategyImpl::SetupGP
80022510 00036c 80022510 0 DrawStrategyImpl::_SetupTevReg
8002287c 0006d8 8002287c 0 DrawStrategyImpl::_SetupTexture
80022f54 000024 80022f54 0 DrawStrategyImpl::GetGetFirstDrawParticleFunc
80022f78 000024 80022f78 0 DrawStrategyImpl::GetGetNextDrawParticleFunc
80022f9c 000030 80022f9c 0 DrawStrategyImpl::GetFirstDrawParticle_EldersFirst
80022fcc 000048 80022fcc 0 DrawStrategyImpl::GetFirstDrawParticle_YoungersFirst
80023014 000030 80023014 0 DrawStrategyImpl::GetNextDrawParticle_EldersFirst
80023044 000028 80023044 0 DrawStrategyImpl::GetNextDrawParticle_YoungersFirst
8002306c 000260 8002306c 0 AheadContext::AheadContext
800232cc 000040 800232cc 0 DrawStrategyImpl::~DrawStrategyImpl
8002330c 000088 8002330c 0 __sinit_\ef_drawstrategyimpl_cpp
80023394 00003c 80023394 0 DrawBillboardStrategy::DrawBillboardStrategy
800233d0 000038 800233d0 0 DrawBillboardStrategy::Draw
8002340c 0007b0 8002340c 0 DrawBillboardStrategy::DrawNormalBillboard
80023bbc 000758 80023bbc 0 DrawBillboardStrategy::DrawYBillboard
80024314 000690 80024314 0 DrawBillboardStrategy::DrawDirectionalBillboard
800249a4 0001dc 800249a4 0 DrawBillboardStrategy::CalcZOffset
80024b80 000110 80024b80 0 DrawBillboardStrategy::InitGraphics
80024c90 00007c 80024c90 0 DrawBillboardStrategy::GetCalcAheadFunc
80024d0c 000108 80024d0c 0 DrawStrategyImpl::CalcAhead_Speed
80024e14 0000f0 80024e14 0 DrawStrategyImpl::CalcAhead_EmitterCenter
80024f04 00001c 80024f04 0 DrawStrategyImpl::CalcAhead_EmitterDesign
80024f20 000144 80024f20 0 DrawStrategyImpl::CalcAhead_Particle
80025064 0002dc 80025064 0 DrawStrategyImpl::CalcAhead_ParticleBoth
80025340 00003c 80025340 0 DrawDirectionalStrategy::DrawDirectionalStrategy
8002537c 000138 8002537c 0 ef::DrawQuad
800254b4 000004 800254b4 0 VEC3::VEC3
800254b8 00003c 800254b8 0 math::VEC3Transform
800254f4 000004 800254f4 0 MTX34::__opPA4_Cf
800254f8 00018c 800254f8 0 ef::DrawQuad
80025684 000134 80025684 0 DrawDirectionalStrategy::Draw
800257b8 000008 800257b8 0 EmitterResource::GetEmitterDrawSetting
800257c0 000bac 800257c0 0 DrawDirectionalStrategy::DrawDirectional
8002636c 000004 8002636c 0 DrawInfo::GetViewMtx
80026370 000004 80026370 0 MTX34::MTX34
80026374 00003c 80026374 0 math::MTX34Mult
800263b0 00001c 800263b0 0 VEC3::operator_=
800263cc 000010 800263cc 0 VEC3::VEC3
800263dc 0000a4 800263dc 0 DrawStrategyImpl::Normalize
80026480 000020 80026480 0 math::VEC3Dot
800264a0 000050 800264a0 0 math::FSqrt
800264f0 000008 800264f0 0 DrawStrategyImpl::GetYoungestParticle
800264f8 00000c 800264f8 0 DrawStrategyImpl::GetElderParticle
80026504 00001c 80026504 0 Particle::Draw_GetSizeX
80026520 00007c 80026520 0 Particle::Draw_GetSizeY
8002659c 000048 8002659c 0 Particle::GetMoveDir
800265e4 0003b0 800265e4 0 ef::CalcRotate
80026994 000044 80026994 0 MTX34::MTX34
800269d8 000208 800269d8 0 ef::CalcLocalTransform
80026be0 00003c 80026be0 0 math::VEC3Cross
80026c1c 000680 80026c1c 0 DrawDirectionalStrategy::DrawDirectionalBillboard
8002729c 0000fc 8002729c 0 DrawDirectionalStrategy::InitGraphics
80027398 00007c 80027398 0 DrawDirectionalStrategy::GetCalcAheadFunc
80027414 000030 80027414 0 DrawStrategyImpl::CalcAhead_NoDesign
80027444 00003c 80027444 0 DrawFreeStrategy::DrawFreeStrategy
80027480 000138 80027480 0 ef::DrawQuad
800275b8 000618 800275b8 0 DrawFreeStrategy::Draw
80027bd0 00003c 80027bd0 0 DrawLineStrategy::DrawLineStrategy
80027c0c 0004a0 80027c0c 0 DrawLineStrategy::Draw
800280ac 00003c 800280ac 0 DrawPointStrategy::DrawPointStrategy
800280e8 0002b8 800280e8 0 DrawPointStrategy::Draw
800283a0 00003c 800283a0 0 DrawStripeStrategy::DrawStripeStrategy
800283dc 000350 800283dc 0 DrawStripeStrategy::DrawStripe
8002872c 000008 8002872c 0 DrawStrategyImpl::GetNumDrawParticle
80028734 00000c 80028734 0 DrawStripeStrategy::GetStripeTexmapType
80028740 000494 80028740 0 DrawStripeStrategy::DrawParticle
80028bd4 000004 80028bd4 0 GXEnd
80028bd8 0004b8 80028bd8 0 DrawStripeStrategy::CalcVertexTube
80029090 00039c 80029090 0 DrawStripeStrategy::DrawTubeSegment
8002942c 0002bc 8002942c 0 DrawStripeStrategy::DrawStripeTube_ConnectNone
800296e8 000340 800296e8 0 DrawStripeStrategy::DrawStripeTube_ConnectRing
80029a28 0003b8 80029a28 0 DrawStripeStrategy::DrawStripeTube_ConnectEmitter
80029de0 0001fc 80029de0 0 DrawStripeStrategy::DrawStripeTube
80029fdc 0005ec 80029fdc 0 DrawStripeStrategy::Draw
8002a5c8 000188 8002a5c8 0 DrawStripeStrategy::GetInitialPrevAxis
8002a750 0000b4 8002a750 0 DrawStripeStrategy::GetCalcAheadFunc
8002a804 00014c 8002a804 0 DrawStripeStrategy::CalcAhead_Particle_Stripe
8002a950 0002dc 8002a950 0 DrawStripeStrategy::CalcAhead_ParticleBoth_Stripe
8002ac2c 00032c 8002ac2c 0 DrawStripeStrategy::CalcAhead_ParticleBoth_Ring
8002af58 000294 8002af58 0 DrawStripeStrategy::CalcAhead_ParticleBoth_Origin
8002b1ec 00003c 8002b1ec 0 DrawSmoothStripeStrategy::DrawSmoothStripeStrategy
8002b228 0003f0 8002b228 0 DrawSmoothStripeStrategy::CalcVertex
8002b618 0004b8 8002b618 0 DrawSmoothStripeStrategy::CalcVertexTube
8002bad0 000288 8002bad0 0 DrawSmoothStripeStrategy::DrawSection_BSpline
8002bd58 000024 8002bd58 0 VEC3::operator_+
8002bd7c 0001e4 8002bd7c 0 DrawSmoothStripeStrategy::DrawSectionEnd_BSpline
8002bf60 0008d4 8002bf60 0 DrawSmoothStripeStrategy::DrawSectionTube_BSpline
8002c834 000004 8002c834 0 GXEnd
8002c838 00034c 8002c838 0 DrawSmoothStripeStrategy::DrawSmoothStripe_BSpline_ConnectNone
8002cb84 00000c 8002cb84 0 DrawSmoothStripeStrategy::GetDrawOrder
8002cb90 00000c 8002cb90 0 DrawSmoothStripeStrategy::GetStripeTexmapType
8002cb9c 000004 8002cb9c 0 Vertex::Vertex
8002cba0 000420 8002cba0 0 DrawSmoothStripeStrategy::DrawSmoothStripe_BSpline_ConnectRing
8002cfc0 0004a4 8002cfc0 0 DrawSmoothStripeStrategy::DrawSmoothStripe_BSpline_ConnectEmitter
8002d464 000048 8002d464 0 DrawStrategyImpl::GetYoungestDrawParticle
8002d4ac 000024 8002d4ac 0 VEC3::operator_-
8002d4d0 000024 8002d4d0 0 VEC3::operator_+=
8002d4f4 000038 8002d4f4 0 Vertex::Vertex
8002d52c 00003c 8002d52c 0 Vertex::operator_=
8002d568 0002f8 8002d568 0 DrawSmoothStripeStrategy::DrawSmoothStripeTube_BSpline_ConnectNone
8002d860 0003b4 8002d860 0 DrawSmoothStripeStrategy::DrawSmoothStripeTube_BSpline_ConnectRing
8002dc14 000568 8002dc14 0 DrawSmoothStripeStrategy::DrawSmoothStripeTube_BSpline_ConnectEmitter
8002e17c 000218 8002e17c 0 DrawSmoothStripeStrategy::DrawSmoothStripeTube
8002e394 000748 8002e394 0 DrawSmoothStripeStrategy::Draw
8002eadc 000188 8002eadc 0 DrawSmoothStripeStrategy::GetInitialPrevAxis
8002ec64 0000b4 8002ec64 0 DrawSmoothStripeStrategy::GetCalcAheadFunc
8002ed18 00014c 8002ed18 0 DrawSmoothStripeStrategy::CalcAhead_Particle_Stripe
8002ee64 0002dc 8002ee64 0 DrawSmoothStripeStrategy::CalcAhead_ParticleBoth_Stripe
8002f140 00032c 8002f140 0 DrawSmoothStripeStrategy::CalcAhead_ParticleBoth_Ring
8002f46c 000294 8002f46c 0 DrawSmoothStripeStrategy::CalcAhead_ParticleBoth_Origin
8002f700 000030 8002f700 0 FUN_8002f700
8002f730 00002c 8002f730 0 FUN_8002f730
8002f75c 00008c 8002f75c 0 detail::FExp
8002f7e8 00008c 8002f7e8 0 detail::FLog
8002f874 000024 8002f874 0 math::FrSqrt
8002f898 00006c 8002f898 0 math::SinFIdx
8002f904 00005c 8002f904 0 math::CosFIdx
8002f960 000084 8002f960 0 math::SinCosFIdx
8002f9e4 000150 8002f9e4 0 math::AtanFIdx
8002fb34 0001a8 8002fb34 0 math::Atan2FIdx
8002fcdc 000040 8002fcdc 0 math::VEC3Maximize
8002fd1c 000040 8002fd1c 0 VEC3Minimize
8002fd5c 000024 8002fd5c 0 MTX33Identity
8002fd80 000034 8002fd80 0 math::MTX34ToMTX33
8002fdb4 0000c8 8002fdb4 0 math::MTX34InvTranspose
8002fe7c 000020 8002fe7c 0 math::MTX34Zero
8002fe9c 000054 8002fe9c 0 math::MTX34Scale
8002fef0 00006c 8002fef0 0 math::MTX34Trans
8002ff5c 000038 8002ff5c 0 math::MTX34RotAxisFIdx
8002ff94 00014c 8002ff94 0 math::MTX34RotXYZFIdx
800300e0 000090 800300e0 0 math::VEC3TransformNormal
80030170 000034 80030170 0 math::MTX44Identity
800301a4 000044 800301a4 0 math::MTX44Copy
800301e8 0000bc 800301e8 0 AABB::Set
800302a4 0001d8 800302a4 0 AABB::Set
8003047c 0000b4 8003047c 0 FRUSTUM::Set
80030530 0006a8 80030530 0 FRUSTUM::Set
80030bd8 0001a4 80030bd8 0 FRUSTUM::IntersectAABB_Ex
80030d7c 000054 80030d7c 0 SoundHandle::~SoundHandle
80030dd0 0004a0 80030dd0 0 AxManager::AxManager
80031290 000058 80031290 0 LinkList<nw4r::snd::FxBase,4>::~LinkList
800312e8 000064 800312e8 0 AxManager::GetInstance
8003134c 000078 8003134c 0 AxManager::~AxManager
800313c4 0000d4 800313c4 0 AxManager::Init
80031498 0000a8 80031498 0 AxManager::Shutdown
80031540 00006c 80031540 0 AxManager::GetOutputVolume
800315ac 000424 800315ac 0 AxManager::Update
800319d0 000008 800319d0 0 AxManager::GetZeroBufferAddress
800319d8 00006c 800319d8 0 AxManager::RegisterCallback
80031a44 000058 80031a44 0 AxManager::UnregisterCallback
80031a9c 000080 80031a9c 0 AxManager::SetOutputMode
80031b1c 000008 80031b1c 0 AxManager::GetOutputMode
80031b24 0000e0 80031b24 0 AxManager::SetMasterVolume
80031c04 000158 80031c04 0 AxManager::AxCallbackFunc
80031d5c 000204 80031d5c 0 AxManager::AppendEffect
80031f60 0000c8 80031f60 0 AxManager::ClearEffect
80032028 0000e8 80032028 0 AxManager::ShutdownEffect
80032110 0002d8 80032110 0 AxManager::AuxCallbackFunc
800323e8 0000c8 800323e8 0 AxManager::PrepareReset
800324b0 000128 800324b0 0 AxManager::AiDmaCallbackFunc
800325d8 000044 800325d8 0 AxVoice::AxVoice
8003261c 000040 8003261c 0 AxVoice::~AxVoice
8003265c 000080 8003265c 0 AxVoice::Setup
800326dc 000140 800326dc 0 AxVoice::IsPlayFinished
8003281c 000124 8003281c 0 AxVoice::SetLoopStart
80032940 000130 80032940 0 AxVoice::SetLoopEnd
80032a70 000098 80032a70 0 AxVoice::SetLoopFlag
80032b08 000204 80032b08 0 AxVoice::StopAtPoint
80032d0c 000098 80032d0c 0 AxVoice::IsDataAddressCoverd
80032da4 0001b4 80032da4 0 AxVoice::GetCurrentPlayingSample
80032f58 00005c 80032f58 0 AxVoice::VoiceCallback
80032fb4 00006c 80032fb4 0 AxVoice::GetSampleByDspAddress
80033020 00005c 80033020 0 AxVoice::GetSampleByByte
8003307c 0d18e0 8003307c 0 AXSetVoicePriority
80033090 000060 80033090 0 AxVoice::SetVoiceType
800330f0 000060 800330f0 0 AxVoice::EnableRemote
80033150 000150 80033150 0 AxVoice::ResetDelta
800332a0 0003b4 800332a0 0 AxVoice::SetAddr
80033654 0000e0 80033654 0 AxVoice::SetSrcType
80033734 000150 80033734 0 AxVoice::SetAdpcm
80033884 0000d8 80033884 0 AxVoice::SetAdpcmLoop
8003395c 0005ec 8003395c 0 AxVoice::SetMix
80033f48 000088 80033f48 0 AxVoice::SetRmtMix
80033fd0 0001a8 80033fd0 0 AxVoice::SetSrc
80034178 0000dc 80034178 0 AxVoice::SetVe
80034254 000190 80034254 0 AxVoice::SetLpf
800343e4 000190 800343e4 0 AxVoice::SetRemoteFilter
80034574 00013c 80034574 0 AxVoice::CalcOffsetAdpcmParam
800346b0 0001a4 800346b0 0 AxVoiceParamBlock::Sync
80034854 00002c 80034854 0 AxVoiceParamBlock::Set
80034880 000278 80034880 0 AxVoiceParamBlock::SetVoiceMix
80034af8 0000e0 80034af8 0 AxVoiceParamBlock::SetVoiceSrcType
80034bd8 0001ec 80034bd8 0 AxVoiceParamBlock::SetVoiceRmtMix
80034dc4 000184 80034dc4 0 AxVoiceParamBlock::SetVoiceRmtIIRCoefs
80034f48 0000a4 80034f48 0 AxVoiceManager::GetInstance
80034fec 000084 80034fec 0 AxVoiceManager::~AxVoiceManager
80035070 000028 80035070 0 AxVoiceManager::GetRequiredMemSize
80035098 0000a4 80035098 0 AxVoiceManager::Setup
8003513c 000294 8003513c 0 AxVoiceManager::Shutdown
800353d0 0002d0 800353d0 0 AxVoiceManager::AcquireAxVoice
800356a0 0000cc 800356a0 0 AxVoiceManager::FreeAxVoice
8003576c 000094 8003576c 0 AxVoiceManager::ReserveForFreeAxVoice
80035800 000180 80035800 0 AxVoiceManager::FreeAllReservedAxVoice
80035980 000048 80035980 0 AxfxImpl::CreateHeap
800359c8 000010 800359c8 0 AxfxImpl::DestroyHeap
800359dc 00004c 800359dc 0 AxfxImpl::HookAlloc
80035a28 000030 80035a28 0 AxfxImpl::RestoreAlloc
80035a58 000060 80035a58 0 AxfxImpl::Alloc
80035ab8 000034 80035ab8 0 AxfxImpl::Free
80035af0 000038 80035af0 0 Bank::Bank
80035b28 000040 80035b28 0 Bank::~Bank
80035b68 0001b0 80035b68 0 Bank::NoteOn
80035d18 00007c 80035d18 0 BankFileReader::BankFileReader
80035d94 0001ac 80035d94 0 BankFileReader::ReadInstInfo
80035f40 000128 80035f40 0 BankFileReader::GetReferenceToSubRegion
80036068 0000b8 80036068 0 BankFileReader::ReadWaveParam
80036120 000044 80036120 0 BasicPlayer::BasicPlayer
80036164 00007c 80036164 0 BasicPlayer::InitParam
800361e0 000010 800361e0 0 BasicPlayer::SetFxSend
800361f0 000010 800361f0 0 BasicPlayer::GetFxSend
80036200 000010 80036200 0 BasicPlayer::SetRemoteOutVolume
80036210 000010 80036210 0 BasicPlayer::GetRemoteOutVolume
80036220 000010 80036220 0 BasicPlayer::GetRemoteSend
80036230 000010 80036230 0 BasicPlayer::GetRemoteFxSend
80036240 000040 80036240 0 BasicPlayer::~BasicPlayer
80036280 000094 80036280 0 BasicSound::BasicSound
80036314 000118 80036314 0 BasicSound::InitParam
8003642c 000018 8003642c 0 BasicSound::StartPrepared
80036444 0001d0 80036444 0 BasicSound::Stop
80036614 000284 80036614 0 BasicSound::Pause
80036898 000018 80036898 0 BasicSound::SetAutoStopCounter
800368b0 000104 800368b0 0 BasicSound::FadeIn
800369b4 000008 800369b4 0 BasicSound::IsPause
800369bc 00055c 800369bc 0 BasicSound::Update
80036f18 000170 80036f18 0 BasicSound::Shutdown
80037088 000050 80037088 0 BasicSound::SetPlayerPriority
800370d8 00002c 800370d8 0 BasicSound::SetInitialVolume
80037104 0000a4 80037104 0 BasicSound::SetVolume
800371a8 000008 800371a8 0 BasicSound::SetPitch
800371b0 000008 800371b0 0 BasicSound::SetPan
800371b8 000008 800371b8 0 BasicSound::SetSurroundPan
800371c0 00003c 800371c0 0 BasicSound::SetLpfFreq
800371fc 000010 800371fc 0 BasicSound::SetOutputLine
8003720c 00002c 8003720c 0 BasicSound::SetMainOutVolume
80037238 000034 80037238 0 BasicSound::SetRemoteOutVolume
8003726c 000050 8003726c 0 BasicSound::SetFxSend
800372bc 000054 800372bc 0 BasicSound::SetRemoteFilter
80037310 00003c 80037310 0 BasicSound::SetPanMode
8003734c 00003c 8003734c 0 BasicSound::SetPanCurve
80037388 000014 80037388 0 BasicSound::SetAmbientParamCallback
8003739c 000014 8003739c 0 BasicSound::IsAttachedGeneralHandle
800373b0 000014 800373b0 0 BasicSound::IsAttachedTempGeneralHandle
800373c4 000008 800373c4 0 BasicSound::DetachGeneralHandle
800373cc 000008 800373cc 0 BasicSound::DetachTempGeneralHandle
800373d4 000040 800373d4 0 BasicSound::SetId
80037414 000040 80037414 0 BasicSound::~BasicSound
80037454 000008 80037454 0 BasicSound::GetRuntimeTypeInfo
8003745c 00000c 8003745c 0 __sinit_\snd_BasicSound_cpp
80037468 00007c 80037468 0 ChannelManager::GetInstance
800374e4 000060 800374e4 0 ChannelManager::~ChannelManager
80037544 000028 80037544 0 ChannelManager::GetRequiredMemSize
8003756c 000094 8003756c 0 ChannelManager::Setup
80037600 00015c 80037600 0 ChannelManager::Shutdown
8003775c 000054 8003775c 0 ChannelManager::UpdateAllChannel
800377b0 000118 800377b0 0 Channel::InitParam
800378c8 000754 800378c8 0 Channel::Update
8003801c 000080 8003801c 0 Channel::Start
8003809c 000068 8003809c 0 Channel::Release
80038104 000108 80038104 0 Channel::Stop
8003820c 000020 8003820c 0 Channel::UpdateSweep
8003822c 000018 8003822c 0 Channel::SetSweepParam
80038244 00012c 80038244 0 Channel::VoiceCallbackFunc
80038370 0001fc 80038370 0 Channel::AllocChannel
8003856c 000018 8003856c 0 Channel::FreeChannel
80038584 000088 80038584 0 DisposeCallbackManager::GetInstance
8003860c 00005c 8003860c 0 DisposeCallbackManager::~DisposeCallbackManager
80038668 000030 80038668 0 DisposeCallbackManager::RegisterDisposeCallback
80038698 000004 80038698 0 DisposeCallbackManager::UnregisterDisposeCallback
8003869c 000124 8003869c 0 DisposeCallbackManager::Dispose
800387c0 000124 800387c0 0 DisposeCallbackManager::DisposeWave
800388e4 00004c 800388e4 0 DvdSoundArchive::DvdSoundArchive
80038930 000080 80038930 0 DvdSoundArchive::~DvdSoundArchive
800389b0 000160 800389b0 0 DvdSoundArchive::Open
80038b10 000040 80038b10 0 DvdSoundArchive::Close
80038b50 0000b8 80038b50 0 DvdSoundArchive::OpenStream
80038c08 0000c8 80038c08 0 DvdSoundArchive::OpenExtStream
80038cd0 000008 80038cd0 0 DvdSoundArchive::detail_GetRequiredStreamBufferSize
80038cd8 000088 80038cd8 0 DvdSoundArchive::LoadHeader
80038d60 000088 80038d60 0 DvdSoundArchive::LoadLabelStringData
80038de8 00002c 80038de8 0 DvdFileStream::Read
80038e14 000084 80038e14 0 DvdFileStream::Seek
80038e9c 000008 80038e9c 0 DvdFileStream::GetSize
80038ea4 000010 80038ea4 0 DvdFileStream::Tell
80038eb4 000008 80038eb4 0 DvdSoundArchive::detail_GetWaveDataFileAddress
80038ebc 000008 80038ebc 0 DvdSoundArchive::detail_GetFileAddress
80038ec4 000058 80038ec4 0 DvdFileStream::~DvdFileStream
80038f1c 000040 80038f1c 0 EnvGenerator::EnvGenerator
80038f5c 00003c 80038f5c 0 EnvGenerator::Init
80038f98 000018 80038f98 0 EnvGenerator::Reset
80038fb0 00002c 80038fb0 0 EnvGenerator::GetValue
80038fdc 000124 80038fdc 0 EnvGenerator::Update
80039100 000018 80039100 0 EnvGenerator::SetAttack
80039118 0000a0 80039118 0 EnvGenerator::SetDecay
800391b8 000008 800391b8 0 EnvGenerator::SetSustain
800391c0 0000a0 800391c0 0 EnvGenerator::SetRelease
80039260 000030 80039260 0 ExternalSoundPlayer::ExternalSoundPlayer
80039290 000088 80039290 0 ExternalSoundPlayer::~ExternalSoundPlayer
80039318 0000c0 80039318 0 ExternalSoundPlayer::SetPlayableSoundCount
800393d8 00004c 800393d8 0 ExternalSoundPlayer::InsertSoundList
80039424 000038 80039424 0 ExternalSoundPlayer::RemoveSoundList
8003945c 00005c 8003945c 0 ExternalSoundPlayer::GetLowestPrioritySound
800394b8 000024 800394b8 0 FrameHeap::FrameHeap
800394dc 000114 800394dc 0 FrameHeap::~FrameHeap
800395f0 00019c 800395f0 0 FrameHeap::Create
8003978c 0000f0 8003978c 0 FrameHeap::Destroy
8003987c 00012c 8003987c 0 FrameHeap::Clear
800399a8 0000a4 800399a8 0 FrameHeap::Alloc
80039a4c 0000cc 80039a4c 0 FrameHeap::SaveState
80039b18 000224 80039b18 0 FrameHeap::LoadState
80039d3c 00000c 80039d3c 0 FrameHeap::GetCurrentLevel
80039d48 000040 80039d48 0 FrameHeap::GetFreeSize
80039d88 000074 80039d88 0 FxChorus::FxChorus
80039dfc 00002c 80039dfc 0 FxChorus::GetRequiredMemSize
80039e28 000008 80039e28 0 FxChorus::AssignWorkBuffer
80039e30 000008 80039e30 0 FxChorus::ReleaseWorkBuffer
80039e38 0000bc 80039e38 0 FxChorus::StartUp
80039ef4 000060 80039ef4 0 FxChorus::Shutdown
80039f54 00016c 80039f54 0 FxChorus::SetParam
8003a0c0 000044 8003a0c0 0 FxChorus::UpdateBuffer
8003a104 00007c 8003a104 0 FxChorus::~FxChorus
8003a180 000174 8003a180 0 FxDelay::FxDelay
8003a2f4 00002c 8003a2f4 0 FxDelay::GetRequiredMemSize
8003a320 000008 8003a320 0 FxDelay::AssignWorkBuffer
8003a328 000008 8003a328 0 FxDelay::ReleaseWorkBuffer
8003a330 0000bc 8003a330 0 FxDelay::StartUp
8003a3ec 000060 8003a3ec 0 FxDelay::Shutdown
8003a44c 00015c 8003a44c 0 FxDelay::SetParam
8003a5a8 000044 8003a5a8 0 FxDelay::UpdateBuffer
8003a5ec 00007c 8003a5ec 0 FxDelay::~FxDelay
8003a668 00008c 8003a668 0 FxReverbHi::FxReverbHi
8003a6f4 00002c 8003a6f4 0 FxReverbHi::GetRequiredMemSize
8003a720 000008 8003a720 0 FxReverbHi::AssignWorkBuffer
8003a728 000008 8003a728 0 FxReverbHi::ReleaseWorkBuffer
8003a730 0000bc 8003a730 0 FxReverbHi::StartUp
8003a7ec 000060 8003a7ec 0 FxReverbHi::Shutdown
8003a84c 0001ec 8003a84c 0 FxReverbHi::SetParam
8003aa38 000044 8003aa38 0 FxReverbHi::UpdateBuffer
8003aa7c 00007c 8003aa7c 0 FxReverbHi::~FxReverbHi
8003aaf8 00008c 8003aaf8 0 FxReverbHiDpl2::FxReverbHiDpl2
8003ab84 00002c 8003ab84 0 FxReverbHiDpl2::GetRequiredMemSize
8003abb0 000008 8003abb0 0 FxReverbHiDpl2::AssignWorkBuffer
8003abb8 000008 8003abb8 0 FxReverbHiDpl2::ReleaseWorkBuffer
8003abc0 0000bc 8003abc0 0 FxReverbHiDpl2::StartUp
8003ac7c 000060 8003ac7c 0 FxReverbHiDpl2::Shutdown
8003acdc 0001ec 8003acdc 0 FxReverbHiDpl2::SetParam
8003aec8 00004c 8003aec8 0 FxReverbHiDpl2::UpdateBuffer
8003af14 00007c 8003af14 0 FxReverbHiDpl2::~FxReverbHiDpl2
8003af90 000144 8003af90 0 PoolImpl::CreateImpl
8003b0d4 000080 8003b0d4 0 PoolImpl::DestroyImpl
8003b154 000050 8003b154 0 PoolImpl::CountImpl
8003b1a4 00005c 8003b1a4 0 PoolImpl::AllocImpl
8003b200 000048 8003b200 0 PoolImpl::FreeImpl
8003b248 000024 8003b248 0 LfoParam::Init
8003b26c 000014 8003b26c 0 Lfo::Reset
8003b280 00009c 8003b280 0 Lfo::Update
8003b31c 00011c 8003b31c 0 Lfo::GetValue
8003b438 00004c 8003b438 0 MemorySoundArchive::MemorySoundArchive
8003b484 000058 8003b484 0 MemorySoundArchive::~MemorySoundArchive
8003b4dc 000078 8003b4dc 0 MemorySoundArchive::Setup
8003b554 00000c 8003b554 0 MemorySoundArchive::Shutdown
8003b560 0000b0 8003b560 0 MemorySoundArchive::detail_GetFileAddress
8003b610 0000b0 8003b610 0 MemorySoundArchive::detail_GetWaveDataFileAddress
8003b6c0 000060 8003b6c0 0 MemorySoundArchive::OpenStream
8003b720 000008 8003b720 0 MemorySoundArchive::OpenExtStream
8003b728 000008 8003b728 0 MemorySoundArchive::detail_GetRequiredStreamBufferSize
8003b730 000014 8003b730 0 MemoryFileStream::Close
8003b744 000058 8003b744 0 MemoryFileStream::Read
8003b79c 00004c 8003b79c 0 MemoryFileStream::Seek
8003b7ec 000008 8003b7ec 0 MemoryFileStream::GetSize
8003b7f4 000008 8003b7f4 0 MemoryFileStream::Tell
8003b7fc 000008 8003b7fc 0 MemoryFileStream::CanWrite
8003b804 000008 8003b804 0 MemoryFileStream::CanRead
8003b80c 000008 8003b80c 0 MemoryFileStream::CanAsync
8003b814 000008 8003b814 0 MemoryFileStream::CanCancel
8003b81c 000008 8003b81c 0 MemoryFileStream::CanSeek
8003b824 000040 8003b824 0 MemoryFileStream::~MemoryFileStream
8003b864 000004 8003b864 0 SeqPlayer::OnUpdateFrameSoundThread
8003b868 000010 8003b868 0 SeqPlayer::OnShutdownSoundThread
8003b878 000004 8003b878 0 SeqPlayer::InvalidateWaveData
8003b87c 000004 8003b87c 0 PlayerCallback::OnUpdateSoundThread
8003b880 000008 8003b880 0 SeqPlayer::IsPause
8003b888 000008 8003b888 0 SeqPlayer::IsStarted
8003b890 000008 8003b890 0 SeqPlayer::IsActive
8003b898 000008 8003b898 0 SeqPlayer::InvalidateWaveData
8003b8a0 000008 8003b8a0 0 SeqPlayer::InvalidateData
8003b8a8 000008 8003b8a8 0 SeqPlayer::OnShutdownSoundThread
8003b8b0 000008 8003b8b0 0 SeqPlayer::OnUpdateFrameSoundThread
8003b8b8 000630 8003b8b8 0 MmlParser::Parse
8003bee8 000738 8003bee8 0 MmlParser::CommandProc
8003c620 000018 8003c620 0 MmlParser::NoteOnCommandProc
8003c638 00016c 8003c638 0 MmlParser::ReadArg
8003c7a4 000054 8003c7a4 0 MmlSeqTrack::MmlSeqTrack
8003c7f8 000014 8003c7f8 0 MmlSeqTrack::Parse
8003c80c 000058 8003c80c 0 MmlSeqTrack::~MmlSeqTrack
8003c864 000068 8003c864 0 MmlSeqTrackAllocator::AllocTrack
8003c8cc 000068 8003c8cc 0 MmlSeqTrackAllocator::FreeTrack
8003c934 00000c 8003c934 0 MmlSeqTrackAllocator::Create
8003c940 000008 8003c940 0 MmlSeqTrackAllocator::Destroy
8003c948 000008 8003c948 0 MmlSeqTrackAllocator::GetAllocatableTrackCount
8003c950 000040 8003c950 0 MmlSeqTrackAllocator::~MmlSeqTrackAllocator
8003c990 00004c 8003c990 0 NandSoundArchive::NandSoundArchive
8003c9dc 00008c 8003c9dc 0 NandSoundArchive::~NandSoundArchive
8003ca68 000144 8003ca68 0 NandSoundArchive::Open
8003cbac 00004c 8003cbac 0 NandSoundArchive::Close
8003cbf8 0000c8 8003cbf8 0 NandSoundArchive::OpenStream
8003ccc0 0000ec 8003ccc0 0 NandSoundArchive::OpenExtStream
8003cdac 000058 8003cdac 0 NandSoundArchive::~NandFileStream
8003ce04 000008 8003ce04 0 NandSoundArchive::detail_GetRequiredStreamBufferSize
8003ce0c 0000bc 8003ce0c 0 NandSoundArchive::LoadFileHeader
8003cec8 0000b0 8003cec8 0 NandSoundArchive::LoadHeader
8003cf78 0000b0 8003cf78 0 NandSoundArchive::LoadLabelStringData
8003d028 000084 8003d028 0 NandFileStream::Read
8003d0ac 000084 8003d0ac 0 NandFileStream::Seek
8003d134 000008 8003d134 0 NandFileStream::GetSize
8003d13c 000010 8003d13c 0 NandFileStream::Tell
8003d14c 000008 8003d14c 0 NandSoundArchive::detail_GetWaveDataFileAddress
8003d154 000008 8003d154 0 NandSoundArchive::detail_GetFileAddress
8003d15c 000084 8003d15c 0 RemoteSpeaker::RemoteSpeaker
8003d1e0 0000c4 8003d1e0 0 RemoteSpeaker::Setup
8003d2a4 0000ac 8003d2a4 0 RemoteSpeaker::Shutdown
8003d350 000014 8003d350 0 RemoteSpeaker::EnableOutput
8003d370 00001c 8003d370 0 RemoteSpeaker::IsEnabledOutput
8003d38c 0000d0 8003d38c 0 RemoteSpeaker::ExecCommand
8003d460 000314 8003d460 0 RemoteSpeaker::UpdateStreamData
8003d774 00010c 8003d774 0 RemoteSpeaker::SpeakerOnCallback
8003d880 0000e8 8003d880 0 RemoteSpeaker::SpeakerPlayCallback
8003d968 0000e8 8003d968 0 RemoteSpeaker::SpeakerOffCallback
8003da50 000058 8003da50 0 RemoteSpeaker::ContinueAlarmHandler
8003daa8 000074 8003daa8 0 RemoteSpeaker::IntervalAlarmHandler
8003db1c 000098 8003db1c 0 RemoteSpeakerManager::GetInstance
8003dbb4 000010 8003dbb4 0 RemoteSpeakerManager::GetRemoteSpeaker
8003dbc4 00009c 8003dbc4 0 RemoteSpeakerManager::Setup
8003dc60 000044 8003dc60 0 RemoteSpeakerManager::Shutdown
8003dca4 0000f8 8003dca4 0 RemoteSpeakerManager::RemoteSpeakerAlarmProc
8003dd9c 00006c 8003dd9c 0 SeqFileReader::SeqFileReader
8003de08 000010 8003de08 0 SeqFileReader::GetBaseAddress
8003de18 000140 8003de18 0 SeqPlayer::SeqPlayer
8003df58 00017c 8003df58 0 SeqPlayer::~SeqPlayer
8003e0d4 000120 8003e0d4 0 SeqPlayer::InitParam
8003e1f4 000294 8003e1f4 0 SeqPlayer::Setup
8003e488 00007c 8003e488 0 SeqPlayer::SetSeqData
8003e504 000070 8003e504 0 SeqPlayer::Start
8003e574 000150 8003e574 0 SeqPlayer::Stop
8003e6c4 000090 8003e6c4 0 SeqPlayer::Pause
8003e754 0000c4 8003e754 0 SeqPlayer::Skip
8003e818 000008 8003e818 0 SeqPlayer::SetTempoRatio
8003e820 000008 8003e820 0 SeqPlayer::SetChannelPriority
8003e828 000008 8003e828 0 SeqPlayer::SetReleasePriorityFix
8003e830 000010 8003e830 0 SeqPlayer::SetLocalVariable
8003e840 000070 8003e840 0 SeqPlayer::SetGlobalVariable
8003e8b0 0000d4 8003e8b0 0 SeqPlayer::SetTrackVolume
8003e984 0000d4 8003e984 0 SeqPlayer::SetTrackPitch
8003ea58 0001cc 8003ea58 0 SeqPlayer::InvalidateData
8003ec24 000020 8003ec24 0 SeqPlayer::GetPlayerTrack
8003ec44 000138 8003ec44 0 SeqPlayer::ParseNextTick
8003ed7c 00003c 8003ed7c 0 SeqPlayer::GetVariablePtr
8003edb8 00010c 8003edb8 0 SeqPlayer::Update
8003eec4 000264 8003eec4 0 SeqPlayer::UpdateTick
8003f128 0002a0 8003f128 0 SeqPlayer::UpdateTick
8003f3c8 000028 8003f3c8 0 SeqPlayer::NoteOn
8003f3f0 000004 8003f3f0 0 SeqPlayer::ChannelCallback
8003f3f4 000008 8003f3f4 0 SeqPlayer::@74@~SeqPlayer
8003f3fc 000008 8003f3fc 0 SeqPlayer::@80@~SeqPlayer
8003f404 00009c 8003f404 0 SeqSound::SeqSound
8003f4a0 000058 8003f4a0 0 SeqLoadTask::~SeqLoadTask
8003f4f8 000034 8003f4f8 0 SeqSound::InitParam
8003f52c 000068 8003f52c 0 SeqSound::Setup
8003f594 000068 8003f594 0 SeqSound::Prepare
8003f5fc 0000f4 8003f5fc 0 SeqSound::Prepare
8003f6f0 000080 8003f6f0 0 SeqSound::NotifyLoadAsyncEndSeqData
8003f770 0000dc 8003f770 0 SeqSound::Shutdown
8003f84c 00006c 8003f84c 0 SeqSound::~SeqSound
8003f8b8 000008 8003f8b8 0 SeqSound::SetTempoRatio
8003f8c0 000008 8003f8c0 0 SeqSound::SetChannelPriority
8003f8c8 000008 8003f8c8 0 SeqSound::SetReleasePriorityFix
8003f8d0 0000e8 8003f8d0 0 SeqSound::SetPlayerPriority
8003f9b8 000008 8003f9b8 0 SeqSound::SetTrackVolume
8003f9c0 000008 8003f9c0 0 SeqSound::SetTrackPitch
8003f9c8 00002c 8003f9c8 0 SeqSound::WriteVariable
8003f9f4 000028 8003f9f4 0 SeqSound::WriteGlobalVariable
8003fa1c 000014 8003fa1c 0 SeqSound::IsAttachedTempSpecialHandle
8003fa30 000008 8003fa30 0 SeqSound::DetachTempSpecialHandle
8003fa38 0000f8 8003fa38 0 SeqLoadTask::Execute
8003fb30 000020 8003fb30 0 SeqLoadTask::Cancel
8003fb54 000028 8003fb54 0 SeqLoadTask::OnCancel
8003fb80 000008 8003fb80 0 SeqSound::GetBasicPlayer
8003fb88 000008 8003fb88 0 SeqSound::GetBasicPlayer
8003fb90 000008 8003fb90 0 SeqSound::IsPrepared
8003fb98 000008 8003fb98 0 SeqSound::GetRuntimeTypeInfo
8003fba0 00000c 8003fba0 0 __sinit_\snd_SeqSound_cpp
8003fbac 000108 8003fbac 0 SeqSoundHandle::SeqSoundHandle
8003fcb4 000038 8003fcb4 0 SeqSoundHandle::DetachSound
8003fcec 000008 8003fcec 0 SeqTrack::SetPlayerTrackNo
8003fcf4 000060 8003fcf4 0 SeqTrack::SeqTrack
8003fd54 000104 8003fd54 0 SeqTrack::~SeqTrack
8003fe58 000164 8003fe58 0 SeqTrack::InitParam
8003ffbc 000010 8003ffbc 0 SeqTrack::SetSeqData
8003ffcc 00000c 8003ffcc 0 SeqTrack::Open
8003ffd8 0000d0 8003ffd8 0 SeqTrack::Close
800400a8 0000e8 800400a8 0 SeqTrack::UpdateChannelLength
80040190 00012c 80040190 0 SeqTrack::ParseNextTick
800402bc 000090 800402bc 0 SeqTrack::ReleaseAllChannel
8004034c 000094 8004034c 0 SeqTrack::PauseAllChannel
800403e0 0004e4 800403e0 0 SeqTrack::UpdateChannelParam
800408c4 00006c 800408c4 0 SeqTrack::FreeAllChannel
80040930 0000f8 80040930 0 SeqTrack::ChannelCallbackFunc
80040a28 000168 80040a28 0 SeqTrack::SetMute
80040b90 000008 80040b90 0 SeqTrack::SetVolume
80040b98 000008 80040b98 0 SeqTrack::SetPitch
80040ba0 000020 80040ba0 0 SeqTrack::GetVariablePtr
80040bc0 000344 80040bc0 0 SeqTrack::NoteOn
80040f04 0000a4 80040f04 0 FUN_80040f04
80040fa8 000068 80040fa8 0 FUN_80040fa8
80041010 0000e4 80041010 0 FUN_80041010
800410f4 000158 800410f4 0 FUN_800410f4
8004124c 00001c 8004124c 0 FUN_8004124c
80041268 000024 80041268 0 Sound3DActor::detail_Update
8004128c 000014 8004128c 0 FUN_8004128c
800412a0 000008 800412a0 0 Sound3DActor::@168@detail_Update
800412a8 000014 800412a8 0 Sound3DListener::Sound3DListener
800412bc 000050 800412bc 0 Sound3DManager::Sound3DManager
8004130c 000054 8004130c 0 Sound3DManager::GetRequiredMemSize
80041360 000034 80041360 0 Sound3DManager::Setup
80041394 0000a0 80041394 0 Sound3DManager::detail_Update
80041434 00080c 80041434 0 Sound3DManager::Update
80041c40 000068 80041c40 0 Sound3DManager::detail_AllocAmbientArg
80041ca8 000010 80041ca8 0 Sound3DManager::detail_FreeAmbientArg
80041cbc 000024 80041cbc 0 FUN_80041cbc
80041ce0 000008 80041ce0 0 Sound3DManager::@4@detail_FreeAmbientArg
80041ce8 000008 80041ce8 0 Sound3DManager::@4@detail_AllocAmbientArg
80041cf0 000020 80041cf0 0 FUN_80041cf0
80041d10 000024 80041d10 0 SoundArchive::SoundArchive
80041d34 000040 80041d34 0 SoundArchive::~SoundArchive
80041d74 000014 80041d74 0 SoundArchive::IsAvailable
80041d88 000008 80041d88 0 SoundArchive::Setup
80041d90 000018 80041d90 0 SoundArchive::Shutdown
80041da8 000008 80041da8 0 SoundArchive::GetPlayerCount
80041db0 000008 80041db0 0 SoundArchive::GetGroupCount
80041db8 000008 80041db8 0 SoundArchive::GetSoundLabelString
80041dc0 000010 80041dc0 0 SoundArchive::ConvertLabelStringToSoundId
80041dd0 000010 80041dd0 0 SoundArchive::ConvertLabelStringToPlayerId
80041de0 000010 80041de0 0 SoundArchive::ConvertLabelStringToGroupId
80041df0 000008 80041df0 0 SoundArchive::GetSoundUserParam
80041df8 000008 80041df8 0 SoundArchive::GetSoundType
80041e00 000008 80041e00 0 SoundArchive::ReadSoundInfo
80041e08 000008 80041e08 0 SoundArchive::detail_ReadSeqSoundInfo
80041e10 000008 80041e10 0 SoundArchive::detail_ReadStrmSoundInfo
80041e18 000008 80041e18 0 SoundArchive::detail_ReadWaveSoundInfo
80041e20 000008 80041e20 0 SoundArchive::ReadPlayerInfo
80041e28 000008 80041e28 0 SoundArchive::ReadSoundArchivePlayerInfo
80041e30 000008 80041e30 0 SoundArchive::detail_ReadSound3DParam
80041e38 000008 80041e38 0 SoundArchive::detail_ReadBankInfo
80041e40 000008 80041e40 0 SoundArchive::detail_ReadGroupInfo
80041e48 000008 80041e48 0 SoundArchive::detail_ReadGroupItemInfo
80041e50 000008 80041e50 0 SoundArchive::detail_ReadFileInfo
80041e58 000008 80041e58 0 SoundArchive::detail_ReadFilePos
80041e60 000224 80041e60 0 SoundArchive::detail_OpenFileStream
80042084 000118 80042084 0 SoundArchive::detail_OpenGroupStream
8004219c 000118 8004219c 0 SoundArchive::detail_OpenGroupWaveDataStream
800422b4 00007c 800422b4 0 SoundArchive::SetExternalFileRoot
80042330 000024 80042330 0 SoundArchiveFileReader::SoundArchiveFileReader
80042354 0000b0 80042354 0 SoundArchiveFileReader::Init
80042404 0000a8 80042404 0 SoundArchiveFileReader::SetStringChunk
800424ac 00000c 800424ac 0 SoundArchiveFileReader::SetInfoChunk
800424b8 0000f0 800424b8 0 SoundArchiveFileReader::GetSoundType
800425a8 000120 800425a8 0 SoundArchiveFileReader::ReadSoundInfo
800426c8 000104 800426c8 0 SoundArchiveFileReader::ReadSound3DParam
800427cc 0000ac 800427cc 0 SoundArchiveFileReader::ReadSeqSoundInfo
80042878 00004c 80042878 0 SoundArchiveFileReader::ReadStrmSoundInfo
800428c4 00009c 800428c4 0 SoundArchiveFileReader::ReadWaveSoundInfo
80042960 0000ac 80042960 0 SoundArchiveFileReader::ReadBankInfo
80042a0c 0000b8 80042a0c 0 SoundArchiveFileReader::ReadPlayerInfo
80042ac4 000110 80042ac4 0 SoundArchiveFileReader::ReadGroupInfo
80042bd4 000138 80042bd4 0 SoundArchiveFileReader::ReadGroupItemInfo
80042d0c 000084 80042d0c 0 SoundArchiveFileReader::ReadSoundArchivePlayerInfo
80042d90 000040 80042d90 0 SoundArchiveFileReader::GetPlayerCount
80042dd0 000044 80042dd0 0 SoundArchiveFileReader::GetGroupCount
80042e14 000104 80042e14 0 SoundArchiveFileReader::GetSoundLabelString
80042f18 0000b8 80042f18 0 SoundArchiveFileReader::GetSoundUserParam
80042fd0 000100 80042fd0 0 SoundArchiveFileReader::ReadFileInfo
800430d0 000120 800430d0 0 SoundArchiveFileReader::ReadFilePos
800431f0 000148 800431f0 0 SoundArchiveFileReader::ConvertLabelStringToId
80043338 0000f4 80043338 0 SoundArchiveFileReader::impl_GetSoundInfoOffset
8004342c 00003c 8004342c 0 SoundArchiveLoader::SoundArchiveLoader
80043468 000040 80043468 0 SoundArchiveLoader::~SoundArchiveLoader
800434a8 0005d4 800434a8 0 SoundArchiveLoader::LoadGroup
80043a7c 00012c 80043a7c 0 SoundArchivePlayer::SoundArchivePlayer
80043ba8 000040 80043ba8 0 SeqNoteOnCallback::~SeqNoteOnCallback
80043be8 000040 80043be8 0 WsdCallback::~WsdCallback
80043c28 000020 80043c28 0 LinkList<nw4r::snd::detail::SeqSound,184>::LinkList
80043c48 000058 80043c48 0 LinkList<nw4r::snd::detail::SeqSound,184>::~LinkList
80043ca0 000020 80043ca0 0 LinkList<nw4r::snd::detail::StrmSound,184>::LinkList
80043cc0 000058 80043cc0 0 LinkList<nw4r::snd::detail::StrmSound,184>::~LinkList
80043d18 000020 80043d18 0 LinkList<nw4r::snd::detail::WaveSound,184>::LinkList
80043d38 000058 80043d38 0 LinkList<nw4r::snd::detail::WaveSound,184>::~LinkList
80043d90 0000b8 80043d90 0 SoundArchivePlayer::~SoundArchivePlayer
80043e48 000018 80043e48 0 SoundArchivePlayer::IsAvailable
80043e64 0000d8 80043e64 0 SoundArchivePlayer::Setup
80043f3c 000124 80043f3c 0 SoundArchivePlayer::Shutdown
80044060 000130 80044060 0 SoundArchivePlayer::GetRequiredMemSize
80044190 00004c 80044190 0 SoundArchivePlayer::GetRequiredStrmBufferSize
800441dc 000298 800441dc 0 SoundArchivePlayer::SetupMram
80044474 000198 80044474 0 SoundArchivePlayer::SetupSoundPlayer
8004460c 000398 8004460c 0 SoundArchivePlayer::Update
800449a4 000008 800449a4 0 SoundArchivePlayer::GetSoundArchive
800449ac 000010 800449ac 0 SoundArchivePlayer::GetSoundPlayer
800449bc 00014c 800449bc 0 SoundArchivePlayer::detail_GetFileAddress
80044b08 00014c 80044b08 0 SoundArchivePlayer::detail_GetFileWaveDataAddress
80044c54 000348 80044c54 0 SoundArchivePlayer::detail_SetupSound
80044f9c 000304 80044f9c 0 SoundArchivePlayer::PrepareSeqImpl
800452a0 000160 800452a0 0 SoundArchivePlayer::PrepareStrmImpl
80045400 000178 80045400 0 SoundArchivePlayer::PrepareWaveSoundImpl
80045578 000168 80045578 0 SoundArchivePlayer::LoadGroup
800456e0 000070 800456e0 0 SoundArchivePlayer::LoadGroup
80045750 000054 80045750 0 SoundArchivePlayer::InvalidateData
800457a4 000054 800457a4 0 SoundArchivePlayer::InvalidateWaveData
800457f8 000128 800457f8 0 SeqNoteOnCallback::NoteOn
80045920 0000fc 80045920 0 WsdCallback::GetWaveSoundData
80045a1c 000008 80045a1c 0 SoundArchivePlayer::detail_ConvertLabelStringToSoundId
80045a24 000058 80045a24 0 PlayerHeap::~PlayerHeap
80045a7c 000008 80045a7c 0 SoundArchivePlayer::detail_ConvertLabelStringToSoundId
80045a84 000008 80045a84 0 SoundArchivePlayer::detail_SetupSound
80045a8c 000008 80045a8c 0 SoundArchivePlayer::~SoundArchivePlayer
80045a94 00007c 80045a94 0 SoundHandle::detail_AttachSoundAsTempHandle
80045b10 00004c 80045b10 0 SoundHandle::detail_AttachSound
80045b5c 000050 80045b5c 0 SoundHandle::DetachSound
80045bac 000048 80045bac 0 SoundHeap::SoundHeap
80045bf4 000070 80045bf4 0 SoundHeap::~SoundHeap