-
Notifications
You must be signed in to change notification settings - Fork 0
/
align.o.txt
4323 lines (4150 loc) · 324 KB
/
align.o.txt
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
SymbolicHeader(magic=28681, vstamp=787, ilineMax=170, cbLine=40, cbLineOffset=1384, idnMax=259, cbDnOffset=17404, ipdMax=2, cbPdOffset=1424, isymMax=592, cbSymOffset=1528, ioptMax=0, cbOptOffset=1288, iauxMax=1100, cbAuxOffset=8632, issMax=3644, cbSsOffset=13032, issExtMax=80, cbSsExtOffset=16676, ifdMax=7, cbFdOffset=16756, crfd=0, cbRfdOffset=1288, iextMax=9, cbExtOffset=17260)
Using OFFSET of 0
FileDescriptor(adr=0, rss=1, issBase=0, cbSs=454, isymBase=0, csym=26, ilineBase=0, cline=170, ioptBase=0, copt=0, ipdFirst=0, cpd=2, iauxBase=0, caux=31, rfdBase=0, crfd=0, XXX_bitfield=16777216, cbLineOffset=0, cbLine=40)
name:../gu/align.c
procedures:
ProcedureDescriptor(adr=0, isym=1, iline=0, regmask=-2147483648, regoffset=-20, iopt=-1, fregmask=0, fregoffset=0, frameoffset=40, framereg=29, pcreg=31, lnLow=28, lnHigh=66, cbLineOffset=0)
ProcedureDescriptor(adr=592, isym=15, iline=148, regmask=-2147483648, regoffset=-68, iopt=-1, fregmask=0, fregoffset=0, frameoffset=96, framereg=29, pcreg=31, lnLow=69, lnHigh=75, cbLineOffset=36)
symbols:
Symbol(iss=1, value=0, st=11, sc=1, index=26)
name:../gu/align.c
type:stFile(11)
storage class:scText(1)
Symbol(iss=397, value=0, st=6, sc=1, index=21)
name:guAlignF
type:stProc(6)
storage class:scText(1)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=15), rndx=RelativeSymbol(rfd=0, index=15), dnLow=15, dnHigh=15, isym=15, iss=15, width=15, count=15)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=26, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=416, index=0), dnLow=436207616, dnHigh=436207616, isym=436207616, iss=436207616, width=436207616, count=436207616)
Symbol(iss=406, value=0, st=3, sc=5, index=15)
name:mf
type:stParam(3)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=3, tq1=1, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=12544), dnLow=167784704, dnHigh=167784704, isym=167784704, iss=167784704, width=167784704, count=167784704)
Symbol(iss=409, value=4, st=3, sc=5, index=10)
name:a
type:stParam(3)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=0), dnLow=167772160, dnHigh=167772160, isym=167772160, iss=167772160, width=167772160, count=167772160)
Symbol(iss=411, value=8, st=3, sc=5, index=10)
name:x
type:stParam(3)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=0), dnLow=167772160, dnHigh=167772160, isym=167772160, iss=167772160, width=167772160, count=167772160)
Symbol(iss=413, value=12, st=3, sc=5, index=10)
name:y
type:stParam(3)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=0), dnLow=167772160, dnHigh=167772160, isym=167772160, iss=167772160, width=167772160, count=167772160)
Symbol(iss=415, value=16, st=3, sc=5, index=10)
name:z
type:stParam(3)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=0), dnLow=167772160, dnHigh=167772160, isym=167772160, iss=167772160, width=167772160, count=167772160)
Symbol(iss=0, value=24, st=7, sc=1, index=14)
name:
type:stBlock(7)
storage class:scText(1)
Symbol(iss=417, value=0, st=2, sc=2, index=10)
name:dtor
type:stStatic(2)
storage class:scData(2)
Symbol(iss=422, value=4294967292, st=4, sc=5, index=10)
name:s
type:stLocal(4)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=0), dnLow=167772160, dnHigh=167772160, isym=167772160, iss=167772160, width=167772160, count=167772160)
Symbol(iss=424, value=4294967288, st=4, sc=5, index=10)
name:c
type:stLocal(4)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=0), dnLow=167772160, dnHigh=167772160, isym=167772160, iss=167772160, width=167772160, count=167772160)
Symbol(iss=426, value=4294967284, st=4, sc=5, index=10)
name:h
type:stLocal(4)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=0), dnLow=167772160, dnHigh=167772160, isym=167772160, iss=167772160, width=167772160, count=167772160)
Symbol(iss=428, value=4294967280, st=4, sc=5, index=10)
name:hinv
type:stLocal(4)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=0), dnLow=167772160, dnHigh=167772160, isym=167772160, iss=167772160, width=167772160, count=167772160)
Symbol(iss=0, value=568, st=8, sc=1, index=7)
name:
type:stEnd(8)
storage class:scText(1)
Symbol(iss=397, value=592, st=8, sc=1, index=1)
name:guAlignF
type:stEnd(8)
storage class:scText(1)
Symbol(iss=433, value=592, st=6, sc=1, index=26)
name:guAlign
type:stProc(6)
storage class:scText(1)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=1, tq3=9), rndx=RelativeSymbol(rfd=0, index=25), dnLow=25, dnHigh=25, isym=25, iss=25, width=25, count=25)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=26, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=416, index=0), dnLow=436207616, dnHigh=436207616, isym=436207616, iss=436207616, width=436207616, count=436207616)
Symbol(iss=441, value=0, st=3, sc=5, index=23)
name:m
type:stParam(3)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=1, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=4096), dnLow=218107904, dnHigh=218107904, isym=218107904, iss=218107904, width=218107904, count=218107904)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=1, tq3=12), rndx=RelativeSymbol(rfd=4095, index=28), dnLow=4293918748, dnHigh=4293918748, isym=4293918748, iss=4293918748, width=4293918748, count=4293918748)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=64, st=27, sc=11, index=32)
name:
Symbol(iss=443, value=4, st=3, sc=5, index=10)
name:a
type:stParam(3)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=0), dnLow=167772160, dnHigh=167772160, isym=167772160, iss=167772160, width=167772160, count=167772160)
Symbol(iss=445, value=8, st=3, sc=5, index=10)
name:x
type:stParam(3)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=0), dnLow=167772160, dnHigh=167772160, isym=167772160, iss=167772160, width=167772160, count=167772160)
Symbol(iss=447, value=12, st=3, sc=5, index=10)
name:y
type:stParam(3)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=0), dnLow=167772160, dnHigh=167772160, isym=167772160, iss=167772160, width=167772160, count=167772160)
Symbol(iss=449, value=16, st=3, sc=5, index=10)
name:z
type:stParam(3)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=10, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=160, index=0), dnLow=167772160, dnHigh=167772160, isym=167772160, iss=167772160, width=167772160, count=167772160)
Symbol(iss=0, value=24, st=7, sc=1, index=24)
name:
type:stBlock(7)
storage class:scText(1)
Symbol(iss=451, value=4294967232, st=4, sc=5, index=28)
name:mf
type:stLocal(4)
storage class:scAbs(5)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=15), rndx=RelativeSymbol(rfd=4095, index=15), dnLow=4293918735, dnHigh=4293918735, isym=4293918735, iss=4293918735, width=4293918735, count=4293918735)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=6), rndx=RelativeSymbol(rfd=0, index=6), dnLow=6, dnHigh=6, isym=6, iss=6, width=6, count=6)
Symbol(iss=119, value=0, st=10, sc=11, index=24)
name:Matrix
Symbol(iss=0, value=64, st=8, sc=1, index=21)
name:
type:stEnd(8)
storage class:scText(1)
Symbol(iss=433, value=88, st=8, sc=1, index=15)
name:guAlign
type:stEnd(8)
storage class:scText(1)
Symbol(iss=1, value=0, st=8, sc=1, index=0)
name:../gu/align.c
type:stEnd(8)
storage class:scText(1)
pretty print:
// begin file ../gu/align.c
void guAlignF(float* mf[4], float a, float x, float y, float z);
//{
// static float dtor;
// float s;
// float c;
// float h;
// float hinv;
//}
void guAlign(Mtx* m, float a, float x, float y, float z);
//{
// Matrix mf;
//}
// end file ../gu/align.c
FileDescriptor(adr=0, rss=1, issBase=454, cbSs=1451, isymBase=26, csym=315, ilineBase=0, cline=0, ioptBase=0, copt=0, ipdFirst=2, cpd=0, iauxBase=31, caux=617, rfdBase=0, crfd=0, XXX_bitfield=83886080, cbLineOffset=0, cbLine=0)
name:/f/release1/usr/include/PR/gbi.h
procedures:
symbols:
Symbol(iss=1, value=0, st=11, sc=1, index=315)
name:/f/release1/usr/include/PR/gbi.h
type:stFile(11)
storage class:scText(1)
Symbol(iss=0, value=16, st=26, sc=11, index=7)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=101, value=0, st=9, sc=11, index=15)
name:ob
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=4, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=64, index=12288), dnLow=67121152, dnHigh=67121152, isym=67121152, iss=67121152, width=67121152, count=67121152)
Symbol(iss=104, value=48, st=9, sc=11, index=3)
name:flag
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=5, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=80, index=0), dnLow=83886080, dnHigh=83886080, isym=83886080, iss=83886080, width=83886080, count=83886080)
Symbol(iss=109, value=64, st=9, sc=11, index=21)
name:tc
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=4, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=64, index=12288), dnLow=67121152, dnHigh=67121152, isym=67121152, iss=67121152, width=67121152, count=67121152)
Symbol(iss=112, value=96, st=9, sc=11, index=27)
name:cn
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=12288), dnLow=50343936, dnHigh=50343936, isym=50343936, iss=50343936, width=50343936, count=50343936)
Symbol(iss=0, value=0, st=8, sc=11, index=1)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=115, value=0, st=10, sc=11, index=33)
name:Vtx_t
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=4095, index=1), dnLow=4293918721, dnHigh=4293918721, isym=4293918721, iss=4293918721, width=4293918721, count=4293918721)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=26, sc=11, index=7)
name:
Symbol(iss=0, value=16, st=26, sc=11, index=15)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=121, value=0, st=9, sc=11, index=36)
name:ob
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=4, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=64, index=12288), dnLow=67121152, dnHigh=67121152, isym=67121152, iss=67121152, width=67121152, count=67121152)
Symbol(iss=124, value=48, st=9, sc=11, index=3)
name:flag
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=5, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=80, index=0), dnLow=83886080, dnHigh=83886080, isym=83886080, iss=83886080, width=83886080, count=83886080)
Symbol(iss=129, value=64, st=9, sc=11, index=42)
name:tc
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=4, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=64, index=12288), dnLow=67121152, dnHigh=67121152, isym=67121152, iss=67121152, width=67121152, count=67121152)
Symbol(iss=132, value=96, st=9, sc=11, index=48)
name:n
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=2, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=32, index=12288), dnLow=33566720, dnHigh=33566720, isym=33566720, iss=33566720, width=33566720, count=33566720)
Symbol(iss=134, value=120, st=9, sc=11, index=1)
name:a
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=0), dnLow=50331648, dnHigh=50331648, isym=50331648, iss=50331648, width=50331648, count=50331648)
Symbol(iss=0, value=0, st=8, sc=11, index=8)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=136, value=0, st=10, sc=11, index=54)
name:Vtx_tn
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=8), rndx=RelativeSymbol(rfd=4095, index=8), dnLow=4293918728, dnHigh=4293918728, isym=4293918728, iss=4293918728, width=4293918728, count=4293918728)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=26, sc=11, index=15)
name:
Symbol(iss=0, value=16, st=27, sc=11, index=21)
name:
type:stUnion(27)
storage class:scInfo(11)
Symbol(iss=143, value=0, st=9, sc=11, index=57)
name:v
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=4095, index=1), dnLow=4293918721, dnHigh=4293918721, isym=4293918721, iss=4293918721, width=4293918721, count=4293918721)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=26, sc=11, index=7)
name:
Symbol(iss=145, value=0, st=9, sc=11, index=60)
name:n
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=0, tq3=8), rndx=RelativeSymbol(rfd=4095, index=8), dnLow=4293918728, dnHigh=4293918728, isym=4293918728, iss=4293918728, width=4293918728, count=4293918728)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=26, sc=11, index=15)
name:
Symbol(iss=147, value=0, st=9, sc=11, index=8)
name:force_structure_alignment
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=32, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=512, index=0), dnLow=536870912, dnHigh=536870912, isym=536870912, iss=536870912, width=536870912, count=536870912)
Symbol(iss=0, value=0, st=8, sc=11, index=16)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=173, value=0, st=10, sc=11, index=63)
name:Vtx
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=1, tq3=0), rndx=RelativeSymbol(rfd=4095, index=16), dnLow=4293918736, dnHigh=4293918736, isym=4293918736, iss=4293918736, width=4293918736, count=4293918736)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=21)
name:
Symbol(iss=0, value=4, st=26, sc=11, index=26)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=177, value=0, st=9, sc=11, index=1)
name:flag
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=0), dnLow=50331648, dnHigh=50331648, isym=50331648, iss=50331648, width=50331648, count=50331648)
Symbol(iss=182, value=8, st=9, sc=11, index=66)
name:v
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=12288), dnLow=50343936, dnHigh=50343936, isym=50343936, iss=50343936, width=50343936, count=50343936)
Symbol(iss=0, value=0, st=8, sc=11, index=22)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=184, value=0, st=10, sc=11, index=72)
name:Tri
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=1, tq3=6), rndx=RelativeSymbol(rfd=4095, index=22), dnLow=4293918742, dnHigh=4293918742, isym=4293918742, iss=4293918742, width=4293918742, count=4293918742)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=4, st=26, sc=11, index=26)
name:
Symbol(iss=188, value=0, st=10, sc=11, index=75)
name:Mtx_t
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=8, tq4=0, tq5=0, tq0=3, tq1=3, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=128, index=13056), dnLow=134230784, dnHigh=134230784, isym=134230784, iss=134230784, width=134230784, count=134230784)
Symbol(iss=0, value=64, st=27, sc=11, index=32)
name:
type:stUnion(27)
storage class:scInfo(11)
Symbol(iss=194, value=0, st=9, sc=11, index=86)
name:m
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=15, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=240, index=0), dnLow=251658240, dnHigh=251658240, isym=251658240, iss=251658240, width=251658240, count=251658240)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=1, tq3=11), rndx=RelativeSymbol(rfd=4095, index=27), dnLow=4293918747, dnHigh=4293918747, isym=4293918747, iss=4293918747, width=4293918747, count=4293918747)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=188, value=0, st=10, sc=11, index=75)
name:Mtx_t
Symbol(iss=196, value=0, st=9, sc=11, index=8)
name:force_structure_alignment
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=32, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=512, index=0), dnLow=536870912, dnHigh=536870912, isym=536870912, iss=536870912, width=536870912, count=536870912)
Symbol(iss=0, value=0, st=8, sc=11, index=28)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=222, value=0, st=10, sc=11, index=89)
name:Mtx
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=1, tq3=12), rndx=RelativeSymbol(rfd=4095, index=28), dnLow=4293918748, dnHigh=4293918748, isym=4293918748, iss=4293918748, width=4293918748, count=4293918748)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=64, st=27, sc=11, index=32)
name:
Symbol(iss=0, value=16, st=26, sc=11, index=37)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=226, value=0, st=9, sc=11, index=92)
name:vscale
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=4, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=64, index=12288), dnLow=67121152, dnHigh=67121152, isym=67121152, iss=67121152, width=67121152, count=67121152)
Symbol(iss=233, value=64, st=9, sc=11, index=98)
name:vtrans
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=4, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=64, index=12288), dnLow=67121152, dnHigh=67121152, isym=67121152, iss=67121152, width=67121152, count=67121152)
Symbol(iss=0, value=0, st=8, sc=11, index=33)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=240, value=0, st=10, sc=11, index=104)
name:Vp_t
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=2, tq3=1), rndx=RelativeSymbol(rfd=4095, index=33), dnLow=4293918753, dnHigh=4293918753, isym=4293918753, iss=4293918753, width=4293918753, count=4293918753)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=26, sc=11, index=37)
name:
Symbol(iss=0, value=16, st=27, sc=11, index=42)
name:
type:stUnion(27)
storage class:scInfo(11)
Symbol(iss=245, value=0, st=9, sc=11, index=107)
name:vp
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=2, tq3=1), rndx=RelativeSymbol(rfd=4095, index=33), dnLow=4293918753, dnHigh=4293918753, isym=4293918753, iss=4293918753, width=4293918753, count=4293918753)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=26, sc=11, index=37)
name:
Symbol(iss=248, value=0, st=9, sc=11, index=8)
name:force_structure_alignment
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=32, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=512, index=0), dnLow=536870912, dnHigh=536870912, isym=536870912, iss=536870912, width=536870912, count=536870912)
Symbol(iss=0, value=0, st=8, sc=11, index=38)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=274, value=0, st=10, sc=11, index=110)
name:Vp
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=2, tq3=6), rndx=RelativeSymbol(rfd=4095, index=38), dnLow=4293918758, dnHigh=4293918758, isym=4293918758, iss=4293918758, width=4293918758, count=4293918758)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=42)
name:
Symbol(iss=0, value=12, st=26, sc=11, index=51)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=277, value=0, st=9, sc=11, index=113)
name:col
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=12288), dnLow=50343936, dnHigh=50343936, isym=50343936, iss=50343936, width=50343936, count=50343936)
Symbol(iss=281, value=24, st=9, sc=11, index=1)
name:pad1
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=0), dnLow=50331648, dnHigh=50331648, isym=50331648, iss=50331648, width=50331648, count=50331648)
Symbol(iss=286, value=32, st=9, sc=11, index=119)
name:colc
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=12288), dnLow=50343936, dnHigh=50343936, isym=50343936, iss=50343936, width=50343936, count=50343936)
Symbol(iss=291, value=56, st=9, sc=11, index=1)
name:pad2
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=0), dnLow=50331648, dnHigh=50331648, isym=50331648, iss=50331648, width=50331648, count=50331648)
Symbol(iss=296, value=64, st=9, sc=11, index=125)
name:dir
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=2, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=32, index=12288), dnLow=33566720, dnHigh=33566720, isym=33566720, iss=33566720, width=33566720, count=33566720)
Symbol(iss=300, value=88, st=9, sc=11, index=1)
name:pad3
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=0), dnLow=50331648, dnHigh=50331648, isym=50331648, iss=50331648, width=50331648, count=50331648)
Symbol(iss=0, value=0, st=8, sc=11, index=43)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=305, value=0, st=10, sc=11, index=131)
name:Light_t
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=2, tq3=11), rndx=RelativeSymbol(rfd=4095, index=43), dnLow=4293918763, dnHigh=4293918763, isym=4293918763, iss=4293918763, width=4293918763, count=4293918763)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=12, st=26, sc=11, index=51)
name:
Symbol(iss=0, value=8, st=26, sc=11, index=58)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=313, value=0, st=9, sc=11, index=134)
name:col
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=12288), dnLow=50343936, dnHigh=50343936, isym=50343936, iss=50343936, width=50343936, count=50343936)
Symbol(iss=317, value=24, st=9, sc=11, index=1)
name:pad1
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=0), dnLow=50331648, dnHigh=50331648, isym=50331648, iss=50331648, width=50331648, count=50331648)
Symbol(iss=322, value=32, st=9, sc=11, index=140)
name:colc
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=12288), dnLow=50343936, dnHigh=50343936, isym=50343936, iss=50343936, width=50343936, count=50343936)
Symbol(iss=327, value=56, st=9, sc=11, index=1)
name:pad2
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=3, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=48, index=0), dnLow=50331648, dnHigh=50331648, isym=50331648, iss=50331648, width=50331648, count=50331648)
Symbol(iss=0, value=0, st=8, sc=11, index=52)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=332, value=0, st=10, sc=11, index=146)
name:Ambient_t
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=3, tq3=4), rndx=RelativeSymbol(rfd=4095, index=52), dnLow=4293918772, dnHigh=4293918772, isym=4293918772, iss=4293918772, width=4293918772, count=4293918772)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=8, st=26, sc=11, index=58)
name:
Symbol(iss=0, value=16, st=26, sc=11, index=65)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=342, value=0, st=9, sc=11, index=4)
name:x1
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=6, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=96, index=0), dnLow=100663296, dnHigh=100663296, isym=100663296, iss=100663296, width=100663296, count=100663296)
Symbol(iss=345, value=32, st=9, sc=11, index=4)
name:y1
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=6, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=96, index=0), dnLow=100663296, dnHigh=100663296, isym=100663296, iss=100663296, width=100663296, count=100663296)
Symbol(iss=348, value=64, st=9, sc=11, index=4)
name:x2
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=6, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=96, index=0), dnLow=100663296, dnHigh=100663296, isym=100663296, iss=100663296, width=100663296, count=100663296)
Symbol(iss=351, value=96, st=9, sc=11, index=4)
name:y2
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=6, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=96, index=0), dnLow=100663296, dnHigh=100663296, isym=100663296, iss=100663296, width=100663296, count=100663296)
Symbol(iss=0, value=0, st=8, sc=11, index=59)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=354, value=0, st=10, sc=11, index=149)
name:Hilite_t
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=3, tq3=11), rndx=RelativeSymbol(rfd=4095, index=59), dnLow=4293918779, dnHigh=4293918779, isym=4293918779, iss=4293918779, width=4293918779, count=4293918779)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=26, sc=11, index=65)
name:
Symbol(iss=0, value=16, st=27, sc=11, index=70)
name:
type:stUnion(27)
storage class:scInfo(11)
Symbol(iss=363, value=0, st=9, sc=11, index=152)
name:l
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=2, tq3=11), rndx=RelativeSymbol(rfd=4095, index=43), dnLow=4293918763, dnHigh=4293918763, isym=4293918763, iss=4293918763, width=4293918763, count=4293918763)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=12, st=26, sc=11, index=51)
name:
Symbol(iss=365, value=0, st=9, sc=11, index=155)
name:force_structure_alignment
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=32, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=512, index=12288), dnLow=536883200, dnHigh=536883200, isym=536883200, iss=536883200, width=536883200, count=536883200)
Symbol(iss=0, value=0, st=8, sc=11, index=66)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=391, value=0, st=10, sc=11, index=161)
name:Light
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=2), rndx=RelativeSymbol(rfd=4095, index=66), dnLow=4293918786, dnHigh=4293918786, isym=4293918786, iss=4293918786, width=4293918786, count=4293918786)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=70)
name:
Symbol(iss=0, value=8, st=27, sc=11, index=75)
name:
type:stUnion(27)
storage class:scInfo(11)
Symbol(iss=397, value=0, st=9, sc=11, index=164)
name:l
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=3, tq3=4), rndx=RelativeSymbol(rfd=4095, index=52), dnLow=4293918772, dnHigh=4293918772, isym=4293918772, iss=4293918772, width=4293918772, count=4293918772)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=8, st=26, sc=11, index=58)
name:
Symbol(iss=399, value=0, st=9, sc=11, index=167)
name:force_structure_alignment
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=32, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=512, index=12288), dnLow=536883200, dnHigh=536883200, isym=536883200, iss=536883200, width=536883200, count=536883200)
Symbol(iss=0, value=0, st=8, sc=11, index=71)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=425, value=0, st=10, sc=11, index=173)
name:Ambient
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=7), rndx=RelativeSymbol(rfd=4095, index=71), dnLow=4293918791, dnHigh=4293918791, isym=4293918791, iss=4293918791, width=4293918791, count=4293918791)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=8, st=27, sc=11, index=75)
name:
Symbol(iss=0, value=120, st=26, sc=11, index=80)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=433, value=0, st=9, sc=11, index=176)
name:a
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=7), rndx=RelativeSymbol(rfd=4095, index=71), dnLow=4293918791, dnHigh=4293918791, isym=4293918791, iss=4293918791, width=4293918791, count=4293918791)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=8, st=27, sc=11, index=75)
name:
Symbol(iss=435, value=64, st=9, sc=11, index=179)
name:l
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=12288), dnLow=218116096, dnHigh=218116096, isym=218116096, iss=218116096, width=218116096, count=218116096)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=2), rndx=RelativeSymbol(rfd=4095, index=66), dnLow=4293918786, dnHigh=4293918786, isym=4293918786, iss=4293918786, width=4293918786, count=4293918786)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=70)
name:
Symbol(iss=0, value=0, st=8, sc=11, index=76)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=437, value=0, st=10, sc=11, index=187)
name:Lightsn
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=12), rndx=RelativeSymbol(rfd=4095, index=76), dnLow=4293918796, dnHigh=4293918796, isym=4293918796, iss=4293918796, width=4293918796, count=4293918796)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=120, st=26, sc=11, index=80)
name:
Symbol(iss=0, value=24, st=26, sc=11, index=85)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=445, value=0, st=9, sc=11, index=190)
name:a
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=7), rndx=RelativeSymbol(rfd=4095, index=71), dnLow=4293918791, dnHigh=4293918791, isym=4293918791, iss=4293918791, width=4293918791, count=4293918791)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=8, st=27, sc=11, index=75)
name:
Symbol(iss=447, value=64, st=9, sc=11, index=193)
name:l
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=12288), dnLow=218116096, dnHigh=218116096, isym=218116096, iss=218116096, width=218116096, count=218116096)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=2), rndx=RelativeSymbol(rfd=4095, index=66), dnLow=4293918786, dnHigh=4293918786, isym=4293918786, iss=4293918786, width=4293918786, count=4293918786)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=70)
name:
Symbol(iss=0, value=0, st=8, sc=11, index=81)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=449, value=0, st=10, sc=11, index=201)
name:Lights0
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=5, tq3=1), rndx=RelativeSymbol(rfd=4095, index=81), dnLow=4293918801, dnHigh=4293918801, isym=4293918801, iss=4293918801, width=4293918801, count=4293918801)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=24, st=26, sc=11, index=85)
name:
Symbol(iss=0, value=24, st=26, sc=11, index=90)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=457, value=0, st=9, sc=11, index=204)
name:a
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=7), rndx=RelativeSymbol(rfd=4095, index=71), dnLow=4293918791, dnHigh=4293918791, isym=4293918791, iss=4293918791, width=4293918791, count=4293918791)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=8, st=27, sc=11, index=75)
name:
Symbol(iss=459, value=64, st=9, sc=11, index=207)
name:l
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=12288), dnLow=218116096, dnHigh=218116096, isym=218116096, iss=218116096, width=218116096, count=218116096)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=2), rndx=RelativeSymbol(rfd=4095, index=66), dnLow=4293918786, dnHigh=4293918786, isym=4293918786, iss=4293918786, width=4293918786, count=4293918786)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=70)
name:
Symbol(iss=0, value=0, st=8, sc=11, index=86)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=461, value=0, st=10, sc=11, index=215)
name:Lights1
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=5, tq3=6), rndx=RelativeSymbol(rfd=4095, index=86), dnLow=4293918806, dnHigh=4293918806, isym=4293918806, iss=4293918806, width=4293918806, count=4293918806)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=24, st=26, sc=11, index=90)
name:
Symbol(iss=0, value=40, st=26, sc=11, index=95)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=469, value=0, st=9, sc=11, index=218)
name:a
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=7), rndx=RelativeSymbol(rfd=4095, index=71), dnLow=4293918791, dnHigh=4293918791, isym=4293918791, iss=4293918791, width=4293918791, count=4293918791)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=8, st=27, sc=11, index=75)
name:
Symbol(iss=471, value=64, st=9, sc=11, index=221)
name:l
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=12288), dnLow=218116096, dnHigh=218116096, isym=218116096, iss=218116096, width=218116096, count=218116096)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=2), rndx=RelativeSymbol(rfd=4095, index=66), dnLow=4293918786, dnHigh=4293918786, isym=4293918786, iss=4293918786, width=4293918786, count=4293918786)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=70)
name:
Symbol(iss=0, value=0, st=8, sc=11, index=91)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=473, value=0, st=10, sc=11, index=229)
name:Lights2
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=5, tq3=11), rndx=RelativeSymbol(rfd=4095, index=91), dnLow=4293918811, dnHigh=4293918811, isym=4293918811, iss=4293918811, width=4293918811, count=4293918811)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=40, st=26, sc=11, index=95)
name:
Symbol(iss=0, value=56, st=26, sc=11, index=100)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=481, value=0, st=9, sc=11, index=232)
name:a
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=7), rndx=RelativeSymbol(rfd=4095, index=71), dnLow=4293918791, dnHigh=4293918791, isym=4293918791, iss=4293918791, width=4293918791, count=4293918791)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=8, st=27, sc=11, index=75)
name:
Symbol(iss=483, value=64, st=9, sc=11, index=235)
name:l
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=12288), dnLow=218116096, dnHigh=218116096, isym=218116096, iss=218116096, width=218116096, count=218116096)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=2), rndx=RelativeSymbol(rfd=4095, index=66), dnLow=4293918786, dnHigh=4293918786, isym=4293918786, iss=4293918786, width=4293918786, count=4293918786)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=70)
name:
Symbol(iss=0, value=0, st=8, sc=11, index=96)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=485, value=0, st=10, sc=11, index=243)
name:Lights3
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=6, tq3=0), rndx=RelativeSymbol(rfd=4095, index=96), dnLow=4293918816, dnHigh=4293918816, isym=4293918816, iss=4293918816, width=4293918816, count=4293918816)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=56, st=26, sc=11, index=100)
name:
Symbol(iss=0, value=72, st=26, sc=11, index=105)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=493, value=0, st=9, sc=11, index=246)
name:a
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=7), rndx=RelativeSymbol(rfd=4095, index=71), dnLow=4293918791, dnHigh=4293918791, isym=4293918791, iss=4293918791, width=4293918791, count=4293918791)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=8, st=27, sc=11, index=75)
name:
Symbol(iss=495, value=64, st=9, sc=11, index=249)
name:l
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=12288), dnLow=218116096, dnHigh=218116096, isym=218116096, iss=218116096, width=218116096, count=218116096)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=2), rndx=RelativeSymbol(rfd=4095, index=66), dnLow=4293918786, dnHigh=4293918786, isym=4293918786, iss=4293918786, width=4293918786, count=4293918786)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=70)
name:
Symbol(iss=0, value=0, st=8, sc=11, index=101)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=497, value=0, st=10, sc=11, index=257)
name:Lights4
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=6, tq3=5), rndx=RelativeSymbol(rfd=4095, index=101), dnLow=4293918821, dnHigh=4293918821, isym=4293918821, iss=4293918821, width=4293918821, count=4293918821)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=72, st=26, sc=11, index=105)
name:
Symbol(iss=0, value=88, st=26, sc=11, index=110)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=505, value=0, st=9, sc=11, index=260)
name:a
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=7), rndx=RelativeSymbol(rfd=4095, index=71), dnLow=4293918791, dnHigh=4293918791, isym=4293918791, iss=4293918791, width=4293918791, count=4293918791)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=8, st=27, sc=11, index=75)
name:
Symbol(iss=507, value=64, st=9, sc=11, index=263)
name:l
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=12288), dnLow=218116096, dnHigh=218116096, isym=218116096, iss=218116096, width=218116096, count=218116096)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=2), rndx=RelativeSymbol(rfd=4095, index=66), dnLow=4293918786, dnHigh=4293918786, isym=4293918786, iss=4293918786, width=4293918786, count=4293918786)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=70)
name:
Symbol(iss=0, value=0, st=8, sc=11, index=106)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=509, value=0, st=10, sc=11, index=271)
name:Lights5
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=6, tq3=10), rndx=RelativeSymbol(rfd=4095, index=106), dnLow=4293918826, dnHigh=4293918826, isym=4293918826, iss=4293918826, width=4293918826, count=4293918826)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=88, st=26, sc=11, index=110)
name:
Symbol(iss=0, value=104, st=26, sc=11, index=115)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=517, value=0, st=9, sc=11, index=274)
name:a
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=7), rndx=RelativeSymbol(rfd=4095, index=71), dnLow=4293918791, dnHigh=4293918791, isym=4293918791, iss=4293918791, width=4293918791, count=4293918791)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=8, st=27, sc=11, index=75)
name:
Symbol(iss=519, value=64, st=9, sc=11, index=277)
name:l
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=12288), dnLow=218116096, dnHigh=218116096, isym=218116096, iss=218116096, width=218116096, count=218116096)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=2), rndx=RelativeSymbol(rfd=4095, index=66), dnLow=4293918786, dnHigh=4293918786, isym=4293918786, iss=4293918786, width=4293918786, count=4293918786)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=70)
name:
Symbol(iss=0, value=0, st=8, sc=11, index=111)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=521, value=0, st=10, sc=11, index=285)
name:Lights6
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=6, tq3=15), rndx=RelativeSymbol(rfd=4095, index=111), dnLow=4293918831, dnHigh=4293918831, isym=4293918831, iss=4293918831, width=4293918831, count=4293918831)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=104, st=26, sc=11, index=115)
name:
Symbol(iss=0, value=120, st=26, sc=11, index=120)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=529, value=0, st=9, sc=11, index=288)
name:a
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=7), rndx=RelativeSymbol(rfd=4095, index=71), dnLow=4293918791, dnHigh=4293918791, isym=4293918791, iss=4293918791, width=4293918791, count=4293918791)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=8, st=27, sc=11, index=75)
name:
Symbol(iss=531, value=64, st=9, sc=11, index=291)
name:l
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=12288), dnLow=218116096, dnHigh=218116096, isym=218116096, iss=218116096, width=218116096, count=218116096)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=2), rndx=RelativeSymbol(rfd=4095, index=66), dnLow=4293918786, dnHigh=4293918786, isym=4293918786, iss=4293918786, width=4293918786, count=4293918786)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=70)
name:
Symbol(iss=0, value=0, st=8, sc=11, index=116)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=533, value=0, st=10, sc=11, index=299)
name:Lights7
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=7, tq3=4), rndx=RelativeSymbol(rfd=4095, index=116), dnLow=4293918836, dnHigh=4293918836, isym=4293918836, iss=4293918836, width=4293918836, count=4293918836)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=120, st=26, sc=11, index=120)
name:
Symbol(iss=0, value=32, st=26, sc=11, index=124)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=541, value=0, st=9, sc=11, index=302)
name:l
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=12288), dnLow=218116096, dnHigh=218116096, isym=218116096, iss=218116096, width=218116096, count=218116096)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=4, tq3=2), rndx=RelativeSymbol(rfd=4095, index=66), dnLow=4293918786, dnHigh=4293918786, isym=4293918786, iss=4293918786, width=4293918786, count=4293918786)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=70)
name:
Symbol(iss=0, value=0, st=8, sc=11, index=121)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=543, value=0, st=10, sc=11, index=310)
name:LookAt
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=7, tq3=9), rndx=RelativeSymbol(rfd=4095, index=121), dnLow=4293918841, dnHigh=4293918841, isym=4293918841, iss=4293918841, width=4293918841, count=4293918841)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=32, st=26, sc=11, index=124)
name:
Symbol(iss=0, value=16, st=27, sc=11, index=129)
name:
type:stUnion(27)
storage class:scInfo(11)
Symbol(iss=550, value=0, st=9, sc=11, index=313)
name:h
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=3, tq3=11), rndx=RelativeSymbol(rfd=4095, index=59), dnLow=4293918779, dnHigh=4293918779, isym=4293918779, iss=4293918779, width=4293918779, count=4293918779)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=26, sc=11, index=65)
name:
Symbol(iss=552, value=0, st=9, sc=11, index=316)
name:force_structure_alignment
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=8, tq4=0, tq5=0, tq0=3, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=128, index=12288), dnLow=134230016, dnHigh=134230016, isym=134230016, iss=134230016, width=134230016, count=134230016)
Symbol(iss=0, value=0, st=8, sc=11, index=125)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=578, value=0, st=10, sc=11, index=322)
name:Hilite
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=13, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=208, index=0), dnLow=218103808, dnHigh=218103808, isym=218103808, iss=218103808, width=218103808, count=218103808)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=7, tq3=13), rndx=RelativeSymbol(rfd=4095, index=125), dnLow=4293918845, dnHigh=4293918845, isym=4293918845, iss=4293918845, width=4293918845, count=4293918845)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=16, st=27, sc=11, index=129)
name:
Symbol(iss=0, value=8, st=26, sc=11, index=136)
name:
type:stStruct(26)
storage class:scInfo(11)
Symbol(iss=585, value=0, st=9, sc=11, index=325)
name:cmd
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=0, bt=6, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=2144, index=0), dnLow=2248146944, dnHigh=2248146944, isym=2248146944, iss=2248146944, width=2248146944, count=2248146944)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=8), rndx=RelativeSymbol(rfd=0, index=8), dnLow=8, dnHigh=8, isym=8, iss=8, width=8, count=8)
Symbol(iss=589, value=8, st=9, sc=11, index=327)
name:par
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=0, bt=7, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=2160, index=0), dnLow=2264924160, dnHigh=2264924160, isym=2264924160, iss=2264924160, width=2264924160, count=2264924160)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=8), rndx=RelativeSymbol(rfd=0, index=8), dnLow=8, dnHigh=8, isym=8, iss=8, width=8, count=8)
Symbol(iss=593, value=16, st=9, sc=11, index=329)
name:len
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=0, bt=7, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=2160, index=0), dnLow=2264924160, dnHigh=2264924160, isym=2264924160, iss=2264924160, width=2264924160, count=2264924160)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=1, tq3=0), rndx=RelativeSymbol(rfd=0, index=16), dnLow=16, dnHigh=16, isym=16, iss=16, width=16, count=16)
Symbol(iss=597, value=32, st=9, sc=11, index=5)
name:addr
type:stMember(9)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=7, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=112, index=0), dnLow=117440512, dnHigh=117440512, isym=117440512, iss=117440512, width=117440512, count=117440512)
Symbol(iss=0, value=0, st=8, sc=11, index=130)
name:
type:stEnd(8)
storage class:scInfo(11)
Symbol(iss=602, value=0, st=10, sc=11, index=331)
name:Gdma
type:stTypedef(10)
storage class:scInfo(11)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=12, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=0), rndx=RelativeSymbol(rfd=192, index=0), dnLow=201326592, dnHigh=201326592, isym=201326592, iss=201326592, width=201326592, count=201326592)
AuxSymbol(ti=TypeInfo(fBitfield=1, continued=1, bt=63, tq4=15, tq5=0, tq0=0, tq1=0, tq2=8, tq3=2), rndx=RelativeSymbol(rfd=4095, index=130), dnLow=4293918850, dnHigh=4293918850, isym=4293918850, iss=4293918850, width=4293918850, count=4293918850)
AuxSymbol(ti=TypeInfo(fBitfield=0, continued=0, bt=0, tq4=0, tq5=0, tq0=0, tq1=0, tq2=0, tq3=1), rndx=RelativeSymbol(rfd=0, index=1), dnLow=1, dnHigh=1, isym=1, iss=1, width=1, count=1)
Symbol(iss=0, value=8, st=26, sc=11, index=136)
name: