aboutsummaryrefslogtreecommitdiffstats
path: root/mncc.xml
blob: 88e3e047418d265319663bbd4df5875da86c06d9 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
<?xml version="1.0"?>
<GCC_XML cvs_revision="1.135">
  <Namespace id="_1" name="::" members="_3 _4 _5 _6 _7 _8 _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 _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 _82 _83 _84 _85 _86 _87 _88 _89 _90 _91 _92 _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 _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 _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 _2 _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 _262 _263 _264 _265 _266 _267 _268 _269 _270 _271 _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 " mangled="_Z2::" demangled="::"/>
  <Namespace id="_2" name="std" context="_1" members="" mangled="_Z3std" demangled="std"/>
  <Function id="_3" name="__builtin_nans" returns="_363" context="_1" location="f0:21" file="f0" line="21" extern="1" attributes="nothrow const nonnull">
    <Argument name="str" type="_364" location="f0:21" file="f0" line="21"/>
  </Function>
  <Variable id="_4" name="cpp_sym_MNCC_HOLD_IND" type="_93c" init="287" context="_1" location="f1:112" file="f1" line="112" static="1"/>
  <Function id="_5" name="__builtin_acosf" returns="_366" context="_1" mangled="acosf" location="f0:25" file="f0" line="25" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:25" file="f0" line="25"/>
  </Function>
  <Function id="_6" name="__builtin_acosl" returns="_367" context="_1" mangled="acosl" location="f0:26" file="f0" line="26" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:26" file="f0" line="26"/>
  </Function>
  <Variable id="_7" name="cpp_sym___USE_XOPEN2K8" type="_93c" init="1" context="_1" location="f1:70" file="f1" line="70" static="1"/>
  <Function id="_8" name="__builtin_va_arg_pack" returns="_368" context="_1" location="f0:147" file="f0" line="147" extern="1">
    <Ellipsis/>
  </Function>
  <FundamentalType id="_9" name="long unsigned int" size="64" align="64"/>
  <Typedef id="_10" name="uint_least64_t" type="_9" context="_1" location="f2:80" file="f2" line="80"/>
  <Variable id="_11" name="cpp_sym_GSM_TCHF_FRAME" type="_93c" init="768" context="_1" location="f1:130" file="f1" line="130" static="1"/>
  <Function id="_12" name="__builtin_log10" returns="_363" context="_1" mangled="log10" location="f0:63" file="f0" line="63" extern="1" attributes="nothrow">
    <Argument type="_363" location="f0:63" file="f0" line="63"/>
  </Function>
  <Function id="_13" name="__builtin_popcountll" returns="_93" context="_1" location="f0:101" file="f0" line="101" extern="1" attributes="nothrow const">
    <Argument type="_369" location="f0:101" file="f0" line="101"/>
  </Function>
  <Function id="_14" name="__builtin_clogf" returns="_370" context="_1" mangled="clogf" location="f0:111" file="f0" line="111" extern="1" attributes="nothrow pure no vops">
    <Argument type="_370" location="f0:111" file="f0" line="111"/>
  </Function>
  <Function id="_15" name="__builtin_clogl" returns="_371" context="_1" mangled="clogl" location="f0:113" file="f0" line="113" extern="1" attributes="nothrow pure no vops">
    <Argument type="_371" location="f0:113" file="f0" line="113"/>
  </Function>
  <Variable id="_16" name="cpp_sym_INTMAX_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:33" file="f1" line="33" static="1"/>
  <Function id="_17" name="__builtin_cexpf" returns="_370" context="_1" mangled="cexpf" location="f0:108" file="f0" line="108" extern="1" attributes="nothrow pure no vops">
    <Argument type="_370" location="f0:108" file="f0" line="108"/>
  </Function>
  <Function id="_18" name="__builtin_cexpl" returns="_371" context="_1" mangled="cexpl" location="f0:110" file="f0" line="110" extern="1" attributes="nothrow pure no vops">
    <Argument type="_371" location="f0:110" file="f0" line="110"/>
  </Function>
  <Variable id="_19" name="cpp_sym_SIG_ATOMIC_MAX" type="_93c" init="2147483647" context="_1" location="f1:125" file="f1" line="125" static="1"/>
  <Function id="_20" name="__builtin_isless" returns="_368" context="_1" location="f0:141" file="f0" line="141" extern="1" attributes="nothrow const">
    <Ellipsis/>
  </Function>
  <Variable id="_21" name="cpp_sym_INT_LEAST32_MAX" type="_93c" init="2147483647" context="_1" location="f1:110" file="f1" line="110" static="1"/>
  <Variable id="_22" name="cpp_sym___SYSCALL_WORDSIZE" type="_93c" init="64" context="_1" location="f1:56" file="f1" line="56" static="1"/>
  <Function id="_23" name="__builtin_isnormal" returns="_368" context="_1" location="f0:145" file="f0" line="145" extern="1">
    <Ellipsis/>
  </Function>
  <Variable id="_24" name="cpp_sym__ISOC95_SOURCE" type="_93c" init="1" context="_1" location="f1:38" file="f1" line="38" static="1"/>
  <Variable id="_25" name="cpp_sym_MNCC_SOCKET_HELLO" type="_93c" init="1024" context="_1" location="f1:58" file="f1" line="58" static="1"/>
  <Variable id="_26" name="cpp_sym_MNCC_SETUP_COMPL_IND" type="_93c" init="262" context="_1" location="f1:31" file="f1" line="31" static="1"/>
  <Struct id="_27" name="gsm_mncc_cccap" context="_1" mangled="14gsm_mncc_cccap" demangled="gsm_mncc_cccap" location="f3:141" file="f3" line="141" artificial="1" size="64" align="32" members="_373 _374 _375 _376 _377 _378 " bases=""/>
  <Function id="_28" name="__builtin_asinf" returns="_366" context="_1" mangled="asinf" location="f0:28" file="f0" line="28" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:28" file="f0" line="28"/>
  </Function>
  <Function id="_29" name="__builtin_asinl" returns="_367" context="_1" mangled="asinl" location="f0:29" file="f0" line="29" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:29" file="f0" line="29"/>
  </Function>
  <Function id="_30" name="__builtin_popcount" returns="_93" context="_1" location="f0:99" file="f0" line="99" extern="1" attributes="nothrow const">
    <Argument type="_93" location="f0:99" file="f0" line="99"/>
  </Function>
  <Variable id="_31" name="cpp_sym___USE_POSIX" type="_93c" init="1" context="_1" location="f1:69" file="f1" line="69" static="1"/>
  <Variable id="_32" name="cpp_sym_MNCC_START_DTMF_IND" type="_93c" init="277" context="_1" location="f1:132" file="f1" line="132" static="1"/>
  <Variable id="_33" name="cpp_sym_SIG_ATOMIC_MIN" type="_93c" init="-0x00000000080000000" context="_1" location="f1:121" file="f1" line="121" static="1"/>
  <Variable id="_34" name="cpp_sym__LARGEFILE_SOURCE" type="_93c" init="1" context="_1" location="f1:166" file="f1" line="166" static="1"/>
  <Function id="_35" name="__builtin_nansf" returns="_366" context="_1" location="f0:22" file="f0" line="22" extern="1" attributes="nothrow const nonnull">
    <Argument name="str" type="_364" location="f0:22" file="f0" line="22"/>
  </Function>
  <Function id="_36" name="__builtin_nansl" returns="_367" context="_1" location="f0:23" file="f0" line="23" extern="1" attributes="nothrow const nonnull">
    <Argument name="str" type="_364" location="f0:23" file="f0" line="23"/>
  </Function>
  <Function id="_37" name="__builtin_floorf" returns="_366" context="_1" mangled="floorf" location="f0:52" file="f0" line="52" extern="1" attributes="nothrow const">
    <Argument type="_366" location="f0:52" file="f0" line="52"/>
  </Function>
  <Function id="_38" name="__builtin_floorl" returns="_367" context="_1" mangled="floorl" location="f0:53" file="f0" line="53" extern="1" attributes="nothrow const">
    <Argument type="_367" location="f0:53" file="f0" line="53"/>
  </Function>
  <Variable id="_39" name="cpp_sym_MNCC_F_CAUSE" type="_93c" init="32" context="_1" location="f1:7" file="f1" line="7" static="1"/>
  <Function id="_40" name="__builtin_ctanf" returns="_370" context="_1" mangled="ctanf" location="f0:123" file="f0" line="123" extern="1" attributes="nothrow pure no vops">
    <Argument type="_370" location="f0:123" file="f0" line="123"/>
  </Function>
  <Function id="_41" name="__builtin_ctanh" returns="_379" context="_1" mangled="ctanh" location="f0:127" file="f0" line="127" extern="1" attributes="nothrow pure no vops">
    <Argument type="_379" location="f0:127" file="f0" line="127"/>
  </Function>
  <Function id="_42" name="__builtin_ctanl" returns="_371" context="_1" mangled="ctanl" location="f0:125" file="f0" line="125" extern="1" attributes="nothrow pure no vops">
    <Argument type="_371" location="f0:125" file="f0" line="125"/>
  </Function>
  <Variable id="_43" name="cpp_sym_UINT16_MAX" type="_93c" init="65535" context="_1" location="f1:108" file="f1" line="108" static="1"/>
  <Function id="_44" name="__builtin_carg" returns="_363" context="_1" mangled="carg" location="f0:94" file="f0" line="94" extern="1" attributes="nothrow pure no vops">
    <Argument type="_379" location="f0:94" file="f0" line="94"/>
  </Function>
  <Function id="_45" name="__builtin_clog" returns="_379" context="_1" mangled="clog" location="f0:112" file="f0" line="112" extern="1" attributes="nothrow pure no vops">
    <Argument type="_379" location="f0:112" file="f0" line="112"/>
  </Function>
  <Function id="_46" name="__builtin_logf" returns="_366" context="_1" mangled="logf" location="f0:66" file="f0" line="66" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:66" file="f0" line="66"/>
  </Function>
  <Function id="_47" name="__builtin_logl" returns="_367" context="_1" mangled="logl" location="f0:67" file="f0" line="67" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:67" file="f0" line="67"/>
  </Function>
  <FundamentalType id="_48" name="long int" size="64" align="64"/>
  <Typedef id="_49" name="int_fast64_t" type="_48" context="_1" location="f2:94" file="f2" line="94"/>
  <Function id="_50" name="__builtin_fabs" returns="_363" context="_1" mangled="fabs" location="f0:48" file="f0" line="48" extern="1" attributes="nothrow const">
    <Argument type="_363" location="f0:48" file="f0" line="48"/>
  </Function>
  <Function id="_51" name="__builtin_expf" returns="_366" context="_1" mangled="expf" location="f0:46" file="f0" line="46" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:46" file="f0" line="46"/>
  </Function>
  <Function id="_52" name="__builtin_expl" returns="_367" context="_1" mangled="expl" location="f0:47" file="f0" line="47" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:47" file="f0" line="47"/>
  </Function>
  <Variable id="_53" name="cpp_sym_UINT_LEAST8_MAX" type="_93c" init="255" context="_1" location="f1:111" file="f1" line="111" static="1"/>
  <Variable id="_54" name="cpp_sym_MNCC_SETUP_COMPL_REQ" type="_93c" init="261" context="_1" location="f1:128" file="f1" line="128" static="1"/>
  <Variable id="_55" name="cpp_sym_MNCC_F_FACILITY" type="_93c" init="512" context="_1" location="f1:124" file="f1" line="124" static="1"/>
  <Function id="_56" name="__builtin_isunordered" returns="_368" context="_1" location="f0:146" file="f0" line="146" extern="1" attributes="nothrow const">
    <Ellipsis/>
  </Function>
  <Typedef id="_57" name="int_fast32_t" type="_48" context="_1" location="f2:93" file="f2" line="93"/>
  <Variable id="_58" name="cpp_sym_MNCC_RETRIEVE_IND" type="_93c" init="290" context="_1" location="f1:96" file="f1" line="96" static="1"/>
  <Variable id="_59" name="cpp_sym_MNCC_ALERT_REQ" type="_93c" init="266" context="_1" location="f1:78" file="f1" line="78" static="1"/>
  <Struct id="_60" name="gsm_mncc_facility" context="_1" mangled="17gsm_mncc_facility" demangled="gsm_mncc_facility" location="f3:131" file="f3" line="131" artificial="1" size="1056" align="32" members="_380 _381 _382 _383 _384 _385 " bases=""/>
  <Variable id="_61" name="cpp_sym__STDINT_H" type="_93c" init="1" context="_1" location="f1:101" file="f1" line="101" static="1"/>
  <Function id="_62" name="__builtin_csqrt" returns="_379" context="_1" mangled="csqrt" location="f0:121" file="f0" line="121" extern="1" attributes="nothrow pure no vops">
    <Argument type="_379" location="f0:121" file="f0" line="121"/>
  </Function>
  <Variable id="_63" name="cpp_sym_MNCC_F_SSVERSION" type="_93c" init="1024" context="_1" location="f1:161" file="f1" line="161" static="1"/>
  <Function id="_64" name="__builtin_sin" returns="_363" context="_1" mangled="sin" location="f0:75" file="f0" line="75" extern="1" attributes="nothrow pure no vops">
    <Argument type="_363" location="f0:75" file="f0" line="75"/>
  </Function>
  <Function id="_65" name="__builtin_ldexpf" returns="_366" context="_1" mangled="ldexpf" location="f0:60" file="f0" line="60" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:60" file="f0" line="60"/>
    <Argument type="_93" location="f0:60" file="f0" line="60"/>
  </Function>
  <Function id="_66" name="__builtin_ldexpl" returns="_367" context="_1" mangled="ldexpl" location="f0:61" file="f0" line="61" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:61" file="f0" line="61"/>
    <Argument type="_93" location="f0:61" file="f0" line="61"/>
  </Function>
  <Variable id="_67" name="cpp_sym_MNCC_STOP_DTMF_IND" type="_93c" init="280" context="_1" location="f1:102" file="f1" line="102" static="1"/>
  <Function id="_68" name="__builtin_isinf_sign" returns="_368" context="_1" location="f0:140" file="f0" line="140" extern="1">
    <Ellipsis/>
  </Function>
  <Variable id="_69" name="cpp_sym_GSM_MAX_FACILITY" type="_93c" init="128" context="_1" location="f1:22" file="f1" line="22" static="1"/>
  <Function id="_70" name="__builtin_islessequal" returns="_368" context="_1" location="f0:142" file="f0" line="142" extern="1" attributes="nothrow const">
    <Ellipsis/>
  </Function>
  <Enumeration id="_71" name="gsm48_bcap_sig_access" context="_1" location="f3:18" file="f3" line="18" artificial="1" size="32" align="32">
    <EnumValue name="GSM48_BCAP_SA_I440_I450" init="1"/>
    <EnumValue name="GSM48_BCAP_SA_X21" init="2"/>
    <EnumValue name="GSM48_BCAP_SA_X28_DP_IN" init="3"/>
    <EnumValue name="GSM48_BCAP_SA_X28_DP_UN" init="4"/>
    <EnumValue name="GSM48_BCAP_SA_X28_NDP" init="5"/>
    <EnumValue name="GSM48_BCAP_SA_X32" init="6"/>
  </Enumeration>
  <Variable id="_72" name="cpp_sym_UINT_LEAST64_MAX" type="_9c" init="-1ul" context="_1" location="f1:98" file="f1" line="98" static="1"/>
  <Function id="_73" name="__builtin_tanf" returns="_366" context="_1" mangled="tanf" location="f0:85" file="f0" line="85" extern="1" attributes="nothrow pure no vops">
    <Argument type="_366" location="f0:85" file="f0" line="85"/>
  </Function>
  <Function id="_74" name="__builtin_tanh" returns="_363" context="_1" mangled="tanh" location="f0:86" file="f0" line="86" extern="1" attributes="nothrow pure no vops">
    <Argument type="_363" location="f0:86" file="f0" line="86"/>
  </Function>
  <Function id="_75" name="__builtin_tanl" returns="_367" context="_1" mangled="tanl" location="f0:89" file="f0" line="89" extern="1" attributes="nothrow pure no vops">
    <Argument type="_367" location="f0:89" file="f0" line="89"/>
  </Function>
  <Variable id="_76" name="cpp_sym___WORDSIZE_TIME64_COMPAT32" type="_93c" init="1" context="_1" location="f1:68" file="f1" line="68" static="1"/>
  <Function id="_77" name="__builtin_ceil" returns="_363" context="_1" mangled="ceil" location="f0:36" file="f0" line="36" extern="1" attributes="nothrow const">
    <Argument type="_363" location="f0:36" file="f0" line="36"/>
  </Function>
  <Function id="_78" name="__builtin_fmodf" returns="_366" context="_1" mangled="fmodf" location="f0:54" file="f0" line="54" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:54" file="f0" line="54"/>
    <Argument type="_366" location="f0:54" file="f0" line="54"/>
  </Function>
  <Function id="_79" name="__builtin_fmodl" returns="_367" context="_1" mangled="fmodl" location="f0:55" file="f0" line="55" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:55" file="f0" line="55"/>
    <Argument type="_367" location="f0:55" file="f0" line="55"/>
  </Function>
  <Variable id="_80" name="cpp_sym___USE_XOPEN2K" type="_93c" init="1" context="_1" location="f1:67" file="f1" line="67" static="1"/>
  <FundamentalType id="_81" name="signed char" size="8" align="8"/>
  <Typedef id="_82" name="int_least8_t" type="_81" context="_1" location="f2:65" file="f2" line="65"/>
  <Struct id="_83" name="gsm_data_frame" context="_1" mangled="14gsm_data_frame" demangled="gsm_data_frame" location="f3:270" file="f3" line="270" artificial="1" size="64" align="32" members="_387 _388 _389 _390 _391 _392 _393 " bases=""/>
  <Function id="_84" name="__builtin_return" returns="_394" context="_1" location="f0:13" file="f0" line="13" extern="1" attributes="nothrow noreturn">
    <Argument name="RESULT" type="_395" location="f0:13" file="f0" line="13"/>
  </Function>
  <Variable id="_85" name="cpp_sym_MNCC_FACILITY_REQ" type="_93c" init="275" context="_1" location="f1:94" file="f1" line="94" static="1"/>
  <Variable id="_86" name="cpp_sym_MNCC_REL_IND" type="_93c" init="273" context="_1" location="f1:46" file="f1" line="46" static="1"/>
  <Struct id="_87" name="gsm_mncc_ssversion" context="_1" mangled="18gsm_mncc_ssversion" demangled="gsm_mncc_ssversion" location="f3:136" file="f3" line="136" artificial="1" size="1056" align="32" members="_396 _397 _398 _399 _400 _401 " bases=""/>
  <Function id="_88" name="__builtin_sqrt" returns="_363" context="_1" mangled="sqrt" location="f0:81" file="f0" line="81" extern="1" attributes="nothrow">
    <Argument type="_363" location="f0:81" file="f0" line="81"/>
  </Function>
  <Function id="_89" name="__builtin_cpow" returns="_379" context="_1" mangled="cpow" location="f0:130" file="f0" line="130" extern="1" attributes="nothrow pure no vops">
    <Argument type="_379" location="f0:130" file="f0" line="130"/>
    <Argument type="_379" location="f0:130" file="f0" line="130"/>
  </Function>
  <Function id="_90" name="__builtin_coshf" returns="_366" context="_1" mangled="coshf" location="f0:42" file="f0" line="42" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:42" file="f0" line="42"/>
  </Function>
  <Function id="_91" name="__builtin_coshl" returns="_367" context="_1" mangled="coshl" location="f0:43" file="f0" line="43" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:43" file="f0" line="43"/>
  </Function>
  <Variable id="_92" name="cpp_sym__XOPEN_SOURCE_EXTENDED" type="_93c" init="1" context="_1" location="f1:133" file="f1" line="133" static="1"/>
  <FundamentalType id="_93" name="int" size="32" align="32"/>
  <Typedef id="_94" name="int_least32_t" type="_93" context="_1" location="f2:67" file="f2" line="67"/>
  <Function id="_95" name="__builtin_cexp" returns="_379" context="_1" mangled="cexp" location="f0:109" file="f0" line="109" extern="1" attributes="nothrow pure no vops">
    <Argument type="_379" location="f0:109" file="f0" line="109"/>
  </Function>
  <Variable id="_96" name="cpp_sym_MNCC_SOCK_VERSION" type="_93c" init="5" context="_1" location="f1:32" file="f1" line="32" static="1"/>
  <Function id="_97" name="__builtin_atan2" returns="_363" context="_1" mangled="atan2" location="f0:31" file="f0" line="31" extern="1" attributes="nothrow">
    <Argument type="_363" location="f0:31" file="f0" line="31"/>
    <Argument type="_363" location="f0:31" file="f0" line="31"/>
  </Function>
  <Function id="_98" name="__builtin_memchr" returns="_395" context="_1" location="f0:12" file="f0" line="12" extern="1">
    <Argument type="_402" location="f0:12" file="f0" line="12"/>
    <Argument type="_93" location="f0:12" file="f0" line="12"/>
    <Argument type="_147" location="f0:12" file="f0" line="12"/>
  </Function>
  <Function id="_99" name="__builtin_atanf" returns="_366" context="_1" mangled="atanf" location="f0:34" file="f0" line="34" extern="1" attributes="nothrow pure no vops">
    <Argument type="_366" location="f0:34" file="f0" line="34"/>
  </Function>
  <Function id="_100" name="__builtin_atanl" returns="_367" context="_1" mangled="atanl" location="f0:35" file="f0" line="35" extern="1" attributes="nothrow pure no vops">
    <Argument type="_367" location="f0:35" file="f0" line="35"/>
  </Function>
  <Function id="_101" name="__builtin_ctan" returns="_379" context="_1" mangled="ctan" location="f0:124" file="f0" line="124" extern="1" attributes="nothrow pure no vops">
    <Argument type="_379" location="f0:124" file="f0" line="124"/>
  </Function>
  <Function id="_102" name="__builtin_log" returns="_363" context="_1" mangled="log" location="f0:62" file="f0" line="62" extern="1" attributes="nothrow">
    <Argument type="_363" location="f0:62" file="f0" line="62"/>
  </Function>
  <Variable id="_103" name="cpp_sym___USE_ISOC99" type="_93c" init="1" context="_1" location="f1:157" file="f1" line="157" static="1"/>
  <Variable id="_104" name="cpp_sym_INT16_MAX" type="_93c" init="32767" context="_1" location="f1:86" file="f1" line="86" static="1"/>
  <Enumeration id="_105" name="gsm48_bcap_ra" context="_1" location="f3:10" file="f3" line="10" artificial="1" size="32" align="32">
    <EnumValue name="GSM48_BCAP_RA_NONE" init="0"/>
    <EnumValue name="GSM48_BCAP_RA_V110_X30" init="1"/>
    <EnumValue name="GSM48_BCAP_RA_X31" init="2"/>
    <EnumValue name="GSM48_BCAP_RA_OTHER" init="3"/>
  </Enumeration>
  <Variable id="_106" name="cpp_sym_INT_FAST32_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:160" file="f1" line="160" static="1"/>
  <Variable id="_107" name="cpp_sym___USE_BSD" type="_93c" init="1" context="_1" location="f1:74" file="f1" line="74" static="1"/>
  <Variable id="_108" name="cpp_sym_UINT_FAST8_MAX" type="_93c" init="255" context="_1" location="f1:42" file="f1" line="42" static="1"/>
  <Variable id="_109" name="cpp_sym_INT_LEAST32_MIN" type="_93c" init="-0x00000000080000000" context="_1" location="f1:8" file="f1" line="8" static="1"/>
  <Variable id="_110" name="cpp_sym_MNCC_F_SIGNAL" type="_93c" init="8192" context="_1" location="f1:47" file="f1" line="47" static="1"/>
  <Function id="_111" name="__builtin_isfinite" returns="_368" context="_1" location="f0:136" file="f0" line="136" extern="1">
    <Ellipsis/>
  </Function>
  <Variable id="_112" name="cpp_sym___USE_ISOC95" type="_93c" init="1" context="_1" location="f1:152" file="f1" line="152" static="1"/>
  <Function id="_113" name="__builtin_asin" returns="_363" context="_1" mangled="asin" location="f0:27" file="f0" line="27" extern="1" attributes="nothrow">
    <Argument type="_363" location="f0:27" file="f0" line="27"/>
  </Function>
  <Variable id="_114" name="cpp_sym_INT16_MIN" type="_93c" init="-0x00000000000008000" context="_1" location="f1:82" file="f1" line="82" static="1"/>
  <Variable id="_115" name="cpp_sym_MNCC_LCHAN_MODIFY" type="_93c" init="515" context="_1" location="f1:21" file="f1" line="21" static="1"/>
  <Function id="_116" name="__builtin_frexp" returns="_363" context="_1" mangled="frexp" location="f0:56" file="f0" line="56" extern="1" attributes="nothrow">
    <Argument type="_363" location="f0:56" file="f0" line="56"/>
    <Argument type="_403" location="f0:56" file="f0" line="56"/>
  </Function>
  <Variable id="_117" name="cpp_sym_INT_FAST32_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:126" file="f1" line="126" static="1"/>
  <Variable id="_118" name="cpp_sym_SIZE_MAX" type="_9c" init="-1ul" context="_1" location="f1:149" file="f1" line="149" static="1"/>
  <Function id="_119" name="__builtin_isgreaterequal" returns="_368" context="_1" location="f0:138" file="f0" line="138" extern="1" attributes="nothrow const">
    <Ellipsis/>
  </Function>
  <Variable id="_120" name="cpp_sym_MNCC_SETUP_IND" type="_93c" init="258" context="_1" location="f1:134" file="f1" line="134" static="1"/>
  <Variable id="_121" name="cpp_sym_WINT_MAX" type="_147c" init="4294967295u" context="_1" location="f1:164" file="f1" line="164" static="1"/>
  <Typedef id="_122" name="uint_fast16_t" type="_9" context="_1" location="f2:105" file="f2" line="105"/>
  <Variable id="_123" name="cpp_sym___USE_XOPEN_EXTENDED" type="_93c" init="1" context="_1" location="f1:26" file="f1" line="26" static="1"/>
  <Function id="_124" name="__builtin_log10f" returns="_366" context="_1" mangled="log10f" location="f0:64" file="f0" line="64" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:64" file="f0" line="64"/>
  </Function>
  <Function id="_125" name="__builtin_log10l" returns="_367" context="_1" mangled="log10l" location="f0:65" file="f0" line="65" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:65" file="f0" line="65"/>
  </Function>
  <Variable id="_126" name="cpp_sym__ISOC99_SOURCE" type="_93c" init="1" context="_1" location="f1:41" file="f1" line="41" static="1"/>
  <Variable id="_127" name="cpp_sym_MNCC_MODIFY_RSP" type="_93c" init="284" context="_1" location="f1:145" file="f1" line="145" static="1"/>
  <Variable id="_128" name="cpp_sym_WINT_MIN" type="_147c" init="0u" context="_1" location="f1:151" file="f1" line="151" static="1"/>
  <Variable id="_129" name="cpp_sym_MNCC_REJ_IND" type="_93c" init="296" context="_1" location="f1:119" file="f1" line="119" static="1"/>
  <Function id="_130" name="__builtin_ctzl" returns="_93" context="_1" location="f0:97" file="f0" line="97" extern="1" attributes="nothrow const">
    <Argument type="_48" location="f0:97" file="f0" line="97"/>
  </Function>
  <Variable id="_131" name="cpp_sym_MNCC_F_BEARER_CAP" type="_93c" init="1" context="_1" location="f1:162" file="f1" line="162" static="1"/>
  <Struct id="_132" name="gsm_mncc_progress" context="_1" mangled="17gsm_mncc_progress" demangled="gsm_mncc_progress" location="f3:125" file="f3" line="125" artificial="1" size="96" align="32" members="_405 _406 _407 _408 _409 _410 _411 " bases=""/>
  <Struct id="_133" name="gsm_mncc_cause" context="_1" mangled="14gsm_mncc_cause" demangled="gsm_mncc_cause" location="f3:110" file="f3" line="110" artificial="1" size="448" align="32" members="_412 _413 _414 _415 _416 _417 _418 _419 _420 _421 _422 " bases=""/>
  <Function id="_134" name="__builtin_powif" returns="_366" context="_1" location="f0:73" file="f0" line="73" extern="1" attributes="nothrow pure no vops">
    <Argument type="_366" location="f0:73" file="f0" line="73"/>
    <Argument type="_93" location="f0:73" file="f0" line="73"/>
  </Function>
  <Function id="_135" name="__builtin_powil" returns="_367" context="_1" location="f0:74" file="f0" line="74" extern="1" attributes="nothrow pure no vops">
    <Argument type="_367" location="f0:74" file="f0" line="74"/>
    <Argument type="_93" location="f0:74" file="f0" line="74"/>
  </Function>
  <Function id="_136" name="__builtin_modff" returns="_366" context="_1" mangled="modff" location="f0:68" file="f0" line="68" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:68" file="f0" line="68"/>
    <Argument type="_423" location="f0:68" file="f0" line="68"/>
  </Function>
  <Function id="_137" name="__builtin_exp" returns="_363" context="_1" mangled="exp" location="f0:45" file="f0" line="45" extern="1" attributes="nothrow">
    <Argument type="_363" location="f0:45" file="f0" line="45"/>
  </Function>
  <Function id="_138" name="__builtin_modfl" returns="_367" context="_1" mangled="modfl" location="f0:69" file="f0" line="69" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:69" file="f0" line="69"/>
    <Argument type="_424" location="f0:69" file="f0" line="69"/>
  </Function>
  <Function id="_139" name="__builtin_prefetch" returns="_394" context="_1" location="f0:17" file="f0" line="17" extern="1" attributes="no vops">
    <Argument name="ADDR" type="_402" location="f0:17" file="f0" line="17"/>
    <Ellipsis/>
  </Function>
  <Variable id="_140" name="cpp_sym__POSIX_C_SOURCE" type="_48c" init="200809l" context="_1" location="f1:81" file="f1" line="81" static="1"/>
  <Enumeration id="_141" name="gsm48_bcap_transp" context="_1" location="f3:54" file="f3" line="54" artificial="1" size="32" align="32">
    <EnumValue name="GSM48_BCAP_TR_TRANSP" init="0"/>
    <EnumValue name="GSM48_BCAP_TR_RLP" init="1"/>
    <EnumValue name="GSM48_BCAP_TR_TR_PREF" init="2"/>
    <EnumValue name="GSM48_BCAP_TR_RLP_PREF" init="3"/>
  </Enumeration>
  <Variable id="_142" name="cpp_sym_MNCC_HOLD_CNF" type="_93c" init="288" context="_1" location="f1:44" file="f1" line="44" static="1"/>
  <Function id="_143" name="__builtin_tan" returns="_363" context="_1" mangled="tan" location="f0:84" file="f0" line="84" extern="1" attributes="nothrow pure no vops">
    <Argument type="_363" location="f0:84" file="f0" line="84"/>
  </Function>
  <Variable id="_144" name="cpp_sym_INT_FAST8_MAX" type="_93c" init="127" context="_1" location="f1:150" file="f1" line="150" static="1"/>
  <Function id="_145" name="__builtin_fabsf" returns="_366" context="_1" mangled="fabsf" location="f0:49" file="f0" line="49" extern="1" attributes="nothrow const">
    <Argument type="_366" location="f0:49" file="f0" line="49"/>
  </Function>
  <Function id="_146" name="__builtin_fabsl" returns="_367" context="_1" mangled="fabsl" location="f0:50" file="f0" line="50" extern="1" attributes="nothrow const">
    <Argument type="_367" location="f0:50" file="f0" line="50"/>
  </Function>
  <FundamentalType id="_147" name="unsigned int" size="32" align="32"/>
  <Typedef id="_148" name="uint32_t" type="_147" context="_1" location="f2:51" file="f2" line="51"/>
  <Variable id="_149" name="cpp_sym___USE_LARGEFILE" type="_93c" init="1" context="_1" location="f1:113" file="f1" line="113" static="1"/>
  <Variable id="_150" name="cpp_sym_UINTMAX_MAX" type="_9c" init="-1ul" context="_1" location="f1:24" file="f1" line="24" static="1"/>
  <Variable id="_151" name="cpp_sym_MNCC_USERINFO_IND" type="_93c" init="294" context="_1" location="f1:36" file="f1" line="36" static="1"/>
  <Variable id="_152" name="cpp_sym___USE_UNIX98" type="_93c" init="1" context="_1" location="f1:89" file="f1" line="89" static="1"/>
  <Enumeration id="_153" name="gsm48_bcap_modem_type" context="_1" location="f3:62" file="f3" line="62" artificial="1" size="32" align="32">
    <EnumValue name="GSM48_BCAP_MT_NONE" init="0"/>
    <EnumValue name="GSM48_BCAP_MT_V21" init="1"/>
    <EnumValue name="GSM48_BCAP_MT_V22" init="2"/>
    <EnumValue name="GSM48_BCAP_MT_V22bis" init="3"/>
    <EnumValue name="GSM48_BCAP_MT_V23" init="4"/>
    <EnumValue name="GSM48_BCAP_MT_V26ter" init="5"/>
    <EnumValue name="GSM48_BCAP_MT_V32" init="6"/>
    <EnumValue name="GSM48_BCAP_MT_UNDEF" init="7"/>
    <EnumValue name="GSM48_BCAP_MT_AUTO_1" init="8"/>
  </Enumeration>
  <Variable id="_154" name="cpp_sym_GSM_BAD_FRAME" type="_93c" init="1023" context="_1" location="f1:167" file="f1" line="167" static="1"/>
  <Variable id="_155" name="cpp_sym___GLIBC__" type="_93c" init="2" context="_1" location="f1:91" file="f1" line="91" static="1"/>
  <Variable id="_156" name="cpp_sym_UINT8_MAX" type="_93c" init="255" context="_1" location="f1:23" file="f1" line="23" static="1"/>
  <Variable id="_157" name="cpp_sym_INT_FAST64_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:49" file="f1" line="49" static="1"/>
  <Variable id="_158" name="cpp_sym_UINT_FAST32_MAX" type="_9c" init="-1ul" context="_1" location="f1:116" file="f1" line="116" static="1"/>
  <Typedef id="_159" name="uint_least32_t" type="_147" context="_1" location="f2:78" file="f2" line="78"/>
  <Function id="_160" name="__builtin_inf" returns="_363" context="_1" location="f0:18" file="f0" line="18" extern="1" attributes="nothrow const"/>
  <Variable id="_161" name="cpp_sym_INT_LEAST64_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:50" file="f1" line="50" static="1"/>
  <Variable id="_162" name="cpp_sym_MNCC_MODIFY_IND" type="_93c" init="283" context="_1" location="f1:79" file="f1" line="79" static="1"/>
  <Namespace id="_163" name="__cxxabiv1" context="_1" members="" mangled="_Z10__cxxabiv1" demangled="__cxxabiv1"/>
  <Variable id="_164" name="cpp_sym_MNCC_FRAME_DROP" type="_93c" init="514" context="_1" location="f1:139" file="f1" line="139" static="1"/>
  <Variable id="_165" name="cpp_sym___USE_POSIX2" type="_93c" init="1" context="_1" location="f1:17" file="f1" line="17" static="1"/>
  <Variable id="_166" name="cpp_sym___USE_XOPEN" type="_93c" init="1" context="_1" location="f1:11" file="f1" line="11" static="1"/>
  <Enumeration id="_167" name="gsm48_bcap_user_rate" context="_1" location="f3:28" file="f3" line="28" artificial="1" size="32" align="32">
    <EnumValue name="GSM48_BCAP_UR_300" init="1"/>
    <EnumValue name="GSM48_BCAP_UR_1200" init="2"/>
    <EnumValue name="GSM48_BCAP_UR_2400" init="3"/>
    <EnumValue name="GSM48_BCAP_UR_4800" init="4"/>
    <EnumValue name="GSM48_BCAP_UR_9600" init="5"/>
    <EnumValue name="GSM48_BCAP_UR_12000" init="6"/>
    <EnumValue name="GSM48_BCAP_UR_1200_75" init="7"/>
  </Enumeration>
  <Variable id="_168" name="cpp_sym_INT_FAST64_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:48" file="f1" line="48" static="1"/>
  <Function id="_169" name="__builtin_frame_address" returns="_395" context="_1" location="f0:15" file="f0" line="15" extern="1">
    <Argument name="LEVEL" type="_147" location="f0:15" file="f0" line="15"/>
  </Function>
  <Variable id="_170" name="cpp_sym__SYS_CDEFS_H" type="_93c" init="1" context="_1" location="f1:140" file="f1" line="140" static="1"/>
  <Variable id="_171" name="cpp_sym_MNCC_HOLD_REJ" type="_93c" init="289" context="_1" location="f1:61" file="f1" line="61" static="1"/>
  <Function id="_172" name="__builtin_cabs" returns="_363" context="_1" mangled="cabs" location="f0:91" file="f0" line="91" extern="1" attributes="nothrow pure no vops">
    <Argument type="_379" location="f0:91" file="f0" line="91"/>
  </Function>
  <Variable id="_173" name="cpp_sym___USE_SVID" type="_93c" init="1" context="_1" location="f1:88" file="f1" line="88" static="1"/>
  <Variable id="_174" name="cpp_sym_INT32_MAX" type="_93c" init="2147483647" context="_1" location="f1:34" file="f1" line="34" static="1"/>
  <Function id="_175" name="__builtin_atan2f" returns="_366" context="_1" mangled="atan2f" location="f0:32" file="f0" line="32" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:32" file="f0" line="32"/>
    <Argument type="_366" location="f0:32" file="f0" line="32"/>
  </Function>
  <Function id="_176" name="__builtin_atan2l" returns="_367" context="_1" mangled="atan2l" location="f0:33" file="f0" line="33" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:33" file="f0" line="33"/>
    <Argument type="_367" location="f0:33" file="f0" line="33"/>
  </Function>
  <Variable id="_177" name="cpp_sym_MNCC_RETRIEVE_CNF" type="_93c" init="291" context="_1" location="f1:142" file="f1" line="142" static="1"/>
  <Typedef id="_178" name="int_fast8_t" type="_81" context="_1" location="f2:90" file="f2" line="90"/>
  <Function id="_179" name="__builtin_isinf" returns="_368" context="_1" mangled="isinf" location="f0:139" file="f0" line="139" extern="1" attributes="nothrow const">
    <Ellipsis/>
  </Function>
  <Variable id="_180" name="cpp_sym_PTRDIFF_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:104" file="f1" line="104" static="1"/>
  <Function id="_181" name="__builtin_fpclassify" returns="_368" context="_1" location="f0:135" file="f0" line="135" extern="1">
    <Ellipsis/>
  </Function>
  <FundamentalType id="_182" name="short int" size="16" align="16"/>
  <Typedef id="_183" name="int16_t" type="_182" context="_1" location="f2:37" file="f2" line="37"/>
  <Variable id="_184" name="cpp_sym_MNCC_START_DTMF_REJ" type="_93c" init="279" context="_1" location="f1:29" file="f1" line="29" static="1"/>
  <Typedef id="_185" name="int_fast16_t" type="_48" context="_1" location="f2:92" file="f2" line="92"/>
  <Function id="_186" name="__builtin_ccoshf" returns="_370" context="_1" mangled="ccoshf" location="f0:105" file="f0" line="105" extern="1" attributes="nothrow pure no vops">
    <Argument type="_370" location="f0:105" file="f0" line="105"/>
  </Function>
  <Function id="_187" name="__builtin_ccoshl" returns="_371" context="_1" mangled="ccoshl" location="f0:107" file="f0" line="107" extern="1" attributes="nothrow pure no vops">
    <Argument type="_371" location="f0:107" file="f0" line="107"/>
  </Function>
  <Variable id="_188" name="cpp_sym_PTRDIFF_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:115" file="f1" line="115" static="1"/>
  <Variable id="_189" name="cpp_sym_UINT_LEAST16_MAX" type="_93c" init="65535" context="_1" location="f1:154" file="f1" line="154" static="1"/>
  <Function id="_190" name="__builtin_atan" returns="_363" context="_1" mangled="atan" location="f0:30" file="f0" line="30" extern="1" attributes="nothrow pure no vops">
    <Argument type="_363" location="f0:30" file="f0" line="30"/>
  </Function>
  <Function id="_191" name="__builtin_sinhf" returns="_366" context="_1" mangled="sinhf" location="f0:78" file="f0" line="78" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:78" file="f0" line="78"/>
  </Function>
  <Function id="_192" name="__builtin_sinhl" returns="_367" context="_1" mangled="sinhl" location="f0:79" file="f0" line="79" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:79" file="f0" line="79"/>
  </Function>
  <Function id="_193" name="__builtin_sqrtf" returns="_366" context="_1" mangled="sqrtf" location="f0:82" file="f0" line="82" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:82" file="f0" line="82"/>
  </Function>
  <Function id="_194" name="__builtin_sqrtl" returns="_367" context="_1" mangled="sqrtl" location="f0:83" file="f0" line="83" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:83" file="f0" line="83"/>
  </Function>
  <Function id="_195" name="__builtin_frexpf" returns="_366" context="_1" mangled="frexpf" location="f0:57" file="f0" line="57" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:57" file="f0" line="57"/>
    <Argument type="_403" location="f0:57" file="f0" line="57"/>
  </Function>
  <Function id="_196" name="__builtin_frexpl" returns="_367" context="_1" mangled="frexpl" location="f0:58" file="f0" line="58" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:58" file="f0" line="58"/>
    <Argument type="_403" location="f0:58" file="f0" line="58"/>
  </Function>
  <Function id="_197" name="__builtin_cpowf" returns="_370" context="_1" mangled="cpowf" location="f0:129" file="f0" line="129" extern="1" attributes="nothrow pure no vops">
    <Argument type="_370" location="f0:129" file="f0" line="129"/>
    <Argument type="_370" location="f0:129" file="f0" line="129"/>
  </Function>
  <Function id="_198" name="__builtin_cpowl" returns="_371" context="_1" mangled="cpowl" location="f0:131" file="f0" line="131" extern="1" attributes="nothrow pure no vops">
    <Argument type="_371" location="f0:131" file="f0" line="131"/>
    <Argument type="_371" location="f0:131" file="f0" line="131"/>
  </Function>
  <Variable id="_199" name="cpp_sym_MNCC_REL_CNF" type="_93c" init="274" context="_1" location="f1:10" file="f1" line="10" static="1"/>
  <Variable id="_200" name="cpp_sym___USE_XOPEN2KXSI" type="_93c" init="1" context="_1" location="f1:14" file="f1" line="14" static="1"/>
  <Variable id="_201" name="cpp_sym_MNCC_RTP_FREE" type="_93c" init="518" context="_1" location="f1:72" file="f1" line="72" static="1"/>
  <Typedef id="_202" name="uint_fast64_t" type="_9" context="_1" location="f2:107" file="f2" line="107"/>
  <Variable id="_203" name="cpp_sym_UINT_FAST64_MAX" type="_9c" init="-1ul" context="_1" location="f1:100" file="f1" line="100" static="1"/>
  <Variable id="_204" name="cpp_sym_MNCC_RETRIEVE_REJ" type="_93c" init="292" context="_1" location="f1:84" file="f1" line="84" static="1"/>
  <Variable id="_205" name="cpp_sym___GLIBC_MINOR__" type="_93c" init="19" context="_1" location="f1:57" file="f1" line="57" static="1"/>
  <Variable id="_206" name="cpp_sym__FEATURES_H" type="_93c" init="1" context="_1" location="f1:117" file="f1" line="117" static="1"/>
  <Variable id="_207" name="cpp_sym_MNCC_DISC_IND" type="_93c" init="271" context="_1" location="f1:92" file="f1" line="92" static="1"/>
  <Variable id="_208" name="cpp_sym_MNCC_START_DTMF_RSP" type="_93c" init="278" context="_1" location="f1:120" file="f1" line="120" static="1"/>
  <Function id="_209" name="__builtin_bswap64" returns="_9" context="_1" location="f0:158" file="f0" line="158" extern="1">
    <Argument name="_data" type="_9" location="f0:158" file="f0" line="158"/>
  </Function>
  <Variable id="_210" name="cpp_sym_MNCC_F_CALLED" type="_93c" init="2" context="_1" location="f1:52" file="f1" line="52" static="1"/>
  <Variable id="_211" name="cpp_sym_UINT32_MAX" type="_147c" init="4294967295u" context="_1" location="f1:59" file="f1" line="59" static="1"/>
  <Enumeration id="_212" name="._1" context="_1" location="f3:146" file="f3" line="146" artificial="1" size="32" align="32">
    <EnumValue name="GSM_MNCC_BCAP_SPEECH" init="0"/>
    <EnumValue name="GSM_MNCC_BCAP_UNR_DIG" init="1"/>
    <EnumValue name="GSM_MNCC_BCAP_AUDIO" init="2"/>
    <EnumValue name="GSM_MNCC_BCAP_FAX_G3" init="3"/>
    <EnumValue name="GSM_MNCC_BCAP_OTHER_ITC" init="5"/>
    <EnumValue name="GSM_MNCC_BCAP_RESERVED" init="7"/>
  </Enumeration>
  <Variable id="_213" name="cpp_sym___USE_POSIX199506" type="_93c" init="1" context="_1" location="f1:122" file="f1" line="122" static="1"/>
  <Variable id="_214" name="cpp_sym___USE_LARGEFILE64" type="_93c" init="1" context="_1" location="f1:12" file="f1" line="12" static="1"/>
  <Variable id="_215" name="cpp_sym___USE_EXTERN_INLINES" type="_93c" init="1" context="_1" location="f1:114" file="f1" line="114" static="1"/>
  <Variable id="_216" name="cpp_sym_MNCC_DISC_REQ" type="_93c" init="270" context="_1" location="f1:147" file="f1" line="147" static="1"/>
  <Function id="_217" name="__builtin_tanhf" returns="_366" context="_1" mangled="tanhf" location="f0:87" file="f0" line="87" extern="1" attributes="nothrow pure no vops">
    <Argument type="_366" location="f0:87" file="f0" line="87"/>
  </Function>
  <Variable id="_218" name="cpp_sym_GSM_TCHF_FRAME_EFR" type="_93c" init="769" context="_1" location="f1:156" file="f1" line="156" static="1"/>
  <Function id="_219" name="__builtin_tanhl" returns="_367" context="_1" mangled="tanhl" location="f0:88" file="f0" line="88" extern="1" attributes="nothrow pure no vops">
    <Argument type="_367" location="f0:88" file="f0" line="88"/>
  </Function>
  <Function id="_220" name="__builtin_cabsf" returns="_366" context="_1" mangled="cabsf" location="f0:90" file="f0" line="90" extern="1" attributes="nothrow pure no vops">
    <Argument type="_370" location="f0:90" file="f0" line="90"/>
  </Function>
  <Function id="_221" name="__builtin_cabsl" returns="_367" context="_1" mangled="cabsl" location="f0:92" file="f0" line="92" extern="1" attributes="nothrow pure no vops">
    <Argument type="_371" location="f0:92" file="f0" line="92"/>
  </Function>
  <Typedef id="_222" name="int_least16_t" type="_182" context="_1" location="f2:66" file="f2" line="66"/>
  <Function id="_223" name="__builtin_powf" returns="_366" context="_1" mangled="powf" location="f0:70" file="f0" line="70" extern="1" attributes="nothrow">
    <Argument type="_366" location="f0:70" file="f0" line="70"/>
    <Argument type="_366" location="f0:70" file="f0" line="70"/>
  </Function>
  <Function id="_224" name="__builtin_powi" returns="_363" context="_1" location="f0:72" file="f0" line="72" extern="1" attributes="nothrow pure no vops">
    <Argument type="_363" location="f0:72" file="f0" line="72"/>
    <Argument type="_93" location="f0:72" file="f0" line="72"/>
  </Function>
  <Function id="_225" name="__builtin_powl" returns="_367" context="_1" mangled="powl" location="f0:71" file="f0" line="71" extern="1" attributes="nothrow">
    <Argument type="_367" location="f0:71" file="f0" line="71"/>
    <Argument type="_367" location="f0:71" file="f0" line="71"/>
  </Function>
  <Struct id="_226" name="gsm_mncc_bridge" context="_1" mangled="15gsm_mncc_bridge" demangled="gsm_mncc_bridge" location="f3:301" file="f3" line="301" artificial="1" size="96" align="32" members="_425 _426 _427 _428 _429 _430 " bases=""/>
  <Variable id="_227" name="cpp_sym___USE_GNU" type="_93c" init="1" context="_1" location="f1:73" file="f1" line="73" static="1"/>
  <Variable id="_228" name="cpp_sym_UINTPTR_MAX" type="_9c" init="-1ul" context="_1" location="f1:76" file="f1" line="76" static="1"/>
  <Typedef id="_229" name="uintptr_t" type="_9" context="_1" location="f2:122" file="f2" line="122"/>
  <Variable id="_230" name="cpp_sym_MNCC_STOP_DTMF_RSP" type="_93c" init="281" context="_1" location="f1:15" file="f1" line="15" static="1"/>
  <Variable id="_231" name="cpp_sym_MNCC_USERINFO_REQ" type="_93c" init="293" context="_1" location="f1:71" file="f1" line="71" static="1"/>
  <Struct id="_232" name="gsm_mncc_useruser" context="_1" mangled="17gsm_mncc_useruser" demangled="gsm_mncc_useruser" location="f3:120" file="f3" line="120" artificial="1" size="1088" align="32" members="_431 _432 _433 _434 _435 _436 " bases=""/>
  <Variable id="_233" name="cpp_sym_MNCC_F_USERUSER" type="_93c" init="64" context="_1" location="f1:65" file="f1" line="65" static="1"/>
  <Function id="_234" name="__builtin_ccos" returns="_379" context="_1" mangled="ccos" location="f0:103" file="f0" line="103" extern="1" attributes="nothrow pure no vops">
    <Argument type="_379" location="f0:103" file="f0" line="103"/>
  </Function>
  <Variable id="_235" name="cpp_sym_MNCC_BRIDGE" type="_93c" init="512" context="_1" location="f1:51" file="f1" line="51" static="1"/>
  <Variable id="_236" name="cpp_sym_GSM_MAX_USERUSER" type="_93c" init="128" context="_1" location="f1:62" file="f1" line="62" static="1"/>
  <Typedef id="_237" name="intptr_t" type="_48" context="_1" location="f2:119" file="f2" line="119"/>
  <Struct id="_238" name="gsm_mncc_bearer_cap" context="_1" mangled="19gsm_mncc_bearer_cap" demangled="gsm_mncc_bearer_cap" location="f3:81" file="f3" line="81" artificial="1" size="736" align="32" members="_437 _438 _439 _440 _441 _442 _443 _444 _445 _446 _447 _448 " bases=""/>
  <Variable id="_239" name="cpp_sym_INT_LEAST64_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:87" file="f1" line="87" static="1"/>
  <Variable id="_240" name="cpp_sym_MNCC_SETUP_CNF" type="_93c" init="260" context="_1" location="f1:4" file="f1" line="4" static="1"/>
  <Variable id="_241" name="cpp_sym__ATFILE_SOURCE" type="_93c" init="1" context="_1" location="f1:3" file="f1" line="3" static="1"/>
  <Function id="_242" name="__builtin_expect" returns="_48" context="_1" location="f0:16" file="f0" line="16" extern="1" attributes="nothrow const">
    <Argument name="EXP" type="_48" location="f0:16" file="f0" line="16"/>
    <Argument name="C" type="_48" location="f0:16" file="f0" line="16"/>
  </Function>
  <Variable id="_243" name="cpp_sym___USE_XOPEN2K8XSI" type="_93c" init="1" context="_1" location="f1:19" file="f1" line="19" static="1"/>
  <Function id="_244" name="__builtin_popcountl" returns="_93" context="_1" location="f0:100" file="f0" line="100" extern="1" attributes="nothrow const">
    <Argument type="_48" location="f0:100" file="f0" line="100"/>
  </Function>
  <Variable id="_245" name="cpp_sym___USE_ISOC11" type="_93c" init="1" context="_1" location="f1:163" file="f1" line="163" static="1"/>
  <Variable id="_246" name="cpp_sym_MNCC_ALERT_IND" type="_93c" init="267" context="_1" location="f1:77" file="f1" line="77" static="1"/>
  <Typedef id="_247" name="uintmax_t" type="_9" context="_1" location="f2:135" file="f2" line="135"/>
  <Variable id="_248" name="cpp_sym_UINT64_MAX" type="_9c" init="-1ul" context="_1" location="f1:27" file="f1" line="27" static="1"/>
  <Variable id="_249" name="cpp_sym___USE_POSIX199309" type="_93c" init="1" context="_1" location="f1:54" file="f1" line="54" static="1"/>
  <Variable id="_250" name="cpp_sym__BSD_SOURCE" type="_93c" init="1" context="_1" location="f1:165" file="f1" line="165" static="1"/>
  <Typedef id="_251" name="int64_t" type="_48" context="_1" location="f2:40" file="f2" line="40"/>
  <Variable id="_252" name="cpp_sym_MNCC_SETUP_REQ" type="_93c" init="257" context="_1" location="f1:64" file="f1" line="64" static="1"/>
  <Variable id="_253" name="cpp_sym_MNCC_F_CONNECTED" type="_93c" init="16" context="_1" location="f1:99" file="f1" line="99" static="1"/>
  <Struct id="_254" name="gsm_mncc_rtp" context="_1" mangled="12gsm_mncc_rtp" demangled="gsm_mncc_rtp" location="f3:292" file="f3" line="292" artificial="1" size="192" align="32" members="_449 _450 _451 _452 _453 _454 _455 _456 _457 _458 " bases=""/>
  <Typedef id="_255" name="int32_t" type="_93" context="_1" location="f2:38" file="f2" line="38"/>
  <Variable id="_256" name="cpp_sym_INT_LEAST16_MAX" type="_93c" init="32767" context="_1" location="f1:30" file="f1" line="30" static="1"/>
  <Variable id="_257" name="cpp_sym__SVID_SOURCE" type="_93c" init="1" context="_1" location="f1:6" file="f1" line="6" static="1"/>
  <Variable id="_258" name="cpp_sym_INTPTR_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:155" file="f1" line="155" static="1"/>
  <Function id="_259" name="__builtin_inff" returns="_366" context="_1" location="f0:19" file="f0" line="19" extern="1" attributes="nothrow const"/>
  <Function id="_260" name="__builtin_infl" returns="_367" context="_1" location="f0:20" file="f0" line="20" extern="1" attributes="nothrow const"/>
  <FundamentalType id="_261" name="short unsigned int" size="16" align="16"/>
  <Typedef id="_262" name="uint16_t" type="_261" context="_1" location="f2:49" file="f2" line="49"/>
  <Variable id="_263" name="cpp_sym_MNCC_FACILITY_IND" type="_93c" init="276" context="_1" location="f1:20" file="f1" line="20" static="1"/>
  <Typedef id="_264" name="intmax_t" type="_48" context="_1" location="f2:134" file="f2" line="134"/>
  <Struct id="_265" name="gsm_mncc" context="_1" mangled="8gsm_mncc" demangled="gsm_mncc" location="f3:233" file="f3" line="233" artificial="1" size="6688" align="32" members="_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 " bases=""/>
  <Variable id="_266" name="cpp_sym_MNCC_REJ_REQ" type="_93c" init="295" context="_1" location="f1:66" file="f1" line="66" static="1"/>
  <Variable id="_267" name="cpp_sym_MNCC_F_KEYPAD" type="_93c" init="4096" context="_1" location="f1:109" file="f1" line="109" static="1"/>
  <Variable id="_268" name="cpp_sym_INT32_MIN" type="_93c" init="-0x00000000080000000" context="_1" location="f1:107" file="f1" line="107" static="1"/>
  <Variable id="_269" name="cpp_sym_MNCC_MODIFY_CNF" type="_93c" init="285" context="_1" location="f1:106" file="f1" line="106" static="1"/>
  <Function id="_270" name="__builtin_cos" returns="_363" context="_1" mangled="cos" location="f0:39" file="f0" line="39" extern="1" attributes="nothrow pure no vops">
    <Argument type="_363" location="f0:39" file="f0" line="39"/>
  </Function>
  <Variable id="_271" name="cpp_sym_INT_FAST16_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:131" file="f1" line="131" static="1"/>
  <FundamentalType id="_272" name="unsigned char" size="8" align="8"/>
  <Typedef id="_273" name="uint_fast8_t" type="_272" context="_1" location="f2:103" file="f2" line="103"/>
  <Variable id="_274" name="cpp_sym_MNCC_NOTIFY_REQ" type="_93c" init="268" context="_1" location="f1:135" file="f1" line="135" static="1"/>
  <Variable id="_275" name="cpp_sym_INT_LEAST16_MIN" type="_93c" init="-0x00000000000008000" context="_1" location="f1:137" file="f1" line="137" static="1"/>
  <Variable id="_276" name="cpp_sym_MNCC_SETUP_RSP" type="_93c" init="259" context="_1" location="f1:148" file="f1" line="148" static="1"/>
  <Variable id="_277" name="cpp_sym_INTPTR_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:97" file="f1" line="97" static="1"/>
  <Variable id="_278" name="cpp_sym___USE_MISC" type="_93c" init="1" context="_1" location="f1:90" file="f1" line="90" static="1"/>
  <Typedef id="_279" name="uint_least16_t" type="_261" context="_1" location="f2:77" file="f2" line="77"/>
  <Variable id="_280" name="cpp_sym_MNCC_F_CCCAP" type="_93c" init="2048" context="_1" location="f1:105" file="f1" line="105" static="1"/>
  <Function id="_281" name="__builtin_ctz" returns="_93" context="_1" location="f0:96" file="f0" line="96" extern="1" attributes="nothrow const">
    <Argument type="_93" location="f0:96" file="f0" line="96"/>
  </Function>
  <Variable id="_282" name="cpp_sym_MNCC_RTP_CREATE" type="_93c" init="516" context="_1" location="f1:13" file="f1" line="13" static="1"/>
  <Function id="_283" name="__builtin_return_address" returns="_395" context="_1" location="f0:14" file="f0" line="14" extern="1">
    <Argument name="LEVEL" type="_147" location="f0:14" file="f0" line="14"/>
  </Function>
  <Typedef id="_284" name="uint8_t" type="_272" context="_1" location="f2:48" file="f2" line="48"/>
  <Function id="_285" name="__builtin_isnan" returns="_368" context="_1" mangled="isnan" location="f0:144" file="f0" line="144" extern="1" attributes="nothrow const">
    <Ellipsis/>
  </Function>
  <Variable id="_286" name="cpp_sym_MNCC_F_CALLING" type="_93c" init="4" context="_1" location="f1:159" file="f1" line="159" static="1"/>
  <Variable id="_287" name="cpp_sym_MNCC_CALL_PROC_REQ" type="_93c" init="264" context="_1" location="f1:127" file="f1" line="127" static="1"/>
  <Variable id="_288" name="cpp_sym_INT_FAST16_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:25" file="f1" line="25" static="1"/>
  <Variable id="_289" name="cpp_sym_MNCC_FRAME_RECV" type="_93c" init="513" context="_1" location="f1:153" file="f1" line="153" static="1"/>
  <Function id="_290" name="__builtin_csinhf" returns="_370" context="_1" mangled="csinhf" location="f0:117" file="f0" line="117" extern="1" attributes="nothrow pure no vops">
    <Argument type="_370" location="f0:117" file="f0" line="117"/>
  </Function>
  <Function id="_291" name="__builtin_csinhl" returns="_371" context="_1" mangled="csinhl" location="f0:119" file="f0" line="119" extern="1" attributes="nothrow pure no vops">
    <Argument type="_371" location="f0:119" file="f0" line="119"/>
  </Function>
  <Function id="_292" name="__builtin_csqrtf" returns="_370" context="_1" mangled="csqrtf" location="f0:120" file="f0" line="120" extern="1" attributes="nothrow pure no vops">
    <Argument type="_370" location="f0:120" file="f0" line="120"/>
  </Function>
  <Function id="_293" name="__builtin_csqrtl" returns="_371" context="_1" mangled="csqrtl" location="f0:122" file="f0" line="122" extern="1" attributes="nothrow pure no vops">
    <Argument type="_371" location="f0:122" file="f0" line="122"/>
  </Function>
  <Variable id="_294" name="cpp_sym_MNCC_PROGRESS_REQ" type="_93c" init="265" context="_1" location="f1:16" file="f1" line="16" static="1"/>
  <Typedef id="_295" name="int_least64_t" type="_48" context="_1" location="f2:69" file="f2" line="69"/>
  <Typedef id="_296" name="int8_t" type="_81" context="_1" location="f2:36" file="f2" line="36"/>
  <Variable id="_297" name="cpp_sym__ISOC11_SOURCE" type="_93c" init="1" context="_1" location="f1:83" file="f1" line="83" static="1"/>
  <Variable id="_298" name="cpp_sym_MNCC_MODIFY_REJ" type="_93c" init="286" context="_1" location="f1:129" file="f1" line="129" static="1"/>
  <Enumeration id="_299" name="gsm48_bcap_interm_rate" context="_1" location="f3:48" file="f3" line="48" artificial="1" size="32" align="32">
    <EnumValue name="GSM48_BCAP_IR_8k" init="2"/>
    <EnumValue name="GSM48_BCAP_IR_16k" init="3"/>
  </Enumeration>
  <Variable id="_300" name="cpp_sym_MNCC_MODIFY_REQ" type="_93c" init="282" context="_1" location="f1:123" file="f1" line="123" static="1"/>
  <Function id="_301" name="__builtin_floor" returns="_363" context="_1" mangled="floor" location="f0:51" file="f0" line="51" extern="1" attributes="nothrow const">
    <Argument type="_363" location="f0:51" file="f0" line="51"/>
  </Function>
  <Function id="_302" name="__builtin_ldexp" returns="_363" context="_1" mangled="ldexp" location="f0:59" file="f0" line="59" extern="1" attributes="nothrow">
    <Argument type="_363" location="f0:59" file="f0" line="59"/>
    <Argument type="_93" location="f0:59" file="f0" line="59"/>
  </Function>
  <Variable id="_303" name="cpp_sym__BITS_WCHAR_H" type="_93c" init="1" context="_1" location="f1:158" file="f1" line="158" static="1"/>
  <Variable id="_304" name="cpp_sym_MNCC_NOTIFY_IND" type="_93c" init="269" context="_1" location="f1:43" file="f1" line="43" static="1"/>
  <Variable id="_305" name="cpp_sym__XOPEN_SOURCE" type="_93c" init="700" context="_1" location="f1:146" file="f1" line="146" static="1"/>
  <Variable id="_306" name="cpp_sym_MNCC_F_EMERGENCY" type="_93c" init="256" context="_1" location="f1:143" file="f1" line="143" static="1"/>
  <Variable id="_307" name="cpp_sym___WORDSIZE" type="_93c" init="64" context="_1" location="f1:138" file="f1" line="138" static="1"/>
  <Function id="_308" name="__builtin_ccosf" returns="_370" context="_1" mangled="ccosf" location="f0:102" file="f0" line="102" extern="1" attributes="nothrow pure no vops">
    <Argument type="_370" location="f0:102" file="f0" line="102"/>
  </Function>
  <Function id="_309" name="__builtin_ccosh" returns="_379" context="_1" mangled="ccosh" location="f0:106" file="f0" line="106" extern="1" attributes="nothrow pure no vops">
    <Argument type="_379" location="f0:106" file="f0" line="106"/>
  </Function>
  <Function id="_310" name="__builtin_ccosl" returns="_371" context="_1" mangled="ccosl" location="f0:104" file="f0" line="104" extern="1" attributes="nothrow pure no vops">
    <Argument type="_371" location="f0:104" file="f0" line="104"/>
  </Function>
  <Function id="_311" name="__builtin_va_arg_pack_len" returns="_93" context="_1" location="f0:148" file="f0" line="148" extern="1">
    <Ellipsis/>
  </Function>
  <Function id="_312" name="__builtin_islessgreater" returns="_368" context="_1" location="f0:143" file="f0" line="143" extern="1" attributes="nothrow const">
    <Ellipsis/>
  </Function>
  <Variable id="_313" name="cpp_sym_GSM_MAX_SSVERSION" type="_93c" init="128" context="_1" location="f1:118" file="f1" line="118" static="1"/>
  <Variable id="_314" name="cpp_sym_INT64_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:63" file="f1" line="63" static="1"/>
  <Function id="_315" name="__builtin_ctanhf" returns="_370" context="_1" mangled="ctanhf" location="f0:126" file="f0" line="126" extern="1" attributes="nothrow pure no vops">
    <Argument type="_370" location="f0:126" file="f0" line="126"/>
  </Function>
  <Function id="_316" name="__builtin_ctanhl" returns="_371" context="_1" mangled="ctanhl" location="f0:128" file="f0" line="128" extern="1" attributes="nothrow pure no vops">
    <Argument type="_371" location="f0:128" file="f0" line="128"/>
  </Function>
  <Variable id="_317" name="cpp_sym__LARGEFILE64_SOURCE" type="_93c" init="1" context="_1" location="f1:144" file="f1" line="144" static="1"/>
  <Variable id="_318" name="cpp_sym_MNCC_RTP_CONNECT" type="_93c" init="517" context="_1" location="f1:55" file="f1" line="55" static="1"/>
  <Variable id="_319" name="cpp_sym___USE_ATFILE" type="_93c" init="1" context="_1" location="f1:28" file="f1" line="28" static="1"/>
  <Function id="_320" name="__builtin_ceilf" returns="_366" context="_1" mangled="ceilf" location="f0:37" file="f0" line="37" extern="1" attributes="nothrow const">
    <Argument type="_366" location="f0:37" file="f0" line="37"/>
  </Function>
  <Function id="_321" name="__builtin_ceill" returns="_367" context="_1" mangled="ceill" location="f0:38" file="f0" line="38" extern="1" attributes="nothrow const">
    <Argument type="_367" location="f0:38" file="f0" line="38"/>
  </Function>
  <Variable id="_322" name="cpp_sym_INT64_MIN" type="_48c" init="-0x08000000000000000l" context="_1" location="f1:39" file="f1" line="39" static="1"/>
  <Variable id="_323" name="cpp_sym_UINT_FAST16_MAX" type="_9c" init="-1ul" context="_1" location="f1:136" file="f1" line="136" static="1"/>
  <Function id="_324" name="__builtin_csinf" returns="_370" context="_1" mangled="csinf" location="f0:114" file="f0" line="114" extern="1" attributes="nothrow pure no vops">
    <Argument type="_370" location="f0:114" file="f0" line="114"/>
  </Function>
  <Function id="_325" name="__builtin_csinh" returns="_379" context="_1" mangled="csinh" location="f0:118" file="f0" line="118" extern="1" attributes="nothrow pure no vops">
    <Argument type="_379" location="f0:118" file="f0" line="118"/>
  </Function>
  <Function id="_326" name="__builtin_csinl" returns="_371" context="_1" mangled="csinl" location="f0:116" file="f0" line="116" extern="1" attributes="nothrow pure no vops">
    <Argument type="_371" location="f0:116" file="f0" line="116"/>
  </Function>
  <Struct id="_327" name="gsm_mncc_hello" context="_1" mangled="14gsm_mncc_hello" demangled="gsm_mncc_hello" location="f3:277" file="f3" line="277" artificial="1" size="256" align="32" members="_487 _488 _489 _490 _491 _492 _493 _494 _495 _496 _497 _498 " bases=""/>
  <Function id="_328" name="__builtin_acos" returns="_363" context="_1" mangled="acos" location="f0:24" file="f0" line="24" extern="1" attributes="nothrow">
    <Argument type="_363" location="f0:24" file="f0" line="24"/>
  </Function>
  <Function id="_329" name="__builtin_ctzll" returns="_93" context="_1" location="f0:98" file="f0" line="98" extern="1" attributes="nothrow const">
    <Argument type="_369" location="f0:98" file="f0" line="98"/>
  </Function>
  <Typedef id="_330" name="uint_fast32_t" type="_9" context="_1" location="f2:106" file="f2" line="106"/>
  <Function id="_331" name="__builtin_cargf" returns="_366" context="_1" mangled="cargf" location="f0:93" file="f0" line="93" extern="1" attributes="nothrow pure no vops">
    <Argument type="_370" location="f0:93" file="f0" line="93"/>
  </Function>
  <Function id="_332" name="__builtin_cargl" returns="_367" context="_1" mangled="cargl" location="f0:95" file="f0" line="95" extern="1" attributes="nothrow pure no vops">
    <Argument type="_371" location="f0:95" file="f0" line="95"/>
  </Function>
  <Enumeration id="_333" name="gsm48_bcap_parity" context="_1" location="f3:39" file="f3" line="39" artificial="1" size="32" align="32">
    <EnumValue name="GSM48_BCAP_PAR_ODD" init="0"/>
    <EnumValue name="GSM48_BCAP_PAR_EVEN" init="2"/>
    <EnumValue name="GSM48_BCAP_PAR_NONE" init="3"/>
    <EnumValue name="GSM48_BCAP_PAR_ZERO" init="4"/>
    <EnumValue name="GSM48_BCAP_PAR_ONE" init="5"/>
  </Enumeration>
  <Variable id="_334" name="cpp_sym_MNCC_REL_REQ" type="_93c" init="272" context="_1" location="f1:40" file="f1" line="40" static="1"/>
  <Variable id="_335" name="cpp_sym_MNCC_F_REDIRECTING" type="_93c" init="8" context="_1" location="f1:75" file="f1" line="75" static="1"/>
  <Variable id="_336" name="cpp_sym_GSM_TCH_FRAME_AMR" type="_93c" init="771" context="_1" location="f1:18" file="f1" line="18" static="1"/>
  <Function id="_337" name="__builtin_cosf" returns="_366" context="_1" mangled="cosf" location="f0:40" file="f0" line="40" extern="1" attributes="nothrow pure no vops">
    <Argument type="_366" location="f0:40" file="f0" line="40"/>
  </Function>
  <Function id="_338" name="__builtin_cosh" returns="_363" context="_1" mangled="cosh" location="f0:41" file="f0" line="41" extern="1" attributes="nothrow">
    <Argument type="_363" location="f0:41" file="f0" line="41"/>
  </Function>
  <Function id="_339" name="__builtin_cosl" returns="_367" context="_1" mangled="cosl" location="f0:44" file="f0" line="44" extern="1" attributes="nothrow pure no vops">
    <Argument type="_367" location="f0:44" file="f0" line="44"/>
  </Function>
  <Variable id="_340" name="cpp_sym_INT8_MAX" type="_93c" init="127" context="_1" location="f1:85" file="f1" line="85" static="1"/>
  <Variable id="_341" name="cpp_sym__DEFAULT_SOURCE" type="_93c" init="1" context="_1" location="f1:93" file="f1" line="93" static="1"/>
  <Variable id="_342" name="cpp_sym_INT_FAST8_MIN" type="_93c" init="-0x00000000000000080" context="_1" location="f1:141" file="f1" line="141" static="1"/>
  <Variable id="_343" name="cpp_sym___USE_FORTIFY_LEVEL" type="_93c" init="2" context="_1" location="f1:103" file="f1" line="103" static="1"/>
  <Function id="_344" name="__builtin_isgreater" returns="_368" context="_1" location="f0:137" file="f0" line="137" extern="1" attributes="nothrow const">
    <Ellipsis/>
  </Function>
  <Variable id="_345" name="cpp_sym_INT_LEAST8_MAX" type="_93c" init="127" context="_1" location="f1:2" file="f1" line="2" static="1"/>
  <Variable id="_346" name="cpp_sym_MNCC_CALL_CONF_IND" type="_93c" init="263" context="_1" location="f1:80" file="f1" line="80" static="1"/>
  <Struct id="_347" name="gsm_mncc_number" context="_1" mangled="15gsm_mncc_number" demangled="gsm_mncc_number" location="f3:102" file="f3" line="102" artificial="1" size="416" align="32" members="_499 _500 _501 _502 _503 _504 _505 _506 _507 " bases=""/>
  <Function id="_348" name="__builtin_bswap32" returns="_147" context="_1" location="f0:157" file="f0" line="157" extern="1">
    <Argument name="_data" type="_147" location="f0:157" file="f0" line="157"/>
  </Function>
  <Variable id="_349" name="cpp_sym_INT8_MIN" type="_93c" init="-0x00000000000000080" context="_1" location="f1:95" file="f1" line="95" static="1"/>
  <Typedef id="_350" name="uint_least8_t" type="_272" context="_1" location="f2:76" file="f2" line="76"/>
  <Variable id="_351" name="cpp_sym_MNCC_F_PROGRESS" type="_93c" init="128" context="_1" location="f1:60" file="f1" line="60" static="1"/>
  <Variable id="_352" name="cpp_sym___GNU_LIBRARY__" type="_93c" init="6" context="_1" location="f1:9" file="f1" line="9" static="1"/>
  <Function id="_353" name="__builtin_sinf" returns="_366" context="_1" mangled="sinf" location="f0:76" file="f0" line="76" extern="1" attributes="nothrow pure no vops">
    <Argument type="_366" location="f0:76" file="f0" line="76"/>
  </Function>
  <Function id="_354" name="__builtin_sinh" returns="_363" context="_1" mangled="sinh" location="f0:77" file="f0" line="77" extern="1" attributes="nothrow">
    <Argument type="_363" location="f0:77" file="f0" line="77"/>
  </Function>
  <Function id="_355" name="__builtin_sinl" returns="_367" context="_1" mangled="sinl" location="f0:80" file="f0" line="80" extern="1" attributes="nothrow pure no vops">
    <Argument type="_367" location="f0:80" file="f0" line="80"/>
  </Function>
  <Typedef id="_356" name="uint64_t" type="_9" context="_1" location="f2:55" file="f2" line="55"/>
  <Function id="_357" name="__builtin_csin" returns="_379" context="_1" mangled="csin" location="f0:115" file="f0" line="115" extern="1" attributes="nothrow pure no vops">
    <Argument type="_379" location="f0:115" file="f0" line="115"/>
  </Function>
  <Variable id="_358" name="cpp_sym_INT_LEAST8_MIN" type="_93c" init="-0x00000000000000080" context="_1" location="f1:45" file="f1" line="45" static="1"/>
  <Variable id="_359" name="cpp_sym__POSIX_SOURCE" type="_93c" init="1" context="_1" location="f1:37" file="f1" line="37" static="1"/>
  <Variable id="_360" name="cpp_sym_UINT_LEAST32_MAX" type="_147c" init="4294967295u" context="_1" location="f1:53" file="f1" line="53" static="1"/>
  <Variable id="_361" name="cpp_sym_INTMAX_MAX" type="_48c" init="9223372036854775807l" context="_1" location="f1:35" file="f1" line="35" static="1"/>
  <Variable id="_362" name="cpp_sym_GSM_TCHH_FRAME" type="_93c" init="770" context="_1" location="f1:5" file="f1" line="5" static="1"/>
  <FundamentalType id="_363" name="double" size="64" align="64"/>
  <PointerType id="_364" type="_508c" size="64" align="64"/>
  <CvQualifiedType id="_93c" type="_93" const="1"/>
  <FundamentalType id="_366" name="float" size="32" align="32"/>
  <FundamentalType id="_367" name="long double" size="128" align="128"/>
  <FundamentalType id="_368" name="bool" size="8" align="8"/>
  <FundamentalType id="_369" name="long long int" size="64" align="64"/>
  <FundamentalType id="_370" name="complex float" size="64" align="32"/>
  <FundamentalType id="_371" name="complex long double" size="256" align="128"/>
  <CvQualifiedType id="_48c" type="_48" const="1"/>
  <Field id="_373" name="dtmf" type="_93" offset="0" context="_27" access="public" location="f3:142" file="f3" line="142"/>
  <Field id="_374" name="pcp" type="_93" offset="32" context="_27" access="public" location="f3:143" file="f3" line="143"/>
  <Destructor id="_375" name="gsm_mncc_cccap" artificial="1" throw="" context="_27" access="public" mangled="_ZN14gsm_mncc_cccapD1Ev *INTERNAL* " demangled="gsm_mncc_cccap::~gsm_mncc_cccap()" location="f3:141" file="f3" line="141" endline="141" inline="1">
  </Destructor>
  <OperatorMethod id="_376" name="=" returns="_510" artificial="1" throw="" context="_27" access="public" mangled="_ZN14gsm_mncc_cccapaSERKS_" demangled="gsm_mncc_cccap::operator=(gsm_mncc_cccap const&amp;)" location="f3:141" file="f3" line="141" endline="141" inline="1">
    <Argument type="_511" location="f3:141" file="f3" line="141"/>
  </OperatorMethod>
  <Constructor id="_377" name="gsm_mncc_cccap" artificial="1" throw="" context="_27" access="public" mangled="_ZN14gsm_mncc_cccapC1ERKS_ *INTERNAL* " demangled="gsm_mncc_cccap::gsm_mncc_cccap(gsm_mncc_cccap const&amp;)" location="f3:141" file="f3" line="141" endline="141" inline="1">
    <Argument type="_511" location="f3:141" file="f3" line="141"/>
  </Constructor>
  <Constructor id="_378" name="gsm_mncc_cccap" artificial="1" throw="" context="_27" access="public" mangled="_ZN14gsm_mncc_cccapC1Ev *INTERNAL* " demangled="gsm_mncc_cccap::gsm_mncc_cccap()" location="f3:141" file="f3" line="141" inline="1"/>
  <FundamentalType id="_379" name="complex double" size="128" align="64"/>
  <Field id="_380" name="len" type="_93" offset="0" context="_60" access="public" location="f3:132" file="f3" line="132"/>
  <Field id="_381" name="info" type="_512" offset="32" context="_60" access="public" location="f3:133" file="f3" line="133"/>
  <Destructor id="_382" name="gsm_mncc_facility" artificial="1" throw="" context="_60" access="public" mangled="_ZN17gsm_mncc_facilityD1Ev *INTERNAL* " demangled="gsm_mncc_facility::~gsm_mncc_facility()" location="f3:131" file="f3" line="131" endline="131" inline="1">
  </Destructor>
  <OperatorMethod id="_383" name="=" returns="_513" artificial="1" throw="" context="_60" access="public" mangled="_ZN17gsm_mncc_facilityaSERKS_" demangled="gsm_mncc_facility::operator=(gsm_mncc_facility const&amp;)" location="f3:131" file="f3" line="131" endline="131" inline="1">
    <Argument type="_514" location="f3:131" file="f3" line="131"/>
  </OperatorMethod>
  <Constructor id="_384" name="gsm_mncc_facility" artificial="1" throw="" context="_60" access="public" mangled="_ZN17gsm_mncc_facilityC1ERKS_ *INTERNAL* " demangled="gsm_mncc_facility::gsm_mncc_facility(gsm_mncc_facility const&amp;)" location="f3:131" file="f3" line="131" endline="131" inline="1">
    <Argument type="_514" location="f3:131" file="f3" line="131"/>
  </Constructor>
  <Constructor id="_385" name="gsm_mncc_facility" artificial="1" throw="" context="_60" access="public" mangled="_ZN17gsm_mncc_facilityC1Ev *INTERNAL* " demangled="gsm_mncc_facility::gsm_mncc_facility()" location="f3:131" file="f3" line="131" inline="1"/>
  <CvQualifiedType id="_9c" type="_9" const="1"/>
  <Field id="_387" name="msg_type" type="_148" offset="0" context="_83" access="public" location="f3:271" file="f3" line="271"/>
  <Field id="_388" name="callref" type="_148" offset="32" context="_83" access="public" location="f3:272" file="f3" line="272"/>
  <Field id="_389" name="data" type="_515" offset="64" context="_83" access="public" location="f3:273" file="f3" line="273"/>
  <Destructor id="_390" name="gsm_data_frame" artificial="1" throw="" context="_83" access="public" mangled="_ZN14gsm_data_frameD1Ev *INTERNAL* " demangled="gsm_data_frame::~gsm_data_frame()" location="f3:270" file="f3" line="270" endline="270" inline="1">
  </Destructor>
  <OperatorMethod id="_391" name="=" returns="_516" artificial="1" throw="" context="_83" access="public" mangled="_ZN14gsm_data_frameaSERKS_" demangled="gsm_data_frame::operator=(gsm_data_frame const&amp;)" location="f3:270" file="f3" line="270" endline="270" inline="1">
    <Argument type="_517" location="f3:270" file="f3" line="270"/>
  </OperatorMethod>
  <Constructor id="_392" name="gsm_data_frame" artificial="1" throw="" context="_83" access="public" mangled="_ZN14gsm_data_frameC1ERKS_ *INTERNAL* " demangled="gsm_data_frame::gsm_data_frame(gsm_data_frame const&amp;)" location="f3:270" file="f3" line="270" endline="270" inline="1">
    <Argument type="_517" location="f3:270" file="f3" line="270"/>
  </Constructor>
  <Constructor id="_393" name="gsm_data_frame" artificial="1" throw="" context="_83" access="public" mangled="_ZN14gsm_data_frameC1Ev *INTERNAL* " demangled="gsm_data_frame::gsm_data_frame()" location="f3:270" file="f3" line="270" inline="1"/>
  <FundamentalType id="_394" name="void" align="8"/>
  <PointerType id="_395" type="_394" size="64" align="64"/>
  <Field id="_396" name="len" type="_93" offset="0" context="_87" access="public" location="f3:137" file="f3" line="137"/>
  <Field id="_397" name="info" type="_512" offset="32" context="_87" access="public" location="f3:138" file="f3" line="138"/>
  <Destructor id="_398" name="gsm_mncc_ssversion" artificial="1" throw="" context="_87" access="public" mangled="_ZN18gsm_mncc_ssversionD1Ev *INTERNAL* " demangled="gsm_mncc_ssversion::~gsm_mncc_ssversion()" location="f3:136" file="f3" line="136" endline="136" inline="1">
  </Destructor>
  <OperatorMethod id="_399" name="=" returns="_518" artificial="1" throw="" context="_87" access="public" mangled="_ZN18gsm_mncc_ssversionaSERKS_" demangled="gsm_mncc_ssversion::operator=(gsm_mncc_ssversion const&amp;)" location="f3:136" file="f3" line="136" endline="136" inline="1">
    <Argument type="_519" location="f3:136" file="f3" line="136"/>
  </OperatorMethod>
  <Constructor id="_400" name="gsm_mncc_ssversion" artificial="1" throw="" context="_87" access="public" mangled="_ZN18gsm_mncc_ssversionC1ERKS_ *INTERNAL* " demangled="gsm_mncc_ssversion::gsm_mncc_ssversion(gsm_mncc_ssversion const&amp;)" location="f3:136" file="f3" line="136" endline="136" inline="1">
    <Argument type="_519" location="f3:136" file="f3" line="136"/>
  </Constructor>
  <Constructor id="_401" name="gsm_mncc_ssversion" artificial="1" throw="" context="_87" access="public" mangled="_ZN18gsm_mncc_ssversionC1Ev *INTERNAL* " demangled="gsm_mncc_ssversion::gsm_mncc_ssversion()" location="f3:136" file="f3" line="136" inline="1"/>
  <PointerType id="_402" type="_394c" size="64" align="64"/>
  <PointerType id="_403" type="_93" size="64" align="64"/>
  <CvQualifiedType id="_147c" type="_147" const="1"/>
  <Field id="_405" name="coding" type="_93" offset="0" context="_132" access="public" location="f3:126" file="f3" line="126"/>
  <Field id="_406" name="location" type="_93" offset="32" context="_132" access="public" location="f3:127" file="f3" line="127"/>
  <Field id="_407" name="descr" type="_93" offset="64" context="_132" access="public" location="f3:128" file="f3" line="128"/>
  <Destructor id="_408" name="gsm_mncc_progress" artificial="1" throw="" context="_132" access="public" mangled="_ZN17gsm_mncc_progressD1Ev *INTERNAL* " demangled="gsm_mncc_progress::~gsm_mncc_progress()" location="f3:125" file="f3" line="125" endline="125" inline="1">
  </Destructor>
  <OperatorMethod id="_409" name="=" returns="_521" artificial="1" throw="" context="_132" access="public" mangled="_ZN17gsm_mncc_progressaSERKS_" demangled="gsm_mncc_progress::operator=(gsm_mncc_progress const&amp;)" location="f3:125" file="f3" line="125" endline="125" inline="1">
    <Argument type="_522" location="f3:125" file="f3" line="125"/>
  </OperatorMethod>
  <Constructor id="_410" name="gsm_mncc_progress" artificial="1" throw="" context="_132" access="public" mangled="_ZN17gsm_mncc_progressC1ERKS_ *INTERNAL* " demangled="gsm_mncc_progress::gsm_mncc_progress(gsm_mncc_progress const&amp;)" location="f3:125" file="f3" line="125" endline="125" inline="1">
    <Argument type="_522" location="f3:125" file="f3" line="125"/>
  </Constructor>
  <Constructor id="_411" name="gsm_mncc_progress" artificial="1" throw="" context="_132" access="public" mangled="_ZN17gsm_mncc_progressC1Ev *INTERNAL* " demangled="gsm_mncc_progress::gsm_mncc_progress()" location="f3:125" file="f3" line="125" inline="1"/>
  <Field id="_412" name="location" type="_93" offset="0" context="_133" access="public" location="f3:111" file="f3" line="111"/>
  <Field id="_413" name="coding" type="_93" offset="32" context="_133" access="public" location="f3:112" file="f3" line="112"/>
  <Field id="_414" name="rec" type="_93" offset="64" context="_133" access="public" location="f3:113" file="f3" line="113"/>
  <Field id="_415" name="rec_val" type="_93" offset="96" context="_133" access="public" location="f3:114" file="f3" line="114"/>
  <Field id="_416" name="value" type="_93" offset="128" context="_133" access="public" location="f3:115" file="f3" line="115"/>
  <Field id="_417" name="diag_len" type="_93" offset="160" context="_133" access="public" location="f3:116" file="f3" line="116"/>
  <Field id="_418" name="diag" type="_523" offset="192" context="_133" access="public" location="f3:117" file="f3" line="117"/>
  <Destructor id="_419" name="gsm_mncc_cause" artificial="1" throw="" context="_133" access="public" mangled="_ZN14gsm_mncc_causeD1Ev *INTERNAL* " demangled="gsm_mncc_cause::~gsm_mncc_cause()" location="f3:110" file="f3" line="110" endline="110" inline="1">
  </Destructor>
  <OperatorMethod id="_420" name="=" returns="_524" artificial="1" throw="" context="_133" access="public" mangled="_ZN14gsm_mncc_causeaSERKS_" demangled="gsm_mncc_cause::operator=(gsm_mncc_cause const&amp;)" location="f3:110" file="f3" line="110" endline="110" inline="1">
    <Argument type="_525" location="f3:110" file="f3" line="110"/>
  </OperatorMethod>
  <Constructor id="_421" name="gsm_mncc_cause" artificial="1" throw="" context="_133" access="public" mangled="_ZN14gsm_mncc_causeC1ERKS_ *INTERNAL* " demangled="gsm_mncc_cause::gsm_mncc_cause(gsm_mncc_cause const&amp;)" location="f3:110" file="f3" line="110" endline="110" inline="1">
    <Argument type="_525" location="f3:110" file="f3" line="110"/>
  </Constructor>
  <Constructor id="_422" name="gsm_mncc_cause" artificial="1" throw="" context="_133" access="public" mangled="_ZN14gsm_mncc_causeC1Ev *INTERNAL* " demangled="gsm_mncc_cause::gsm_mncc_cause()" location="f3:110" file="f3" line="110" inline="1"/>
  <PointerType id="_423" type="_366" size="64" align="64"/>
  <PointerType id="_424" type="_367" size="64" align="64"/>
  <Field id="_425" name="msg_type" type="_148" offset="0" context="_226" access="public" location="f3:302" file="f3" line="302"/>
  <Field id="_426" name="callref" type="_526" offset="32" context="_226" access="public" location="f3:303" file="f3" line="303"/>
  <Destructor id="_427" name="gsm_mncc_bridge" artificial="1" throw="" context="_226" access="public" mangled="_ZN15gsm_mncc_bridgeD1Ev *INTERNAL* " demangled="gsm_mncc_bridge::~gsm_mncc_bridge()" location="f3:301" file="f3" line="301" endline="301" inline="1">
  </Destructor>
  <OperatorMethod id="_428" name="=" returns="_527" artificial="1" throw="" context="_226" access="public" mangled="_ZN15gsm_mncc_bridgeaSERKS_" demangled="gsm_mncc_bridge::operator=(gsm_mncc_bridge const&amp;)" location="f3:301" file="f3" line="301" endline="301" inline="1">
    <Argument type="_528" location="f3:301" file="f3" line="301"/>
  </OperatorMethod>
  <Constructor id="_429" name="gsm_mncc_bridge" artificial="1" throw="" context="_226" access="public" mangled="_ZN15gsm_mncc_bridgeC1ERKS_ *INTERNAL* " demangled="gsm_mncc_bridge::gsm_mncc_bridge(gsm_mncc_bridge const&amp;)" location="f3:301" file="f3" line="301" endline="301" inline="1">
    <Argument type="_528" location="f3:301" file="f3" line="301"/>
  </Constructor>
  <Constructor id="_430" name="gsm_mncc_bridge" artificial="1" throw="" context="_226" access="public" mangled="_ZN15gsm_mncc_bridgeC1Ev *INTERNAL* " demangled="gsm_mncc_bridge::gsm_mncc_bridge()" location="f3:301" file="f3" line="301" inline="1"/>
  <Field id="_431" name="proto" type="_93" offset="0" context="_232" access="public" location="f3:121" file="f3" line="121"/>
  <Field id="_432" name="info" type="_529" offset="32" context="_232" access="public" location="f3:122" file="f3" line="122"/>
  <Destructor id="_433" name="gsm_mncc_useruser" artificial="1" throw="" context="_232" access="public" mangled="_ZN17gsm_mncc_useruserD1Ev *INTERNAL* " demangled="gsm_mncc_useruser::~gsm_mncc_useruser()" location="f3:120" file="f3" line="120" endline="120" inline="1">
  </Destructor>
  <OperatorMethod id="_434" name="=" returns="_530" artificial="1" throw="" context="_232" access="public" mangled="_ZN17gsm_mncc_useruseraSERKS_" demangled="gsm_mncc_useruser::operator=(gsm_mncc_useruser const&amp;)" location="f3:120" file="f3" line="120" endline="120" inline="1">
    <Argument type="_531" location="f3:120" file="f3" line="120"/>
  </OperatorMethod>
  <Constructor id="_435" name="gsm_mncc_useruser" artificial="1" throw="" context="_232" access="public" mangled="_ZN17gsm_mncc_useruserC1ERKS_ *INTERNAL* " demangled="gsm_mncc_useruser::gsm_mncc_useruser(gsm_mncc_useruser const&amp;)" location="f3:120" file="f3" line="120" endline="120" inline="1">
    <Argument type="_531" location="f3:120" file="f3" line="120"/>
  </Constructor>
  <Constructor id="_436" name="gsm_mncc_useruser" artificial="1" throw="" context="_232" access="public" mangled="_ZN17gsm_mncc_useruserC1Ev *INTERNAL* " demangled="gsm_mncc_useruser::gsm_mncc_useruser()" location="f3:120" file="f3" line="120" inline="1"/>
  <Field id="_437" name="transfer" type="_93" offset="0" context="_238" access="public" location="f3:82" file="f3" line="82"/>
  <Field id="_438" name="mode" type="_93" offset="32" context="_238" access="public" location="f3:83" file="f3" line="83"/>
  <Field id="_439" name="coding" type="_93" offset="64" context="_238" access="public" location="f3:84" file="f3" line="84"/>
  <Field id="_440" name="radio" type="_93" offset="96" context="_238" access="public" location="f3:85" file="f3" line="85"/>
  <Field id="_441" name="speech_ctm" type="_93" offset="128" context="_238" access="public" location="f3:86" file="f3" line="86"/>
  <Field id="_442" name="speech_ver" type="_532" offset="160" context="_238" access="public" location="f3:87" file="f3" line="87"/>
  <Field id="_443" name="data" type="_444" offset="416" context="_238" access="public" location="f3:99" file="f3" line="99"/>
  <Struct id="_444" context="_238" access="public" mangled="N19gsm_mncc_bearer_cap3._0E" demangled="gsm_mncc_bearer_cap::._0" location="f3:88" file="f3" line="88" artificial="1" size="320" align="32" members="_533 _534 _535 _536 _537 _538 _539 _540 _541 _542 _543 _544 _545 _546 " bases=""/>
  <Destructor id="_445" name="gsm_mncc_bearer_cap" artificial="1" throw="" context="_238" access="public" mangled="_ZN19gsm_mncc_bearer_capD1Ev *INTERNAL* " demangled="gsm_mncc_bearer_cap::~gsm_mncc_bearer_cap()" location="f3:81" file="f3" line="81" endline="81" inline="1">
  </Destructor>
  <OperatorMethod id="_446" name="=" returns="_547" artificial="1" throw="" context="_238" access="public" mangled="_ZN19gsm_mncc_bearer_capaSERKS_" demangled="gsm_mncc_bearer_cap::operator=(gsm_mncc_bearer_cap const&amp;)" location="f3:81" file="f3" line="81" endline="81" inline="1">
    <Argument type="_548" location="f3:81" file="f3" line="81"/>
  </OperatorMethod>
  <Constructor id="_447" name="gsm_mncc_bearer_cap" artificial="1" throw="" context="_238" access="public" mangled="_ZN19gsm_mncc_bearer_capC1ERKS_ *INTERNAL* " demangled="gsm_mncc_bearer_cap::gsm_mncc_bearer_cap(gsm_mncc_bearer_cap const&amp;)" location="f3:81" file="f3" line="81" endline="81" inline="1">
    <Argument type="_548" location="f3:81" file="f3" line="81"/>
  </Constructor>
  <Constructor id="_448" name="gsm_mncc_bearer_cap" artificial="1" throw="" context="_238" access="public" mangled="_ZN19gsm_mncc_bearer_capC1Ev *INTERNAL* " demangled="gsm_mncc_bearer_cap::gsm_mncc_bearer_cap()" location="f3:81" file="f3" line="81" inline="1"/>
  <Field id="_449" name="msg_type" type="_148" offset="0" context="_254" access="public" location="f3:293" file="f3" line="293"/>
  <Field id="_450" name="callref" type="_148" offset="32" context="_254" access="public" location="f3:294" file="f3" line="294"/>
  <Field id="_451" name="ip" type="_148" offset="64" context="_254" access="public" location="f3:295" file="f3" line="295"/>
  <Field id="_452" name="port" type="_262" offset="96" context="_254" access="public" location="f3:296" file="f3" line="296"/>
  <Field id="_453" name="payload_type" type="_148" offset="128" context="_254" access="public" location="f3:297" file="f3" line="297"/>
  <Field id="_454" name="payload_msg_type" type="_148" offset="160" context="_254" access="public" location="f3:298" file="f3" line="298"/>
  <Destructor id="_455" name="gsm_mncc_rtp" artificial="1" throw="" context="_254" access="public" mangled="_ZN12gsm_mncc_rtpD1Ev *INTERNAL* " demangled="gsm_mncc_rtp::~gsm_mncc_rtp()" location="f3:292" file="f3" line="292" endline="292" inline="1">
  </Destructor>
  <OperatorMethod id="_456" name="=" returns="_549" artificial="1" throw="" context="_254" access="public" mangled="_ZN12gsm_mncc_rtpaSERKS_" demangled="gsm_mncc_rtp::operator=(gsm_mncc_rtp const&amp;)" location="f3:292" file="f3" line="292" endline="292" inline="1">
    <Argument type="_550" location="f3:292" file="f3" line="292"/>
  </OperatorMethod>
  <Constructor id="_457" name="gsm_mncc_rtp" artificial="1" throw="" context="_254" access="public" mangled="_ZN12gsm_mncc_rtpC1ERKS_ *INTERNAL* " demangled="gsm_mncc_rtp::gsm_mncc_rtp(gsm_mncc_rtp const&amp;)" location="f3:292" file="f3" line="292" endline="292" inline="1">
    <Argument type="_550" location="f3:292" file="f3" line="292"/>
  </Constructor>
  <Constructor id="_458" name="gsm_mncc_rtp" artificial="1" throw="" context="_254" access="public" mangled="_ZN12gsm_mncc_rtpC1Ev *INTERNAL* " demangled="gsm_mncc_rtp::gsm_mncc_rtp()" location="f3:292" file="f3" line="292" inline="1"/>
  <Field id="_459" name="msg_type" type="_148" offset="0" context="_265" access="public" location="f3:235" file="f3" line="235"/>
  <Field id="_460" name="callref" type="_148" offset="32" context="_265" access="public" location="f3:236" file="f3" line="236"/>
  <Field id="_461" name="fields" type="_148" offset="64" context="_265" access="public" location="f3:239" file="f3" line="239"/>
  <Field id="_462" name="bearer_cap" type="_238" offset="96" context="_265" access="public" location="f3:242" file="f3" line="242"/>
  <Field id="_463" name="called" type="_347" offset="832" context="_265" access="public" location="f3:243" file="f3" line="243"/>
  <Field id="_464" name="calling" type="_347" offset="1248" context="_265" access="public" location="f3:244" file="f3" line="244"/>
  <Field id="_465" name="redirecting" type="_347" offset="1664" context="_265" access="public" location="f3:245" file="f3" line="245"/>
  <Field id="_466" name="connected" type="_347" offset="2080" context="_265" access="public" location="f3:246" file="f3" line="246"/>
  <Field id="_467" name="cause" type="_133" offset="2496" context="_265" access="public" location="f3:247" file="f3" line="247"/>
  <Field id="_468" name="progress" type="_132" offset="2944" context="_265" access="public" location="f3:248" file="f3" line="248"/>
  <Field id="_469" name="useruser" type="_232" offset="3040" context="_265" access="public" location="f3:249" file="f3" line="249"/>
  <Field id="_470" name="facility" type="_60" offset="4128" context="_265" access="public" location="f3:250" file="f3" line="250"/>
  <Field id="_471" name="cccap" type="_27" offset="5184" context="_265" access="public" location="f3:251" file="f3" line="251"/>
  <Field id="_472" name="ssversion" type="_87" offset="5248" context="_265" access="public" location="f3:252" file="f3" line="252"/>
  <Field id="_473" name="clir" type="_482" offset="6304" context="_265" access="public" location="f3:256" file="f3" line="256"/>
  <Field id="_474" name="signal" type="_93" offset="6368" context="_265" access="public" location="f3:257" file="f3" line="257"/>
  <Field id="_475" name="keypad" type="_93" offset="6400" context="_265" access="public" location="f3:260" file="f3" line="260"/>
  <Field id="_476" name="more" type="_93" offset="6432" context="_265" access="public" location="f3:261" file="f3" line="261"/>
  <Field id="_477" name="notify" type="_93" offset="6464" context="_265" access="public" location="f3:262" file="f3" line="262"/>
  <Field id="_478" name="emergency" type="_93" offset="6496" context="_265" access="public" location="f3:263" file="f3" line="263"/>
  <Field id="_479" name="imsi" type="_551" offset="6528" context="_265" access="public" location="f3:264" file="f3" line="264"/>
  <Field id="_480" name="lchan_type" type="_272" offset="6656" context="_265" access="public" location="f3:266" file="f3" line="266"/>
  <Field id="_481" name="lchan_mode" type="_272" offset="6664" context="_265" access="public" location="f3:267" file="f3" line="267"/>
  <Struct id="_482" context="_265" access="public" mangled="N8gsm_mncc3._2E" demangled="gsm_mncc::._2" location="f3:253" file="f3" line="253" artificial="1" size="64" align="32" members="_552 _553 _554 _555 _556 _557 " bases=""/>
  <Destructor id="_483" name="gsm_mncc" artificial="1" throw="" context="_265" access="public" mangled="_ZN8gsm_mnccD1Ev *INTERNAL* " demangled="gsm_mncc::~gsm_mncc()" location="f3:233" file="f3" line="233" endline="233" inline="1">
  </Destructor>
  <OperatorMethod id="_484" name="=" returns="_558" artificial="1" throw="" context="_265" access="public" mangled="_ZN8gsm_mnccaSERKS_" demangled="gsm_mncc::operator=(gsm_mncc const&amp;)" location="f3:233" file="f3" line="233" endline="233" inline="1">
    <Argument type="_559" location="f3:233" file="f3" line="233"/>
  </OperatorMethod>
  <Constructor id="_485" name="gsm_mncc" artificial="1" throw="" context="_265" access="public" mangled="_ZN8gsm_mnccC1ERKS_ *INTERNAL* " demangled="gsm_mncc::gsm_mncc(gsm_mncc const&amp;)" location="f3:233" file="f3" line="233" endline="233" inline="1">
    <Argument type="_559" location="f3:233" file="f3" line="233"/>
  </Constructor>
  <Constructor id="_486" name="gsm_mncc" artificial="1" throw="" context="_265" access="public" mangled="_ZN8gsm_mnccC1Ev *INTERNAL* " demangled="gsm_mncc::gsm_mncc()" location="f3:233" file="f3" line="233" inline="1"/>
  <Field id="_487" name="msg_type" type="_148" offset="0" context="_327" access="public" location="f3:278" file="f3" line="278"/>
  <Field id="_488" name="version" type="_148" offset="32" context="_327" access="public" location="f3:279" file="f3" line="279"/>
  <Field id="_489" name="mncc_size" type="_148" offset="64" context="_327" access="public" location="f3:282" file="f3" line="282"/>
  <Field id="_490" name="data_frame_size" type="_148" offset="96" context="_327" access="public" location="f3:283" file="f3" line="283"/>
  <Field id="_491" name="called_offset" type="_148" offset="128" context="_327" access="public" location="f3:286" file="f3" line="286"/>
  <Field id="_492" name="signal_offset" type="_148" offset="160" context="_327" access="public" location="f3:287" file="f3" line="287"/>
  <Field id="_493" name="emergency_offset" type="_148" offset="192" context="_327" access="public" location="f3:288" file="f3" line="288"/>
  <Field id="_494" name="lchan_type_offset" type="_148" offset="224" context="_327" access="public" location="f3:289" file="f3" line="289"/>
  <Destructor id="_495" name="gsm_mncc_hello" artificial="1" throw="" context="_327" access="public" mangled="_ZN14gsm_mncc_helloD1Ev *INTERNAL* " demangled="gsm_mncc_hello::~gsm_mncc_hello()" location="f3:277" file="f3" line="277" endline="277" inline="1">
  </Destructor>
  <OperatorMethod id="_496" name="=" returns="_560" artificial="1" throw="" context="_327" access="public" mangled="_ZN14gsm_mncc_helloaSERKS_" demangled="gsm_mncc_hello::operator=(gsm_mncc_hello const&amp;)" location="f3:277" file="f3" line="277" endline="277" inline="1">
    <Argument type="_561" location="f3:277" file="f3" line="277"/>
  </OperatorMethod>
  <Constructor id="_497" name="gsm_mncc_hello" artificial="1" throw="" context="_327" access="public" mangled="_ZN14gsm_mncc_helloC1ERKS_ *INTERNAL* " demangled="gsm_mncc_hello::gsm_mncc_hello(gsm_mncc_hello const&amp;)" location="f3:277" file="f3" line="277" endline="277" inline="1">
    <Argument type="_561" location="f3:277" file="f3" line="277"/>
  </Constructor>
  <Constructor id="_498" name="gsm_mncc_hello" artificial="1" throw="" context="_327" access="public" mangled="_ZN14gsm_mncc_helloC1Ev *INTERNAL* " demangled="gsm_mncc_hello::gsm_mncc_hello()" location="f3:277" file="f3" line="277" inline="1"/>
  <Field id="_499" name="type" type="_93" offset="0" context="_347" access="public" location="f3:103" file="f3" line="103"/>
  <Field id="_500" name="plan" type="_93" offset="32" context="_347" access="public" location="f3:104" file="f3" line="104"/>
  <Field id="_501" name="present" type="_93" offset="64" context="_347" access="public" location="f3:105" file="f3" line="105"/>
  <Field id="_502" name="screen" type="_93" offset="96" context="_347" access="public" location="f3:106" file="f3" line="106"/>
  <Field id="_503" name="number" type="_562" offset="128" context="_347" access="public" location="f3:107" file="f3" line="107"/>
  <Destructor id="_504" name="gsm_mncc_number" artificial="1" throw="" context="_347" access="public" mangled="_ZN15gsm_mncc_numberD1Ev *INTERNAL* " demangled="gsm_mncc_number::~gsm_mncc_number()" location="f3:102" file="f3" line="102" endline="102" inline="1">
  </Destructor>
  <OperatorMethod id="_505" name="=" returns="_563" artificial="1" throw="" context="_347" access="public" mangled="_ZN15gsm_mncc_numberaSERKS_" demangled="gsm_mncc_number::operator=(gsm_mncc_number const&amp;)" location="f3:102" file="f3" line="102" endline="102" inline="1">
    <Argument type="_564" location="f3:102" file="f3" line="102"/>
  </OperatorMethod>
  <Constructor id="_506" name="gsm_mncc_number" artificial="1" throw="" context="_347" access="public" mangled="_ZN15gsm_mncc_numberC1ERKS_ *INTERNAL* " demangled="gsm_mncc_number::gsm_mncc_number(gsm_mncc_number const&amp;)" location="f3:102" file="f3" line="102" endline="102" inline="1">
    <Argument type="_564" location="f3:102" file="f3" line="102"/>
  </Constructor>
  <Constructor id="_507" name="gsm_mncc_number" artificial="1" throw="" context="_347" access="public" mangled="_ZN15gsm_mncc_numberC1Ev *INTERNAL* " demangled="gsm_mncc_number::gsm_mncc_number()" location="f3:102" file="f3" line="102" inline="1"/>
  <ReferenceType id="_510" type="_27" size="64" align="64"/>
  <ReferenceType id="_511" type="_27c" size="64" align="64"/>
  <ArrayType id="_512" min="0" max="127u" type="_508" size="1024" align="8"/>
  <ReferenceType id="_513" type="_60" size="64" align="64"/>
  <ReferenceType id="_514" type="_60c" size="64" align="64"/>
  <ArrayType id="_515" min="0" max="0xffffffffffffffffffffffffffffffffu" type="_272" size="0" align="8"/>
  <ReferenceType id="_516" type="_83" size="64" align="64"/>
  <ReferenceType id="_517" type="_83c" size="64" align="64"/>
  <ReferenceType id="_518" type="_87" size="64" align="64"/>
  <ReferenceType id="_519" type="_87c" size="64" align="64"/>
  <ReferenceType id="_521" type="_132" size="64" align="64"/>
  <ReferenceType id="_522" type="_132c" size="64" align="64"/>
  <ArrayType id="_523" min="0" max="31u" type="_508" size="256" align="8"/>
  <ReferenceType id="_524" type="_133" size="64" align="64"/>
  <ReferenceType id="_525" type="_133c" size="64" align="64"/>
  <ArrayType id="_526" min="0" max="1u" type="_148" size="64" align="32"/>
  <ReferenceType id="_527" type="_226" size="64" align="64"/>
  <ReferenceType id="_528" type="_226c" size="64" align="64"/>
  <ArrayType id="_529" min="0" max="128u" type="_508" size="1032" align="8"/>
  <ReferenceType id="_530" type="_232" size="64" align="64"/>
  <ReferenceType id="_531" type="_232c" size="64" align="64"/>
  <ArrayType id="_532" min="0" max="7u" type="_93" size="256" align="32"/>
  <Field id="_533" name="rate_adaption" type="_105" offset="0" context="_444" access="public" location="f3:89" file="f3" line="89"/>
  <Field id="_534" name="sig_access" type="_71" offset="32" context="_444" access="public" location="f3:90" file="f3" line="90"/>
  <Field id="_535" name="async" type="_93" offset="64" context="_444" access="public" location="f3:91" file="f3" line="91"/>
  <Field id="_536" name="nr_stop_bits" type="_93" offset="96" context="_444" access="public" location="f3:92" file="f3" line="92"/>
  <Field id="_537" name="nr_data_bits" type="_93" offset="128" context="_444" access="public" location="f3:93" file="f3" line="93"/>
  <Field id="_538" name="user_rate" type="_167" offset="160" context="_444" access="public" location="f3:94" file="f3" line="94"/>
  <Field id="_539" name="parity" type="_333" offset="192" context="_444" access="public" location="f3:95" file="f3" line="95"/>
  <Field id="_540" name="interm_rate" type="_299" offset="224" context="_444" access="public" location="f3:96" file="f3" line="96"/>
  <Field id="_541" name="transp" type="_141" offset="256" context="_444" access="public" location="f3:97" file="f3" line="97"/>
  <Field id="_542" name="modem_type" type="_153" offset="288" context="_444" access="public" location="f3:98" file="f3" line="98"/>
  <Destructor id="_543" name="._0" artificial="1" throw="" context="_444" access="public" mangled="_ZN19gsm_mncc_bearer_cap3._0D1Ev *INTERNAL* " demangled="gsm_mncc_bearer_cap::._0::~._0()" location="f3:88" file="f3" line="88" endline="88" inline="1">
  </Destructor>
  <OperatorMethod id="_544" name="=" returns="_573" artificial="1" throw="" context="_444" access="public" mangled="_ZN19gsm_mncc_bearer_cap3._0aSERKS0_" demangled="gsm_mncc_bearer_cap::._0::operator=(gsm_mncc_bearer_cap::._0 const&amp;)" location="f3:88" file="f3" line="88" endline="88" inline="1">
    <Argument type="_574" location="f3:88" file="f3" line="88"/>
  </OperatorMethod>
  <Constructor id="_545" artificial="1" throw="" context="_444" access="public" mangled="_ZN19gsm_mncc_bearer_cap3._0C1ERKS0_ *INTERNAL* " demangled="gsm_mncc_bearer_cap::._0::._0(gsm_mncc_bearer_cap::._0 const&amp;)" location="f3:88" file="f3" line="88" endline="88" inline="1">
    <Argument type="_574" location="f3:88" file="f3" line="88"/>
  </Constructor>
  <Constructor id="_546" artificial="1" throw="" context="_444" access="public" mangled="_ZN19gsm_mncc_bearer_cap3._0C1Ev *INTERNAL* " demangled="gsm_mncc_bearer_cap::._0::._0()" location="f3:88" file="f3" line="88" inline="1"/>
  <ReferenceType id="_547" type="_238" size="64" align="64"/>
  <ReferenceType id="_548" type="_238c" size="64" align="64"/>
  <ReferenceType id="_549" type="_254" size="64" align="64"/>
  <ReferenceType id="_550" type="_254c" size="64" align="64"/>
  <ArrayType id="_551" min="0" max="15u" type="_508" size="128" align="8"/>
  <Field id="_552" name="sup" type="_93" offset="0" context="_482" access="public" location="f3:254" file="f3" line="254"/>
  <Field id="_553" name="inv" type="_93" offset="32" context="_482" access="public" location="f3:255" file="f3" line="255"/>
  <Destructor id="_554" name="._2" artificial="1" throw="" context="_482" access="public" mangled="_ZN8gsm_mncc3._2D1Ev *INTERNAL* " demangled="gsm_mncc::._2::~._2()" location="f3:253" file="f3" line="253" endline="253" inline="1">
  </Destructor>
  <OperatorMethod id="_555" name="=" returns="_577" artificial="1" throw="" context="_482" access="public" mangled="_ZN8gsm_mncc3._2aSERKS0_" demangled="gsm_mncc::._2::operator=(gsm_mncc::._2 const&amp;)" location="f3:253" file="f3" line="253" endline="253" inline="1">
    <Argument type="_578" location="f3:253" file="f3" line="253"/>
  </OperatorMethod>
  <Constructor id="_556" artificial="1" throw="" context="_482" access="public" mangled="_ZN8gsm_mncc3._2C1ERKS0_ *INTERNAL* " demangled="gsm_mncc::._2::._2(gsm_mncc::._2 const&amp;)" location="f3:253" file="f3" line="253" endline="253" inline="1">
    <Argument type="_578" location="f3:253" file="f3" line="253"/>
  </Constructor>
  <Constructor id="_557" artificial="1" throw="" context="_482" access="public" mangled="_ZN8gsm_mncc3._2C1Ev *INTERNAL* " demangled="gsm_mncc::._2::._2()" location="f3:253" file="f3" line="253" inline="1"/>
  <ReferenceType id="_558" type="_265" size="64" align="64"/>
  <ReferenceType id="_559" type="_265c" size="64" align="64"/>
  <ReferenceType id="_560" type="_327" size="64" align="64"/>
  <ReferenceType id="_561" type="_327c" size="64" align="64"/>
  <ArrayType id="_562" min="0" max="32u" type="_508" size="264" align="8"/>
  <ReferenceType id="_563" type="_347" size="64" align="64"/>
  <ReferenceType id="_564" type="_347c" size="64" align="64"/>
  <FundamentalType id="_508" name="char" size="8" align="8"/>
  <ReferenceType id="_573" type="_444" size="64" align="64"/>
  <ReferenceType id="_574" type="_444c" size="64" align="64"/>
  <ReferenceType id="_577" type="_482" size="64" align="64"/>
  <ReferenceType id="_578" type="_482c" size="64" align="64"/>
  <CvQualifiedType id="_508c" type="_508" const="1"/>
  <CvQualifiedType id="_394c" type="_394" const="1"/>
  <CvQualifiedType id="_444c" type="_444" const="1"/>
  <CvQualifiedType id="_238c" type="_238" const="1"/>
  <CvQualifiedType id="_347c" type="_347" const="1"/>
  <CvQualifiedType id="_133c" type="_133" const="1"/>
  <CvQualifiedType id="_232c" type="_232" const="1"/>
  <CvQualifiedType id="_132c" type="_132" const="1"/>
  <CvQualifiedType id="_60c" type="_60" const="1"/>
  <CvQualifiedType id="_87c" type="_87" const="1"/>
  <CvQualifiedType id="_27c" type="_27" const="1"/>
  <CvQualifiedType id="_482c" type="_482" const="1"/>
  <CvQualifiedType id="_265c" type="_265" const="1"/>
  <CvQualifiedType id="_83c" type="_83" const="1"/>
  <CvQualifiedType id="_327c" type="_327" const="1"/>
  <CvQualifiedType id="_254c" type="_254" const="1"/>
  <CvQualifiedType id="_226c" type="_226" const="1"/>
  <File id="f0" name="/usr/share/gccxml-0.9/GCC/4.9/gccxml_builtins.h"/>
  <File id="f1" name="/tmp/tmpkc59SI.cpp"/>
  <File id="f2" name="/usr/include/stdint.h"/>
  <File id="f3" name="/tmp/./mncc.h"/>
  <CPP_DUMP name="functions"><![CDATA[INT16_C(c) c
INT32_C(c) c
INT64_C(c) c ## L
INT8_C(c) c
INTMAX_C(c) c ## L
UINT16_C(c) c
UINT32_C(c) c ## U
UINT64_C(c) c ## UL
UINT8_C(c) c
UINTMAX_C(c) c ## UL
__ASMNAME(cname) __ASMNAME2 (__USER_LABEL_PREFIX__, cname)
__ASMNAME2(prefix,cname) __STRING (prefix) cname
__CONCAT(x,y) x ## y
__GLIBC_PREREQ(maj,min) ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
__GNUC_PREREQ(maj,min) ((__GNUC__ << 16) + __GNUC_MINOR__ >= ((maj) << 16) + (min))
__LDBL_REDIR(name,proto) name proto
__LDBL_REDIR1(name,proto,alias) name proto
__LDBL_REDIR1_NTH(name,proto,alias) name proto __THROW
__LDBL_REDIR_NTH(name,proto) name proto __THROW
__NTH(fct) __LEAF_ATTR fct throw ()
__P(args) args
__PMT(args) args
__REDIRECT(name,proto,alias) name proto __asm__ (__ASMNAME (#alias))
__REDIRECT_LDBL(name,proto,alias) __REDIRECT (name, proto, alias)
__REDIRECT_NTH(name,proto,alias) name proto __THROW __asm__ (__ASMNAME (#alias))
__REDIRECT_NTHNL(name,proto,alias) name proto __THROWNL __asm__ (__ASMNAME (#alias))
__REDIRECT_NTH_LDBL(name,proto,alias) __REDIRECT_NTH (name, proto, alias)
__STRING(x) #x
__attribute_alloc_size__(params) __attribute__ ((__alloc_size__ params))
__attribute_format_arg__(x) __attribute__ ((__format_arg__ (x)))
__attribute_format_strfmon__(a,b) __attribute__ ((__format__ (__strfmon__, a, b)))
__bos(ptr) __builtin_object_size (ptr, __USE_FORTIFY_LEVEL > 1)
__bos0(ptr) __builtin_object_size (ptr, 0)
__errordecl(name,msg) extern void name (void) __attribute__((__error__ (msg)))
__glibc_likely(cond) __builtin_expect ((cond), 1)
__glibc_unlikely(cond) __builtin_expect ((cond), 0)
__nonnull(params) __attribute__ ((__nonnull__ params))
__va_arg_pack() __builtin_va_arg_pack ()
__va_arg_pack_len() __builtin_va_arg_pack_len ()
__warnattr(msg) __attribute__((__warning__ (msg)))
__warndecl(name,msg) extern void name (void) __attribute__((__warning__ (msg)))
]]></CPP_DUMP>
  <CPP_DUMP name="aliases"><![CDATA[WCHAR_MAX __WCHAR_MAX
WCHAR_MIN __WCHAR_MIN
__WCHAR_MAX __WCHAR_MAX__
__WCHAR_MIN __WCHAR_MIN__
__wur __attribute_warn_unused_result__
]]></CPP_DUMP>
  <CPP_DUMP name="excluded"><![CDATA[__BEGIN_DECLS extern "C" {
__END_DECLS }
]]></CPP_DUMP>
</GCC_XML>