blob: f82ed9c7292e9f45ce18eaaf9e413c03fe066e51 (
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
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
|
LIBRARY "libtox"
EXPORTS
Assoc_add_entry @1
Assoc_get_close_entries @2
Assoc_self_client_id_changed @3
DHT_addfriend @4
DHT_bootstrap @5
DHT_bootstrap_from_address @6
DHT_connect_after_load @7
DHT_delfriend @8
DHT_get_shared_key_recv @9
DHT_get_shared_key_sent @10
DHT_getfriendip @11
DHT_getnodes @12
DHT_isconnected @13
DHT_load @14
DHT_non_lan_connected @15
DHT_save @16
DHT_size @17
LAN_ip @18
LANdiscovery_init @19
PBKDF2_SHA256 @20
VP8_UVSSE @21
__pth_gpointer_locked @22
__pthread_clock_nanosleep @23
__pthread_shallcancel @24
__xl_f @25
_celt_autocorr @26
_celt_lpc @27
_pthread_cleanup_dest @28
_pthread_get_state @29
_pthread_invoke_cancel @30
_pthread_key_dest @31
_pthread_rel_time_in_ms @32
_pthread_set_state @33
_pthread_setnobreak @34
_pthread_time_in_ms @35
_pthread_time_in_ms_from_timespec @36
_pthread_tryjoin @37
_sodium_alloc_init @38
accept_crypto_connection @39
add_ext_header @40
add_groupchat @41
add_header @42
add_tcp_relay @43
add_tcp_relay_peer @44
add_to_ping @45
addr_parse_ip @46
addr_resolve @47
addr_resolve_or_parse_ip @48
addto_lists @49
alg_quant @50
alg_unquant @51
alloc_region @52
amp2Log2 @53
anti_collapse @54
at_startup_ran @55
av_DefaultSettings @56
av_VADd @57
av_jbufdc @58
bs_list_add @59
bs_list_find @60
bs_list_free @61
bs_list_init @62
bs_list_remove @63
bs_list_trim @64
build_header @65
callback_file_control @66
callback_file_data @67
callback_file_sendrequest @68
callback_friendrequest @69
celt_decode_with_ec @70
celt_decoder_get_size @71
celt_decoder_init @72
celt_encode_with_ec @73
celt_encoder_get_size @74
celt_encoder_init @75
celt_fir @76
celt_iir @77
celt_lcg_rand @78
celt_pitch_xcorr_c @79
celt_preemphasis @80
check_control_input @81
check_fragments_for_errors @82
check_late_message @83
closelist_nodes @84
clt_mdct_backward @85
clt_mdct_forward @86
codec_init_session @87
codec_terminate_session @88
comb_filter @89
compute_allocation @90
compute_band_energies @91
compute_frame_size @92
compute_stereo_width @93
cond_print @94
cond_print_set @95
connection_data_handler @96
connection_lossy_data_handler @97
connection_status_handler @98
copy_connected_tcp_relays @99
copy_friendlist @100
count_friendlist @101
create_announce_request @102
create_data_request @103
create_onion_packet @104
create_onion_packet_tcp @105
create_onion_path @106
create_queue @107
create_request @108
crypto_auth_hmacsha256 @109
crypto_auth_hmacsha256_final @110
crypto_auth_hmacsha256_init @111
crypto_auth_hmacsha256_update @112
crypto_box @113
crypto_box_afternm @114
crypto_box_beforenm @115
crypto_box_beforenmbytes @116
crypto_box_boxzerobytes @117
crypto_box_curve25519xsalsa20poly1305 @118
crypto_box_curve25519xsalsa20poly1305_afternm @119
crypto_box_curve25519xsalsa20poly1305_beforenm @120
crypto_box_curve25519xsalsa20poly1305_keypair @121
crypto_box_curve25519xsalsa20poly1305_open @122
crypto_box_curve25519xsalsa20poly1305_open_afternm @123
crypto_box_curve25519xsalsa20poly1305_seed_keypair @124
crypto_box_keypair @125
crypto_box_macbytes @126
crypto_box_noncebytes @127
crypto_box_open @128
crypto_box_open_afternm @129
crypto_box_primitive @130
crypto_box_publickeybytes @131
crypto_box_secretkeybytes @132
crypto_box_seed_keypair @133
crypto_box_seedbytes @134
crypto_box_zerobytes @135
crypto_cmp @136
crypto_connection_status @137
crypto_core_hsalsa20 @138
crypto_core_salsa20 @139
crypto_hash_sha256 @140
crypto_hash_sha256_final @141
crypto_hash_sha256_init @142
crypto_hash_sha256_update @143
crypto_hash_sha512 @144
crypto_hash_sha512_final @145
crypto_hash_sha512_init @146
crypto_hash_sha512_update @147
crypto_kill @148
crypto_num_free_sendqueue_slots @149
crypto_onetimeauth_pick_best_implementation @150
crypto_onetimeauth_poly1305 @151
crypto_onetimeauth_poly1305_donna @152
crypto_onetimeauth_poly1305_donna_final @153
crypto_onetimeauth_poly1305_donna_implementation @154
crypto_onetimeauth_poly1305_donna_implementation_name @155
crypto_onetimeauth_poly1305_donna_init @156
crypto_onetimeauth_poly1305_donna_update @157
crypto_onetimeauth_poly1305_donna_verify @158
crypto_onetimeauth_poly1305_final @159
crypto_onetimeauth_poly1305_implementation_name @160
crypto_onetimeauth_poly1305_init @161
crypto_onetimeauth_poly1305_set_implementation @162
crypto_onetimeauth_poly1305_update @163
crypto_onetimeauth_poly1305_verify @164
crypto_pwhash_scryptsalsa208sha256 @165
crypto_pwhash_scryptsalsa208sha256_ll @166
crypto_pwhash_scryptsalsa208sha256_memlimit_interactive @167
crypto_pwhash_scryptsalsa208sha256_memlimit_sensitive @168
crypto_pwhash_scryptsalsa208sha256_opslimit_interactive @169
crypto_pwhash_scryptsalsa208sha256_opslimit_sensitive @170
crypto_pwhash_scryptsalsa208sha256_saltbytes @171
crypto_pwhash_scryptsalsa208sha256_str @172
crypto_pwhash_scryptsalsa208sha256_str_verify @173
crypto_pwhash_scryptsalsa208sha256_strbytes @174
crypto_pwhash_scryptsalsa208sha256_strprefix @175
crypto_run_interval @176
crypto_scalarmult_curve25519 @177
crypto_scalarmult_curve25519_base @178
crypto_secretbox_xsalsa20poly1305 @179
crypto_secretbox_xsalsa20poly1305_open @180
crypto_stream_salsa20 @181
crypto_stream_salsa20_keybytes @182
crypto_stream_salsa20_noncebytes @183
crypto_stream_salsa20_xor @184
crypto_stream_salsa20_xor_ic @185
crypto_stream_xsalsa20 @186
crypto_stream_xsalsa20_xor @187
crypto_verify_16 @188
crypto_verify_32 @189
cryptopacket_registerhandler @190
cryptpacket_received @191
current_time_monotonic @192
custom_lossless_packet_registerhandler @193
custom_lossy_packet_registerhandler @194
decode_pulses @195
decrypt_data @196
decrypt_data_symmetric @197
del_groupchat @198
denormalise_bands @199
dequeue @200
do_Assoc @201
do_DHT @202
do_TCP_connection @203
do_TCP_server @204
do_friend_connections @205
do_friends @206
do_groupchats @207
do_hardening @208
do_messenger @209
do_net_crypto @210
do_onion_client @211
do_sema_b_wait_intern @212
do_to_ping @213
downmix_float @214
downmix_int @215
eMeans @216
ec_dec_bit_logp @217
ec_dec_bits @218
ec_dec_icdf @219
ec_dec_init @220
ec_dec_uint @221
ec_dec_update @222
ec_decode @223
ec_decode_bin @224
ec_enc_bit_logp @225
ec_enc_bits @226
ec_enc_done @227
ec_enc_icdf @228
ec_enc_init @229
ec_enc_patch_initial_bits @230
ec_enc_shrink @231
ec_enc_uint @232
ec_encode @233
ec_encode_bin @234
ec_laplace_decode @235
ec_laplace_encode @236
ec_tell_frac @237
encode_pulses @238
encode_size @239
encrypt_data @240
encrypt_data_symmetric @241
encrypt_precompute @242
energy_VAD @243
escrypt_free_local @244
escrypt_gensalt_r @245
escrypt_init_local @246
escrypt_kdf_nosse @247
escrypt_kdf_sse @248
escrypt_r @249
extract_ext_header @250
extract_header @251
file_control @252
file_data @253
file_dataremaining @254
file_sendrequest @255
format_output @256
frame_size_select @257
free_region @258
friend_con_connected @259
friend_connection_callbacks @260
friend_connection_crypt_connection_id @261
friend_connection_lock @262
friend_ips @263
friendreq_init @264
g_callback_group_invite @265
g_callback_group_message @266
g_callback_group_namelistchange @267
get_close_nodes @268
get_connection_dht_key @269
get_friendcon_public_keys @270
get_nospam @271
get_num_online_friends @272
get_shared_key @273
getaddress @274
getclient_id @275
getfriend_conn_id_pk @276
getfriend_id @277
getfriendcon_id @278
getname @279
getself_name @280
group_message_send @281
group_names @282
group_new_peer_send @283
group_number_peers @284
group_peername @285
group_ping_send @286
haar1 @287
handle_request @288
host_to_net @289
hysteresis_decision @290
id_closest @291
id_copy @292
id_equal @293
increment_nonce @294
increment_nonce_number @295
init_audio_decoder @296
init_audio_encoder @297
init_caps @298
init_video_decoder @299
init_video_encoder @300
invite_friend @301
invoke_callback @302
ip_copy @303
ip_equal @304
ip_init @305
ip_isset @306
ip_ntoa @307
ip_pack @308
ip_reset @309
ip_unpack @310
ipport_copy @311
ipport_equal @312
ipport_isset @313
ipport_pack @314
ipport_unpack @315
is_timeout @316
isqrt32 @317
join_groupchat @318
kill_Assoc @319
kill_DHT @320
kill_TCP_connection @321
kill_TCP_server @322
kill_friend_connection @323
kill_friend_connections @324
kill_groupchats @325
kill_messenger @326
kill_net_crypto @327
kill_networking @328
kill_onion @329
kill_onion_announce @330
kill_onion_client @331
kill_ping @332
kill_sock @333
load_keys @334
load_state @335
m_addfriend @336
m_addfriend_norequest @337
m_avatar_hash @338
m_callback_action @339
m_callback_avatar_data @340
m_callback_avatar_info @341
m_callback_connectionstatus @342
m_callback_connectionstatus_internal_av @343
m_callback_friendmessage @344
m_callback_friendrequest @345
m_callback_group_invite @346
m_callback_msi_packet @347
m_callback_namechange @348
m_callback_read_receipt @349
m_callback_statusmessage @350
m_callback_typingchange @351
m_callback_userstatus @352
m_copy_self_statusmessage @353
m_copy_statusmessage @354
m_delfriend @355
m_friend_exists @356
m_get_friend_connectionstatus @357
m_get_istyping @358
m_get_last_online @359
m_get_name_size @360
m_get_self_avatar @361
m_get_self_name_size @362
m_get_self_statusmessage_size @363
m_get_self_userstatus @364
m_get_statusmessage_size @365
m_get_userstatus @366
m_hash @367
m_msi_packet @368
m_request_avatar_data @369
m_request_avatar_info @370
m_send_avatar_info @371
m_sendaction @372
m_sendaction_withid @373
m_sendmessage @374
m_sendmessage_withid @375
m_set_avatar @376
m_set_sends_receipts @377
m_set_statusmessage @378
m_set_userstatus @379
m_set_usertyping @380
m_unset_avatar @381
messenger_load @382
messenger_run_interval @383
messenger_save @384
messenger_size @385
mlp_process @386
msg_parse @387
msi_answer @388
msi_cancel @389
msi_change_csettings @390
msi_hangup @391
msi_init_session @392
msi_invite @393
msi_msg_get_csettings @394
msi_msg_set_callid @395
msi_msg_set_csettings @396
msi_msg_set_reason @397
msi_new_message @398
msi_register_callback @399
msi_reject @400
msi_stopcall @401
msi_terminate_session @402
mutex_print @403
mutex_print_set @404
nc_dht_pk_callback @405
net @406
networking_at_startup @407
networking_poll @408
networking_registerhandler @409
new_Assoc @410
new_Assoc_default @411
new_DHT @412
new_TCP_connection @413
new_TCP_server @414
new_connection_handler @415
new_crypto_connection @416
new_filesender @417
new_friend_connection @418
new_friend_connections @419
new_groupchats @420
new_keys @421
new_messenger @422
new_net_crypto @423
new_networking @424
new_nonce @425
new_onion @426
new_onion_announce @427
new_onion_client @428
new_ping @429
new_symmetric_key @430
normalise_bands @431
onion_add_path_node @432
onion_addfriend @433
onion_backup_nodes @434
onion_delfriend @435
onion_dht_pk_callback @436
onion_friend_num @437
onion_getfriend_DHT_pubkey @438
onion_getfriendip @439
onion_isconnected @440
onion_response_handler @441
onion_send_1 @442
onion_set_friend_DHT_pubkey @443
onion_set_friend_online @444
oniondata_registerhandler @445
oob_data_handler @446
optimize_framesize @447
opus_custom_decoder_ctl @448
opus_custom_encoder_ctl @449
opus_custom_mode_create @450
opus_decode @451
opus_decode_float @452
opus_decode_native @453
opus_decoder_create @454
opus_decoder_ctl @455
opus_decoder_destroy @456
opus_decoder_get_nb_samples @457
opus_decoder_get_size @458
opus_decoder_init @459
opus_encode @460
opus_encode_float @461
opus_encode_native @462
opus_encoder_create @463
opus_encoder_ctl @464
opus_encoder_destroy @465
opus_encoder_get_size @466
opus_encoder_init @467
opus_fft @468
opus_get_version_string @469
opus_ifft @470
opus_multistream_packet_pad @471
opus_multistream_packet_unpad @472
opus_packet_get_bandwidth @473
opus_packet_get_nb_channels @474
opus_packet_get_nb_frames @475
opus_packet_get_nb_samples @476
opus_packet_get_samples_per_frame @477
opus_packet_pad @478
opus_packet_parse @479
opus_packet_parse_impl @480
opus_packet_unpad @481
opus_pcm_soft_clip @482
opus_repacketizer_cat @483
opus_repacketizer_create @484
opus_repacketizer_destroy @485
opus_repacketizer_get_nb_frames @486
opus_repacketizer_get_size @487
opus_repacketizer_init @488
opus_repacketizer_out @489
opus_repacketizer_out_range @490
opus_repacketizer_out_range_impl @491
opus_strerror @492
pack_nodes @493
parse_recv @494
parse_send @495
patch_transient_decision @496
ping_array_add @497
ping_array_check @498
ping_array_free_all @499
ping_array_init @500
pitch_downsample @501
pitch_search @502
pthread_attr_destroy @503
pthread_attr_getdetachstate @504
pthread_attr_getinheritsched @505
pthread_attr_getscope @506
pthread_attr_getstackaddr @507
pthread_attr_getstacksize @508
pthread_attr_init @509
pthread_attr_setdetachstate @510
pthread_attr_setinheritsched @511
pthread_attr_setscope @512
pthread_attr_setstackaddr @513
pthread_attr_setstacksize @514
pthread_cancel @515
pthread_cond_broadcast @516
pthread_cond_destroy @517
pthread_cond_init @518
pthread_cond_signal @519
pthread_cond_timedwait @520
pthread_cond_timedwait_relative_np @521
pthread_cond_wait @522
pthread_condattr_destroy @523
pthread_condattr_getclock @524
pthread_condattr_getpshared @525
pthread_condattr_init @526
pthread_condattr_setclock @527
pthread_condattr_setpshared @528
pthread_create @529
pthread_create_wrapper @530
pthread_delay_np @531
pthread_delay_np_ms @532
pthread_detach @533
pthread_equal @534
pthread_exit @535
pthread_get_concurrency @536
pthread_getclean @537
pthread_getconcurrency @538
pthread_getevent @539
pthread_gethandle @540
pthread_getspecific @541
pthread_join @542
pthread_key_create @543
pthread_key_delete @544
pthread_kill @545
pthread_mutex_destroy @546
pthread_mutex_init @547
pthread_mutex_lock @548
pthread_mutex_timedlock @549
pthread_mutex_trylock @550
pthread_mutex_unlock @551
pthread_mutexattr_destroy @552
pthread_mutexattr_getprioceiling @553
pthread_mutexattr_getprotocol @554
pthread_mutexattr_getpshared @555
pthread_mutexattr_gettype @556
pthread_mutexattr_init @557
pthread_mutexattr_setprioceiling @558
pthread_mutexattr_setprotocol @559
pthread_mutexattr_setpshared @560
pthread_mutexattr_settype @561
pthread_num_processors_np @562
pthread_once @563
pthread_rwlock_destroy @564
pthread_rwlock_init @565
pthread_rwlock_rdlock @566
pthread_rwlock_timedrdlock @567
pthread_rwlock_timedwrlock @568
pthread_rwlock_tryrdlock @569
pthread_rwlock_trywrlock @570
pthread_rwlock_unlock @571
pthread_rwlock_wrlock @572
pthread_rwlockattr_destroy @573
pthread_rwlockattr_getpshared @574
pthread_rwlockattr_init @575
pthread_rwlockattr_setpshared @576
pthread_self @577
pthread_set_concurrency @578
pthread_set_num_processors_np @579
pthread_setcancelstate @580
pthread_setcanceltype @581
pthread_setconcurrency @582
pthread_setspecific @583
pthread_spin_destroy @584
pthread_spin_init @585
pthread_spin_lock @586
pthread_spin_trylock @587
pthread_spin_unlock @588
pthread_testcancel @589
pthread_timechange_handler_np @590
pthread_tls_init @591
public_key_valid @592
quant_all_bands @593
quant_coarse_energy @594
quant_energy_finalise @595
quant_fine_energy @596
queue @597
random_64b @598
random_int @599
random_node @600
random_nodes_path @601
random_nonce @602
randombytes @603
randombytes_buf @604
randombytes_close @605
randombytes_implementation_name @606
randombytes_random @607
randombytes_set_implementation @608
randombytes_stir @609
randombytes_sysrandom @610
randombytes_sysrandom_buf @611
randombytes_sysrandom_close @612
randombytes_sysrandom_implementation @613
randombytes_sysrandom_implementation_name @614
randombytes_sysrandom_stir @615
randombytes_sysrandom_uniform @616
randombytes_uniform @617
read_TCP_length @618
read_TCP_packet @619
read_packet_TCP_secure_connection @620
realloc_friendlist @621
reconfigure_video_encoder_bitrate @622
reconfigure_video_encoder_resolution @623
recv_tcp_relay_handler @624
remove_doubling @625
remove_request_received @626
renormalise_vector @627
resampling_factor @628
route_packet @629
route_tofriend @630
routing_data_handler @631
routing_response_handler @632
routing_status_handler @633
rtp_free_msg @634
rtp_handle_packet @635
rtp_init_session @636
rtp_new_message @637
rtp_send_msg @638
rtp_terminate_session @639
run_analysis @640
rwl_print @641
rwl_print_set @642
save_keys @643
send_LANdiscovery @644
send_announce_request @645
send_custom_lossless_packet @646
send_custom_lossy_packet @647
send_data @648
send_data_request @649
send_disconnect_request @650
send_friend_request_packet @651
send_group_invite_packet @652
send_lossy_cryptpacket @653
send_name_all_groups @654
send_onion_data @655
send_onion_packet @656
send_onion_request @657
send_onion_response @658
send_oob_packet @659
send_ping_request @660
send_reponse @661
send_routing_request @662
send_tcp_onion_request @663
sendpacket @664
set_callback_handle_recv_1 @665
set_connection_dht_public_key @666
set_dht_temp_pk @667
set_direct_ip_port @668
set_filter_function @669
set_friend_request_callback @670
set_nospam @671
set_socket_dualstack @672
set_socket_nonblock @673
set_socket_nosigpipe @674
set_tcp_connection_number @675
setfriendname @676
setname @677
silk_A2NLSF @678
silk_A2NLSF_FLP @679
silk_CB_lags_stage2 @680
silk_CB_lags_stage2_10_ms @681
silk_CB_lags_stage3 @682
silk_CB_lags_stage3_10_ms @683
silk_CNG @684
silk_CNG_Reset @685
silk_Decode @686
silk_Encode @687
silk_Get_Decoder_Size @688
silk_Get_Encoder_Size @689
silk_HP_variable_cutoff @690
silk_InitDecoder @691
silk_InitEncoder @692
silk_LBRR_flags_iCDF_ptr @693
silk_LPC_analysis_filter @694
silk_LPC_analysis_filter_FLP @695
silk_LPC_inverse_pred_gain @696
silk_LPC_inverse_pred_gain_FLP @697
silk_LP_variable_cutoff @698
silk_LSFCosTab_FIX_Q12 @699
silk_LTPScales_table_Q14 @700
silk_LTP_analysis_filter_FLP @701
silk_LTP_gain_BITS_Q5_ptrs @702
silk_LTP_gain_iCDF_ptrs @703
silk_LTP_gain_middle_avg_RD_Q14 @704
silk_LTP_per_index_iCDF @705
silk_LTP_scale_ctrl_FLP @706
silk_LTP_vq_gain_ptrs_Q7 @707
silk_LTP_vq_ptrs_Q7 @708
silk_LTP_vq_sizes @709
silk_LTPscale_iCDF @710
silk_Lag_range_stage3 @711
silk_Lag_range_stage3_10_ms @712
silk_NLSF2A @713
silk_NLSF2A_FLP @714
silk_NLSF_CB_NB_MB @715
silk_NLSF_CB_WB @716
silk_NLSF_EXT_iCDF @717
silk_NLSF_VQ @718
silk_NLSF_VQ_weights_laroia @719
silk_NLSF_decode @720
silk_NLSF_del_dec_quant @721
silk_NLSF_encode @722
silk_NLSF_interpolation_factor_iCDF @723
silk_NLSF_stabilize @724
silk_NLSF_unpack @725
silk_NSQ @726
silk_NSQ_del_dec @727
silk_NSQ_wrapper_FLP @728
silk_PLC @729
silk_PLC_Reset @730
silk_PLC_glue_frames @731
silk_Quantization_Offsets_Q10 @732
silk_Resampler_1_2_COEFS @733
silk_Resampler_1_3_COEFS @734
silk_Resampler_1_4_COEFS @735
silk_Resampler_1_6_COEFS @736
silk_Resampler_2_3_COEFS @737
silk_Resampler_2_3_COEFS_LQ @738
silk_Resampler_3_4_COEFS @739
silk_SNR_table_Q1 @740
silk_TargetRate_table_MB @741
silk_TargetRate_table_NB @742
silk_TargetRate_table_WB @743
silk_Transition_LP_A_Q28 @744
silk_Transition_LP_B_Q28 @745
silk_VAD_GetSA_Q8 @746
silk_VAD_Init @747
silk_VQ_WMat_EC @748
silk_ana_filt_bank_1 @749
silk_apply_sine_window_FLP @750
silk_autocorrelation_FLP @751
silk_biquad_alt @752
silk_burg_modified_FLP @753
silk_bwexpander @754
silk_bwexpander_32 @755
silk_bwexpander_FLP @756
silk_control_SNR @757
silk_control_audio_bandwidth @758
silk_control_encoder @759
silk_corrMatrix_FLP @760
silk_corrVector_FLP @761
silk_decode_core @762
silk_decode_frame @763
silk_decode_indices @764
silk_decode_parameters @765
silk_decode_pitch @766
silk_decode_pulses @767
silk_decode_signs @768
silk_decoder_set_fs @769
silk_delta_gain_iCDF @770
silk_encode_do_VAD_FLP @771
silk_encode_frame_FLP @772
silk_encode_indices @773
silk_encode_pulses @774
silk_encode_signs @775
silk_energy_FLP @776
silk_find_LPC_FLP @777
silk_find_LTP_FLP @778
silk_find_pitch_lags_FLP @779
silk_find_pred_coefs_FLP @780
silk_gain_iCDF @781
silk_gains_ID @782
silk_gains_dequant @783
silk_gains_quant @784
silk_init_decoder @785
silk_init_encoder @786
silk_inner_prod_aligned_scale @787
silk_inner_product_FLP @788
silk_insertion_sort_decreasing_FLP @789
silk_insertion_sort_increasing @790
silk_insertion_sort_increasing_all_values_int16 @791
silk_interpolate @792
silk_k2a_FLP @793
silk_levinsondurbin_FLP @794
silk_lin2log @795
silk_log2lin @796
silk_lsb_iCDF @797
silk_max_pulses_table @798
silk_nb_cbk_searchs_stage3 @799
silk_noise_shape_analysis_FLP @800
silk_pitch_analysis_core_FLP @801
silk_pitch_contour_10_ms_NB_iCDF @802
silk_pitch_contour_10_ms_iCDF @803
silk_pitch_contour_NB_iCDF @804
silk_pitch_contour_iCDF @805
silk_pitch_delta_iCDF @806
silk_pitch_lag_iCDF @807
silk_prefilter_FLP @808
silk_process_NLSFs @809
silk_process_NLSFs_FLP @810
silk_process_gains_FLP @811
silk_pulses_per_block_BITS_Q5 @812
silk_pulses_per_block_iCDF @813
silk_quant_LTP_gains @814
silk_quant_LTP_gains_FLP @815
silk_rate_levels_BITS_Q5 @816
silk_rate_levels_iCDF @817
silk_regularize_correlations_FLP @818
silk_resampler @819
silk_resampler_down2 @820
silk_resampler_down2_3 @821
silk_resampler_frac_FIR_12 @822
silk_resampler_init @823
silk_resampler_private_AR2 @824
silk_resampler_private_IIR_FIR @825
silk_resampler_private_down_FIR @826
silk_resampler_private_up2_HQ @827
silk_resampler_private_up2_HQ_wrapper @828
silk_residual_energy_FLP @829
silk_residual_energy_covar_FLP @830
silk_scale_copy_vector_FLP @831
silk_scale_vector_FLP @832
silk_schur_FLP @833
silk_shell_code_table0 @834
silk_shell_code_table1 @835
silk_shell_code_table2 @836
silk_shell_code_table3 @837
silk_shell_code_table_offsets @838
silk_shell_decoder @839
silk_shell_encoder @840
silk_sigm_Q15 @841
silk_sign_iCDF @842
silk_solve_LDL_FLP @843
silk_stereo_LR_to_MS @844
silk_stereo_MS_to_LR @845
silk_stereo_decode_mid_only @846
silk_stereo_decode_pred @847
silk_stereo_encode_mid_only @848
silk_stereo_encode_pred @849
silk_stereo_find_predictor @850
silk_stereo_only_code_mid_iCDF @851
silk_stereo_pred_joint_iCDF @852
silk_stereo_pred_quant_Q13 @853
silk_stereo_quant_pred @854
silk_sum_sqr_shift @855
silk_type_offset_VAD_iCDF @856
silk_type_offset_no_VAD_iCDF @857
silk_uniform3_iCDF @858
silk_uniform4_iCDF @859
silk_uniform5_iCDF @860
silk_uniform6_iCDF @861
silk_uniform8_iCDF @862
silk_warped_autocorrelation_FLP @863
sock_valid @864
sodium_allocarray @865
sodium_bin2hex @866
sodium_free @867
sodium_hex2bin @868
sodium_init @869
sodium_malloc @870
sodium_memcmp @871
sodium_memzero @872
sodium_mlock @873
sodium_mprotect_noaccess @874
sodium_mprotect_readonly @875
sodium_mprotect_readwrite @876
sodium_munlock @877
sodium_runtime_get_cpu_features @878
sodium_runtime_has_neon @879
sodium_runtime_has_sse2 @880
sodium_runtime_has_sse3 @881
spreading_decision @882
stereo_itheta @883
tcp_onion_response_handler @884
terminate_queue @885
tf_select_table @886
thread_print @887
thread_print_set @888
to_host_family @889
to_net_family @890
tonality_analysis @891
tonality_get_info @892
tox_add_friend @893
tox_add_friend_norequest @894
tox_add_groupchat @895
tox_add_tcp_relay @896
tox_bootstrap_from_address @897
tox_callback_avatar_data @898
tox_callback_avatar_info @899
tox_callback_connection_status @900
tox_callback_file_control @901
tox_callback_file_data @902
tox_callback_file_send_request @903
tox_callback_friend_action @904
tox_callback_friend_message @905
tox_callback_friend_request @906
tox_callback_group_action @907
tox_callback_group_invite @908
tox_callback_group_message @909
tox_callback_group_namelist_change @910
tox_callback_name_change @911
tox_callback_read_receipt @912
tox_callback_status_message @913
tox_callback_typing_change @914
tox_callback_user_status @915
tox_count_chatlist @916
tox_count_friendlist @917
tox_decrypt_dns3_TXT @918
tox_del_friend @919
tox_del_groupchat @920
tox_dns3_kill @921
tox_dns3_new @922
tox_do @923
tox_do_interval @924
tox_encrypted_load @925
tox_encrypted_save @926
tox_encrypted_size @927
tox_file_data_remaining @928
tox_file_data_size @929
tox_file_send_control @930
tox_file_send_data @931
tox_friend_exists @932
tox_generate_dns3_string @933
tox_get_address @934
tox_get_chatlist @935
tox_get_client_id @936
tox_get_friend_connection_status @937
tox_get_friend_number @938
tox_get_friendlist @939
tox_get_is_typing @940
tox_get_keys @941
tox_get_last_online @942
tox_get_name @943
tox_get_name_size @944
tox_get_nospam @945
tox_get_num_online_friends @946
tox_get_self_avatar @947
tox_get_self_name @948
tox_get_self_name_size @949
tox_get_self_status_message @950
tox_get_self_status_message_size @951
tox_get_self_user_status @952
tox_get_status_message @953
tox_get_status_message_size @954
tox_get_user_status @955
tox_group_action_send @956
tox_group_get_names @957
tox_group_message_send @958
tox_group_number_peers @959
tox_group_peername @960
tox_hash @961
tox_invite_friend @962
tox_is_data_encrypted @963
tox_isconnected @964
tox_join_groupchat @965
tox_kill @966
tox_load @967
tox_lossless_packet_registerhandler @968
tox_lossy_packet_registerhandler @969
tox_new @970
tox_new_file_sender @971
tox_request_avatar_data @972
tox_request_avatar_info @973
tox_save @974
tox_send_action @975
tox_send_avatar_info @976
tox_send_lossless_packet @977
tox_send_lossy_packet @978
tox_send_message @979
tox_set_avatar @980
tox_set_name @981
tox_set_nospam @982
tox_set_status_message @983
tox_set_user_is_typing @984
tox_set_user_status @985
tox_size @986
tox_unset_avatar @987
toxav_answer @988
toxav_call @989
toxav_cancel @990
toxav_capability_supported @991
toxav_change_settings @992
toxav_get_call_state @993
toxav_get_peer_csettings @994
toxav_get_peer_id @995
toxav_get_tox @996
toxav_handle_packet @997
toxav_hangup @998
toxav_has_activity @999
toxav_kill @1000
toxav_kill_transmission @1001
toxav_new @1002
toxav_prepare_audio_frame @1003
toxav_prepare_transmission @1004
toxav_prepare_video_frame @1005
toxav_register_audio_recv_callback @1006
toxav_register_callstate_callback @1007
toxav_register_video_recv_callback @1008
toxav_reject @1009
toxav_send_audio @1010
toxav_send_video @1011
toxav_stop_call @1012
unix_time @1013
unix_time_update @1014
unpack_nodes @1015
unquant_coarse_energy @1016
unquant_energy_finalise @1017
unquant_fine_energy @1018
vp8_ac2quant @1019
vp8_ac_uv_quant @1020
vp8_ac_yquant @1021
vp8_activity_masking @1022
vp8_adjust_key_frame_context @1023
vp8_alloc_compressor_data @1024
vp8_alloc_frame_buffers @1025
vp8_auto_select_speed @1026
vp8_bilinear_filters_x86_4 @1027
vp8_bilinear_filters_x86_8 @1028
vp8_bilinear_predict16x16 @1029
vp8_bilinear_predict16x16_mmx @1030
vp8_bilinear_predict16x16_sse2 @1031
vp8_bilinear_predict16x16_ssse3 @1032
vp8_bilinear_predict4x4_mmx @1033
vp8_bilinear_predict8x4_mmx @1034
vp8_bilinear_predict8x8 @1035
vp8_bilinear_predict8x8_mmx @1036
vp8_bilinear_predict8x8_sse2 @1037
vp8_bilinear_predict8x8_ssse3 @1038
vp8_bits_per_mb @1039
vp8_blend_b_c @1040
vp8_blend_mb_inner_c @1041
vp8_blend_mb_outer_c @1042
vp8_block2above @1043
vp8_block2left @1044
vp8_block_error_c @1045
vp8_block_error_mmx @1046
vp8_block_error_xmm @1047
vp8_bmode_encodings @1048
vp8_bmode_prob @1049
vp8_bmode_tree @1050
vp8_build_block_doffsets @1051
vp8_build_block_offsets @1052
vp8_build_component_cost_table @1053
vp8_build_inter16x16_predictors_mb @1054
vp8_build_inter16x16_predictors_mbuv @1055
vp8_build_inter16x16_predictors_mby @1056
vp8_build_inter4x4_predictors_mbuv @1057
vp8_build_inter_predictors_b @1058
vp8_build_inter_predictors_mb @1059
vp8_build_intra_predictors_mbuv_s @1060
vp8_build_intra_predictors_mbuv_s_sse2 @1061
vp8_build_intra_predictors_mbuv_s_ssse3 @1062
vp8_build_intra_predictors_mby_s @1063
vp8_build_intra_predictors_mby_s_sse2 @1064
vp8_build_intra_predictors_mby_s_ssse3 @1065
vp8_cal_sad @1066
vp8_calc_ref_frame_costs @1067
vp8_calc_ss_err @1068
vp8_change_config @1069
vp8_clear_system_state_c @1070
vp8_coef_bands @1071
vp8_coef_encodings @1072
vp8_coef_tree @1073
vp8_coef_update_probs @1074
vp8_compute_frame_size_bounds @1075
vp8_convert_rfct_to_prob @1076
vp8_copy32xn @1077
vp8_copy32xn_c @1078
vp8_copy32xn_sse2 @1079
vp8_copy32xn_sse3 @1080
vp8_copy_and_extend_frame @1081
vp8_copy_and_extend_frame_with_rect @1082
vp8_copy_mem16x16_c @1083
vp8_copy_mem16x16_mmx @1084
vp8_copy_mem16x16_sse2 @1085
vp8_copy_mem8x4_c @1086
vp8_copy_mem8x4_mmx @1087
vp8_copy_mem8x8_c @1088
vp8_copy_mem8x8_mmx @1089
vp8_cost_mv_ref @1090
vp8_cost_tokens @1091
vp8_cost_tokens2 @1092
vp8_create_common @1093
vp8_create_compressor @1094
vp8_create_decoder_instances @1095
vp8_ctf_maps @1096
vp8_dc2quant @1097
vp8_dc_only_idct_add_c @1098
vp8_dc_only_idct_add_mmx @1099
vp8_dc_quant @1100
vp8_dc_uv_quant @1101
vp8_dct_value_cost_ptr @1102
vp8_dct_value_tokens_ptr @1103
vp8_de_alloc_frame_buffers @1104
vp8_deblock @1105
vp8_decode_frame @1106
vp8_decode_mb_tokens @1107
vp8_decode_mode_mvs @1108
vp8_decoder_create_threads @1109
vp8_decoder_remove_threads @1110
vp8_default_bmode_probs @1111
vp8_default_coef_probs @1112
vp8_default_inv_zig_zag @1113
vp8_default_mv_context @1114
vp8_default_zig_zag1d @1115
vp8_default_zig_zag_mask @1116
vp8_denoiser_allocate @1117
vp8_denoiser_denoise_mb @1118
vp8_denoiser_filter_c @1119
vp8_denoiser_filter_sse2 @1120
vp8_denoiser_free @1121
vp8_dequant_idct_add_mmx @1122
vp8_dequant_idct_add_uv_block_mmx @1123
vp8_dequant_idct_add_uv_block_sse2 @1124
vp8_dequant_idct_add_y_block_mmx @1125
vp8_dequant_idct_add_y_block_sse2 @1126
vp8_dequantize_b_impl_mmx @1127
vp8_dequantize_b_mmx @1128
vp8_diamond_search_sad @1129
vp8_diamond_search_sad_c @1130
vp8_diamond_search_sadx4 @1131
vp8_encode_frame @1132
vp8_encode_inter16x16 @1133
vp8_encode_inter16x16y @1134
vp8_encode_intra @1135
vp8_encode_intra16x16mbuv @1136
vp8_encode_intra16x16mby @1137
vp8_encode_intra4x4block @1138
vp8_encode_intra4x4mby @1139
vp8_encode_motion_vector @1140
vp8_encode_value @1141
vp8_end_first_pass @1142
vp8_end_second_pass @1143
vp8_estimate_entropy_savings @1144
vp8_extend_mb_row @1145
vp8_extra_bits @1146
vp8_fast_quantize_b @1147
vp8_fast_quantize_b_c @1148
vp8_fast_quantize_b_pair_c @1149
vp8_fast_quantize_b_sse2 @1150
vp8_fast_quantize_b_ssse3 @1151
vp8_filter_block1d16_h6_only_sse2 @1152
vp8_filter_block1d16_h6_sse2 @1153
vp8_filter_block1d16_h6_ssse3 @1154
vp8_filter_block1d16_v6_sse2 @1155
vp8_filter_block1d16_v6_ssse3 @1156
vp8_filter_block1d4_h6_ssse3 @1157
vp8_filter_block1d4_v6_ssse3 @1158
vp8_filter_block1d8_h6_only_sse2 @1159
vp8_filter_block1d8_h6_sse2 @1160
vp8_filter_block1d8_h6_ssse3 @1161
vp8_filter_block1d8_v6_only_sse2 @1162
vp8_filter_block1d8_v6_sse2 @1163
vp8_filter_block1d8_v6_ssse3 @1164
vp8_filter_block1d_h6_mmx @1165
vp8_filter_block1dc_v6_mmx @1166
vp8_filter_block2d_bil4x4_var_mmx @1167
vp8_filter_block2d_bil_var_mmx @1168
vp8_filter_block2d_bil_var_sse2 @1169
vp8_filter_block2d_bil_var_ssse3 @1170
vp8_filter_by_weight16x16_c @1171
vp8_filter_by_weight16x16_sse2 @1172
vp8_filter_by_weight4x4_c @1173
vp8_filter_by_weight8x8_c @1174
vp8_filter_by_weight8x8_sse2 @1175
vp8_find_best_half_pixel_step @1176
vp8_find_best_sub_pixel_step @1177
vp8_find_best_sub_pixel_step_iteratively @1178
vp8_find_near_mvs @1179
vp8_find_near_mvs_bias @1180
vp8_first_pass @1181
vp8_fix_contexts @1182
vp8_full_search_sad @1183
vp8_full_search_sad_c @1184
vp8_full_search_sadx3 @1185
vp8_full_search_sadx8 @1186
vp8_gaussian @1187
vp8_get16x16var_sse2 @1188
vp8_get4x4sse_cs_c @1189
vp8_get4x4sse_cs_mmx @1190
vp8_get4x4var_mmx @1191
vp8_get8x8var_mmx @1192
vp8_get8x8var_sse2 @1193
vp8_get_compressed_data @1194
vp8_get_inter_mbpred_error @1195
vp8_get_mb_ss_mmx @1196
vp8_get_mb_ss_sse2 @1197
vp8_get_preview_raw_frame @1198
vp8_get_quantizer @1199
vp8_get_reference @1200
vp8_gf_boost_qadjustment @1201
vp8_half_horiz_variance16x_h_sse2 @1202
vp8_half_horiz_variance8x_h_sse2 @1203
vp8_half_horiz_vert_variance16x_h_sse2 @1204
vp8_half_horiz_vert_variance8x_h_sse2 @1205
vp8_half_vert_variance16x_h_sse2 @1206
vp8_half_vert_variance8x_h_sse2 @1207
vp8_hex_search @1208
vp8_horizontal_line_2_1_scale_c @1209
vp8_horizontal_line_5_3_scale_c @1210
vp8_horizontal_line_5_4_scale_c @1211
vp8_idct_dequant_0_2x_sse2 @1212
vp8_idct_dequant_dc_0_2x_sse2 @1213
vp8_idct_dequant_dc_full_2x_sse2 @1214
vp8_idct_dequant_full_2x_sse2 @1215
vp8_init3smotion_compensation @1216
vp8_init_dsmotion_compensation @1217
vp8_init_first_pass @1218
vp8_init_mbmode_probs @1219
vp8_init_mode_costs @1220
vp8_init_second_pass @1221
vp8_initialize_rd_consts @1222
vp8_intra4x4_predict_c @1223
vp8_intra_pred_uv_dc128_mmx @1224
vp8_intra_pred_uv_dc_mmx2 @1225
vp8_intra_pred_uv_dcleft_mmx2 @1226
vp8_intra_pred_uv_dctop_mmx2 @1227
vp8_intra_pred_uv_ho_mmx2 @1228
vp8_intra_pred_uv_ho_ssse3 @1229
vp8_intra_pred_uv_tm_sse2 @1230
vp8_intra_pred_uv_tm_ssse3 @1231
vp8_intra_pred_uv_ve_mmx @1232
vp8_intra_pred_y_dc128_sse2 @1233
vp8_intra_pred_y_dc_sse2 @1234
vp8_intra_pred_y_dcleft_sse2 @1235
vp8_intra_pred_y_dctop_sse2 @1236
vp8_intra_pred_y_ho_sse2 @1237
vp8_intra_pred_y_tm_sse2 @1238
vp8_intra_pred_y_tm_ssse3 @1239
vp8_intra_pred_y_ve_sse2 @1240
vp8_kf_bmode_prob @1241
vp8_kf_uv_mode_prob @1242
vp8_kf_ymode_encodings @1243
vp8_kf_ymode_prob @1244
vp8_kf_ymode_tree @1245
vp8_lookahead_depth @1246
vp8_lookahead_destroy @1247
vp8_lookahead_init @1248
vp8_lookahead_peek @1249
vp8_lookahead_pop @1250
vp8_lookahead_push @1251
vp8_loop_filter_bh_mmx @1252
vp8_loop_filter_bh_sse2 @1253
vp8_loop_filter_bh_y_sse2 @1254
vp8_loop_filter_bhs_mmx @1255
vp8_loop_filter_bhs_sse2 @1256
vp8_loop_filter_bv_mmx @1257
vp8_loop_filter_bv_sse2 @1258
vp8_loop_filter_bv_y_sse2 @1259
vp8_loop_filter_bvs_mmx @1260
vp8_loop_filter_bvs_sse2 @1261
vp8_loop_filter_frame @1262
vp8_loop_filter_frame_init @1263
vp8_loop_filter_frame_yonly @1264
vp8_loop_filter_horizontal_edge_mmx @1265
vp8_loop_filter_horizontal_edge_uv_sse2 @1266
vp8_loop_filter_init @1267
vp8_loop_filter_mbh_mmx @1268
vp8_loop_filter_mbh_sse2 @1269
vp8_loop_filter_mbv_mmx @1270
vp8_loop_filter_mbv_sse2 @1271
vp8_loop_filter_partial_frame @1272
vp8_loop_filter_row_normal @1273
vp8_loop_filter_row_simple @1274
vp8_loop_filter_simple_horizontal_edge_mmx @1275
vp8_loop_filter_simple_horizontal_edge_sse2 @1276
vp8_loop_filter_simple_vertical_edge_mmx @1277
vp8_loop_filter_simple_vertical_edge_sse2 @1278
vp8_loop_filter_update_sharpness @1279
vp8_loop_filter_vertical_edge_mmx @1280
vp8_loop_filter_vertical_edge_uv_sse2 @1281
vp8_loopfilter_frame @1282
vp8_machine_specific_config @1283
vp8_mb_feature_data_bits @1284
vp8_mb_init_dequantizer @1285
vp8_mbblock_error_c @1286
vp8_mbblock_error_mmx_impl @1287
vp8_mbblock_error_xmm @1288
vp8_mbblock_error_xmm_impl @1289
vp8_mbloop_filter_horizontal_edge_mmx @1290
vp8_mbloop_filter_horizontal_edge_sse2 @1291
vp8_mbloop_filter_horizontal_edge_uv_sse2 @1292
vp8_mbloop_filter_vertical_edge_mmx @1293
vp8_mbloop_filter_vertical_edge_sse2 @1294
vp8_mbloop_filter_vertical_edge_uv_sse2 @1295
vp8_mbpost_proc_across_ip_c @1296
vp8_mbpost_proc_across_ip_xmm @1297
vp8_mbpost_proc_down_c @1298
vp8_mbpost_proc_down_xmm @1299
vp8_mbsplit_count @1300
vp8_mbsplit_encodings @1301
vp8_mbsplit_offset @1302
vp8_mbsplit_probs @1303
vp8_mbsplit_tree @1304
vp8_mbsplits @1305
vp8_mbuverror_c @1306
vp8_mbuverror_mmx_impl @1307
vp8_mbuverror_xmm @1308
vp8_mbuverror_xmm_impl @1309
vp8_mode_contexts @1310
vp8_mode_order @1311
vp8_mse16x16_wmt @1312
vp8_mse2psnr @1313
vp8_multiframe_quality_enhance @1314
vp8_mv_bit_cost @1315
vp8_mv_cont @1316
vp8_mv_pred @1317
vp8_mv_ref_encoding_array @1318
vp8_mv_ref_probs @1319
vp8_mv_ref_tree @1320
vp8_mv_update_probs @1321
vp8_new_framerate @1322
vp8_norm @1323
vp8_optimize_mbuv @1324
vp8_optimize_mby @1325
vp8_pack_bitstream @1326
vp8_pack_tokens_c @1327
vp8_pick_frame_size @1328
vp8_pick_inter_mode @1329
vp8_pick_intra_mode @1330
vp8_plane_add_noise_c @1331
vp8_plane_add_noise_wmt @1332
vp8_post_proc_down_and_across_mb_row_c @1333
vp8_post_proc_down_and_across_mb_row_sse2 @1334
vp8_post_proc_frame @1335
vp8_prev_token_class @1336
vp8_prob_cost @1337
vp8_quantize_mb_c @1338
vp8_quantize_mbuv_c @1339
vp8_quantize_mby_c @1340
vp8_rd_pick_inter_mode @1341
vp8_rd_pick_intra_mode @1342
vp8_receive_raw_frame @1343
vp8_ref_frame_order @1344
vp8_refining_search_sad @1345
vp8_refining_search_sad_c @1346
vp8_refining_search_sadx4 @1347
vp8_regular_quantize_b_c @1348
vp8_regular_quantize_b_pair_c @1349
vp8_regular_quantize_b_sse2 @1350
vp8_regulate_q @1351
vp8_remove_common @1352
vp8_remove_compressor @1353
vp8_remove_decoder_instances @1354
vp8_reset_mb_tokens_context @1355
vp8_restore_coding_context @1356
vp8_reverse_trans @1357
vp8_rtcd @1358
vp8_rv @1359
vp8_sad16x16 @1360
vp8_sad16x16_c @1361
vp8_sad16x16_sse3 @1362
vp8_sad16x16_wmt @1363
vp8_sad16x16x3 @1364
vp8_sad16x16x3_c @1365
vp8_sad16x16x3_sse3 @1366
vp8_sad16x16x3_ssse3 @1367
vp8_sad16x16x4d @1368
vp8_sad16x16x4d_c @1369
vp8_sad16x16x4d_sse3 @1370
vp8_sad16x16x8 @1371
vp8_sad16x16x8_c @1372
vp8_sad16x16x8_sse4 @1373
vp8_sad16x8_c @1374
vp8_sad16x8_wmt @1375
vp8_sad16x8x3 @1376
vp8_sad16x8x3_c @1377
vp8_sad16x8x3_sse3 @1378
vp8_sad16x8x3_ssse3 @1379
vp8_sad16x8x4d @1380
vp8_sad16x8x4d_c @1381
vp8_sad16x8x4d_sse3 @1382
vp8_sad16x8x8 @1383
vp8_sad16x8x8_c @1384
vp8_sad16x8x8_sse4 @1385
vp8_sad4x4_c @1386
vp8_sad4x4_wmt @1387
vp8_sad4x4x3 @1388
vp8_sad4x4x3_c @1389
vp8_sad4x4x3_sse3 @1390
vp8_sad4x4x4d @1391
vp8_sad4x4x4d_c @1392
vp8_sad4x4x4d_sse3 @1393
vp8_sad4x4x8 @1394
vp8_sad4x4x8_c @1395
vp8_sad4x4x8_sse4 @1396
vp8_sad8x16_c @1397
vp8_sad8x16_wmt @1398
vp8_sad8x16x3 @1399
vp8_sad8x16x3_c @1400
vp8_sad8x16x3_sse3 @1401
vp8_sad8x16x4d @1402
vp8_sad8x16x4d_c @1403
vp8_sad8x16x4d_sse3 @1404
vp8_sad8x16x8 @1405
vp8_sad8x16x8_c @1406
vp8_sad8x16x8_sse4 @1407
vp8_sad8x8_c @1408
vp8_sad8x8_wmt @1409
vp8_sad8x8x3 @1410
vp8_sad8x8x3_c @1411
vp8_sad8x8x3_sse3 @1412
vp8_sad8x8x4d @1413
vp8_sad8x8x4d_c @1414
vp8_sad8x8x4d_sse3 @1415
vp8_sad8x8x8 @1416
vp8_sad8x8x8_c @1417
vp8_sad8x8x8_sse4 @1418
vp8_save_coding_context @1419
vp8_second_pass @1420
vp8_set_active_map @1421
vp8_set_internal_size @1422
vp8_set_mbmode_and_mvs @1423
vp8_set_quantizer @1424
vp8_set_reference @1425
vp8_set_roimap @1426
vp8_set_speed_features @1427
vp8_setup_block_dptrs @1428
vp8_setup_block_ptrs @1429
vp8_setup_intra_recon @1430
vp8_setup_intra_recon_top_line @1431
vp8_setup_key_frame @1432
vp8_setup_version @1433
vp8_short_fdct4x4_sse2 @1434
vp8_short_fdct8x4_sse2 @1435
vp8_short_idct4x4llm_c @1436
vp8_short_idct4x4llm_mmx @1437
vp8_short_inv_walsh4x4_1_c @1438
vp8_short_inv_walsh4x4_c @1439
vp8_short_inv_walsh4x4_sse2 @1440
vp8_short_walsh4x4_sse2 @1441
vp8_six_tap_mmx @1442
vp8_sixtap_predict16x16 @1443
vp8_sixtap_predict16x16_mmx @1444
vp8_sixtap_predict16x16_sse2 @1445
vp8_sixtap_predict16x16_ssse3 @1446
vp8_sixtap_predict4x4 @1447
vp8_sixtap_predict4x4_mmx @1448
vp8_sixtap_predict4x4_ssse3 @1449
vp8_sixtap_predict8x4 @1450
vp8_sixtap_predict8x4_mmx @1451
vp8_sixtap_predict8x4_sse2 @1452
vp8_sixtap_predict8x4_ssse3 @1453
vp8_sixtap_predict8x8 @1454
vp8_sixtap_predict8x8_mmx @1455
vp8_sixtap_predict8x8_sse2 @1456
vp8_sixtap_predict8x8_ssse3 @1457
vp8_skip_fractional_mv_step @1458
vp8_small_mvencodings @1459
vp8_small_mvtree @1460
vp8_start_encode @1461
vp8_stop_encode @1462
vp8_strict_quantize_b_c @1463
vp8_stuff_mb @1464
vp8_sub_mv_ref_encoding_array @1465
vp8_sub_mv_ref_prob2 @1466
vp8_sub_mv_ref_prob3 @1467
vp8_sub_mv_ref_tree @1468
vp8_sub_pixel_mse16x16_wmt @1469
vp8_sub_pixel_variance16x16 @1470
vp8_sub_pixel_variance16x16_ssse3 @1471
vp8_sub_pixel_variance16x16_wmt @1472
vp8_sub_pixel_variance16x8 @1473
vp8_sub_pixel_variance16x8_ssse3 @1474
vp8_sub_pixel_variance16x8_wmt @1475
vp8_sub_pixel_variance4x4_wmt @1476
vp8_sub_pixel_variance8x16_wmt @1477
vp8_sub_pixel_variance8x8_wmt @1478
vp8_subtract_b_c @1479
vp8_subtract_b_sse2 @1480
vp8_subtract_b_sse2_impl @1481
vp8_subtract_mbuv_c @1482
vp8_subtract_mbuv_sse2 @1483
vp8_subtract_mby_c @1484
vp8_subtract_mby_sse2 @1485
vp8_swap_yv12_buffer @1486
vp8_temporal_filter_apply_c @1487
vp8_temporal_filter_apply_sse2 @1488
vp8_temporal_filter_prepare_c @1489
vp8_tokenize_mb @1490
vp8_tokens_from_tree @1491
vp8_tokens_from_tree_offset @1492
vp8_transform_intra_mby @1493
vp8_transform_mbuv @1494
vp8_tree_probs_from_distribution @1495
vp8_unpack_block1d16_h6_sse2 @1496
vp8_update_coef_probs @1497
vp8_update_entropy @1498
vp8_update_gf_useage_maps @1499
vp8_update_rate_correction_factors @1500
vp8_update_reference @1501
vp8_update_zbin_extra @1502
vp8_use_as_reference @1503
vp8_uv_mode_encodings @1504
vp8_uv_mode_prob @1505
vp8_uv_mode_tree @1506
vp8_variance16x16_wmt @1507
vp8_variance16x8_wmt @1508
vp8_variance4x4_wmt @1509
vp8_variance8x16_wmt @1510
vp8_variance8x8_wmt @1511
vp8_variance_and_sad_16x16_sse2 @1512
vp8_variance_halfpixvar16x16_h_wmt @1513
vp8_variance_halfpixvar16x16_hv_wmt @1514
vp8_variance_halfpixvar16x16_v_wmt @1515
vp8_vertical_band_2_1_scale_c @1516
vp8_vertical_band_2_1_scale_i_c @1517
vp8_vertical_band_5_3_scale_c @1518
vp8_vertical_band_5_4_scale_c @1519
vp8_write_mvprobs @1520
vp8_ymode_encodings @1521
vp8_ymode_prob @1522
vp8_ymode_tree @1523
vp8_yv12_alloc_frame_buffer @1524
vp8_yv12_copy_frame_c @1525
vp8_yv12_copy_partial_frame_c @1526
vp8_yv12_de_alloc_frame_buffer @1527
vp8_yv12_extend_frame_borders_c @1528
vp8_yv12_realloc_frame_buffer @1529
vp8cx_base_skip_false_prob @1530
vp8cx_create_encoder_threads @1531
vp8cx_encode_inter_macroblock @1532
vp8cx_encode_intra_macroblock @1533
vp8cx_frame_init_quantizer @1534
vp8cx_init_de_quantizer @1535
vp8cx_init_mbrthread_data @1536
vp8cx_init_quantizer @1537
vp8cx_initialize_me_consts @1538
vp8cx_mb_init_quantizer @1539
vp8cx_pick_filter_level @1540
vp8cx_pick_filter_level_fast @1541
vp8cx_remove_encoder_threads @1542
vp8cx_set_alt_lf_level @1543
vp8dx_bool_decoder_fill @1544
vp8dx_get_raw_frame @1545
vp8dx_get_reference @1546
vp8dx_receive_compressed_data @1547
vp8dx_references_buffer @1548
vp8dx_set_reference @1549
vp8dx_start_decode @1550
vp8mt_alloc_temp_buffers @1551
vp8mt_de_alloc_temp_buffers @1552
vp8mt_decode_mb_rows @1553
vp9_alloc_frame_buffer @1554
vp9_extend_frame_borders_c @1555
vp9_extend_frame_inner_borders_c @1556
vp9_free_frame_buffer @1557
vp9_realloc_frame_buffer @1558
vpx_calloc @1559
vpx_codec_control_ @1560
vpx_codec_dec_init_ver @1561
vpx_codec_decode @1562
vpx_codec_destroy @1563
vpx_codec_enc_config_default @1564
vpx_codec_enc_config_set @1565
vpx_codec_enc_init_multi_ver @1566
vpx_codec_enc_init_ver @1567
vpx_codec_encode @1568
vpx_codec_err_to_string @1569
vpx_codec_error @1570
vpx_codec_error_detail @1571
vpx_codec_get_caps @1572
vpx_codec_get_cx_data @1573
vpx_codec_get_frame @1574
vpx_codec_get_global_headers @1575
vpx_codec_get_mem_map @1576
vpx_codec_get_preview_frame @1577
vpx_codec_get_stream_info @1578
vpx_codec_iface_name @1579
vpx_codec_peek_stream_info @1580
vpx_codec_pkt_list_add @1581
vpx_codec_pkt_list_get @1582
vpx_codec_register_put_frame_cb @1583
vpx_codec_register_put_slice_cb @1584
vpx_codec_set_cx_data_buf @1585
vpx_codec_set_mem_map @1586
vpx_codec_version @1587
vpx_codec_version_extra_str @1588
vpx_codec_version_str @1589
vpx_codec_vp8_cx @1590
vpx_codec_vp8_cx_algo @1591
vpx_codec_vp8_dx @1592
vpx_codec_vp8_dx_algo @1593
vpx_free @1594
vpx_malloc @1595
vpx_mem_get_version @1596
vpx_mem_set_functions @1597
vpx_mem_set_heap_size @1598
vpx_mem_unset_functions @1599
vpx_memalign @1600
vpx_memcpy @1601
vpx_memmove @1602
vpx_memset @1603
vpx_mmap_alloc @1604
vpx_mmap_dtor @1605
vpx_realloc @1606
vpx_reset_mmx_state @1607
vpx_scale_frame @1608
vpx_scale_rtcd @1609
vpx_validate_mmaps @1610
vpx_winx64_fldcw @1611
vpx_winx64_fstcw @1612
vpx_yv12_copy_y_c @1613
write_cryptpacket @1614
|