-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
1506 lines (1506 loc) · 96.3 KB
/
.gitignore
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
Drivers/CMSIS/LICENSE.txt
Drivers/CMSIS/Core/Include/cachel1_armv7.h
Drivers/CMSIS/Core/Include/cmsis_armcc.h
Drivers/CMSIS/Core/Include/cmsis_armclang_ltm.h
Drivers/CMSIS/Core/Include/cmsis_armclang.h
Drivers/CMSIS/Core/Include/cmsis_compiler.h
Drivers/CMSIS/Core/Include/cmsis_gcc.h
Drivers/CMSIS/Core/Include/cmsis_iccarm.h
Drivers/CMSIS/Core/Include/cmsis_version.h
Drivers/CMSIS/Core/Include/core_armv8mbl.h
Drivers/CMSIS/Core/Include/core_armv8mml.h
Drivers/CMSIS/Core/Include/core_armv81mml.h
Drivers/CMSIS/Core/Include/core_cm0.h
Drivers/CMSIS/Core/Include/core_cm0plus.h
Drivers/CMSIS/Core/Include/core_cm1.h
Drivers/CMSIS/Core/Include/core_cm3.h
Drivers/CMSIS/Core/Include/core_cm4.h
Drivers/CMSIS/Core/Include/core_cm7.h
Drivers/CMSIS/Core/Include/core_cm23.h
Drivers/CMSIS/Core/Include/core_cm33.h
Drivers/CMSIS/Core/Include/core_cm35p.h
Drivers/CMSIS/Core/Include/core_cm55.h
Drivers/CMSIS/Core/Include/core_cm85.h
Drivers/CMSIS/Core/Include/core_sc000.h
Drivers/CMSIS/Core/Include/core_sc300.h
Drivers/CMSIS/Core/Include/core_starmc1.h
Drivers/CMSIS/Core/Include/mpu_armv7.h
Drivers/CMSIS/Core/Include/mpu_armv8.h
Drivers/CMSIS/Core/Include/pac_armv81.h
Drivers/CMSIS/Core/Include/pmu_armv8.h
Drivers/CMSIS/Core/Include/tz_context.h
Drivers/CMSIS/Core/Template/ARMv8-M/main_s.c
Drivers/CMSIS/Core/Template/ARMv8-M/tz_context.c
Drivers/CMSIS/Core_A/Include/cmsis_armcc.h
Drivers/CMSIS/Core_A/Include/cmsis_armclang.h
Drivers/CMSIS/Core_A/Include/cmsis_compiler.h
Drivers/CMSIS/Core_A/Include/cmsis_cp15.h
Drivers/CMSIS/Core_A/Include/cmsis_gcc.h
Drivers/CMSIS/Core_A/Include/cmsis_iccarm.h
Drivers/CMSIS/Core_A/Include/core_ca.h
Drivers/CMSIS/Core_A/Include/irq_ctrl.h
Drivers/CMSIS/Core_A/Source/irq_ctrl_gic.c
Drivers/CMSIS/DAP/Firmware/Config/DAP_config.h
Drivers/CMSIS/DAP/Firmware/Include/DAP.h
Drivers/CMSIS/DAP/Firmware/Source/DAP_vendor.c
Drivers/CMSIS/DAP/Firmware/Source/DAP.c
Drivers/CMSIS/DAP/Firmware/Source/JTAG_DP.c
Drivers/CMSIS/DAP/Firmware/Source/SW_DP.c
Drivers/CMSIS/DAP/Firmware/Source/SWO.c
Drivers/CMSIS/DAP/Firmware/Source/UART.c
Drivers/CMSIS/DSP/ComputeLibrary/LICENSE.txt
Drivers/CMSIS/DSP/ComputeLibrary/Include/NEMath.h
Drivers/CMSIS/DSP/ComputeLibrary/Source/arm_cl_tables.c
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/Abstract.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/arm_bayes_example_f32.c
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/ARMCM0_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/ARMCM3_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/ARMCM4_FP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/ARMCM7_SP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/ARMCM55_FP_MVE_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/CMakeLists.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/RTE/Device/ARMCM0/startup_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/RTE/Device/ARMCM0/system_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/RTE/Device/ARMCM3/startup_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/RTE/Device/ARMCM3/system_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/RTE/Device/ARMCM55/startup_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/RTE/Device/ARMCM55/system_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_bayes_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/Abstract.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/arm_class_marks_example_f32.c
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/ARMCM0_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/ARMCM3_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/ARMCM4_FP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/ARMCM7_SP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/ARMCM55_FP_MVE_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/CMakeLists.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM0/startup_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM0/system_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM3/startup_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM3/system_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM55/startup_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM55/system_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_class_marks_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/Abstract.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/arm_convolution_example_f32.c
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/ARMCM0_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/ARMCM3_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/ARMCM4_FP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/ARMCM7_SP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/ARMCM55_FP_MVE_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/CMakeLists.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/math_helper.c
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/math_helper.h
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM0/startup_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM0/system_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM3/startup_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM3/system_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM55/startup_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM55/system_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_convolution_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/Abstract.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/arm_dotproduct_example_f32.c
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/ARMCM0_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/ARMCM3_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/ARMCM4_FP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/ARMCM7_SP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/ARMCM55_FP_MVE_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/CMakeLists.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM0/startup_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM0/system_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM3/startup_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM3/system_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM55/startup_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM55/system_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_dotproduct_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/Abstract.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/arm_fft_bin_data.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/arm_fft_bin_example_f32.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/ARMCM0_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/ARMCM3_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/ARMCM4_FP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/ARMCM7_SP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/ARMCM55_FP_MVE_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/CMakeLists.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM0/startup_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM0/system_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM3/startup_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM3/system_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM55/startup_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM55/system_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fft_bin_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/Abstract.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/arm_fir_data.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/arm_fir_example_f32.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/ARMCM0_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/ARMCM3_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/ARMCM4_FP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/ARMCM7_SP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/ARMCM55_FP_MVE_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/CMakeLists.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/math_helper.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/math_helper.h
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM0/startup_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM0/system_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM3/startup_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM3/system_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM55/startup_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM55/system_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_fir_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/Abstract.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_data.c
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/arm_graphic_equalizer_example_q31.c
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/ARMCM0_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/ARMCM3_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/ARMCM4_FP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/ARMCM7_SP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/ARMCM55_FP_MVE_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/CMakeLists.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/math_helper.c
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/math_helper.h
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM0/startup_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM0/system_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM3/startup_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM3/system_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM55/startup_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM55/system_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_graphic_equalizer_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/Abstract.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/arm_linear_interp_data.c
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/arm_linear_interp_example_f32.c
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/ARMCM0_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/ARMCM3_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/ARMCM4_FP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/ARMCM7_SP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/ARMCM55_FP_MVE_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/CMakeLists.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/math_helper.c
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/math_helper.h
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/RTE/Device/ARMCM0/startup_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/RTE/Device/ARMCM0/system_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/RTE/Device/ARMCM3/startup_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/RTE/Device/ARMCM3/system_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/RTE/Device/ARMCM55/startup_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/RTE/Device/ARMCM55/system_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_linear_interp_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/Abstract.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/arm_matrix_example_f32.c
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/ARMCM0_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/ARMCM3_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/ARMCM4_FP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/ARMCM7_SP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/ARMCM55_FP_MVE_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/CMakeLists.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/math_helper.c
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/math_helper.h
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/RTE/Device/ARMCM0/startup_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/RTE/Device/ARMCM0/system_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/RTE/Device/ARMCM3/startup_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/RTE/Device/ARMCM3/system_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/RTE/Device/ARMCM55/startup_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/RTE/Device/ARMCM55/system_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_matrix_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/Abstract.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/arm_signal_converge_data.c
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/arm_signal_converge_example_f32.c
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/ARMCM0_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/ARMCM3_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/ARMCM4_FP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/ARMCM7_SP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/ARMCM55_FP_MVE_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/CMakeLists.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/math_helper.c
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/math_helper.h
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/RTE/Device/ARMCM0/startup_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/RTE/Device/ARMCM0/system_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/RTE/Device/ARMCM3/startup_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/RTE/Device/ARMCM3/system_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/RTE/Device/ARMCM55/startup_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/RTE/Device/ARMCM55/system_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_signal_converge_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/Abstract.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/arm_sin_cos_example_f32.c
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/ARMCM0_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/ARMCM3_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/ARMCM4_FP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/ARMCM7_SP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/ARMCM55_FP_MVE_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/CMakeLists.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/RTE/Device/ARMCM0/startup_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/RTE/Device/ARMCM0/system_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/RTE/Device/ARMCM3/startup_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/RTE/Device/ARMCM3/system_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/RTE/Device/ARMCM55/startup_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/RTE/Device/ARMCM55/system_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_sin_cos_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/Abstract.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/arm_svm_example_f32.c
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/ARMCM0_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/ARMCM3_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/ARMCM4_FP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/ARMCM7_SP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/ARMCM55_FP_MVE_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/CMakeLists.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/RTE/Device/ARMCM0/startup_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/RTE/Device/ARMCM0/system_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/RTE/Device/ARMCM3/startup_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/RTE/Device/ARMCM3/system_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/RTE/Device/ARMCM55/startup_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/RTE/Device/ARMCM55/system_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_svm_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/Abstract.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/arm_variance_example_f32.c
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/ARMCM0_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/ARMCM3_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/ARMCM4_FP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/ARMCM7_SP_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/ARMCM55_FP_MVE_config.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/CMakeLists.txt
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/RTE/Device/ARMCM0/startup_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/RTE/Device/ARMCM0/system_ARMCM0.c
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/RTE/Device/ARMCM3/startup_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/RTE/Device/ARMCM3/system_ARMCM3.c
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/RTE/Device/ARMCM4_FP/startup_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/RTE/Device/ARMCM4_FP/system_ARMCM4.c
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/RTE/Device/ARMCM55/startup_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/RTE/Device/ARMCM55/system_ARMCM55.c
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/RTE/Device/ARMCM7_SP/startup_ARMCM7.c
Drivers/CMSIS/DSP/Examples/ARM/arm_variance_example/RTE/Device/ARMCM7_SP/system_ARMCM7.c
Drivers/CMSIS/DSP/Include/arm_common_tables_f16.h
Drivers/CMSIS/DSP/Include/arm_common_tables.h
Drivers/CMSIS/DSP/Include/arm_const_structs_f16.h
Drivers/CMSIS/DSP/Include/arm_const_structs.h
Drivers/CMSIS/DSP/Include/arm_helium_utils.h
Drivers/CMSIS/DSP/Include/arm_math_f16.h
Drivers/CMSIS/DSP/Include/arm_math_memory.h
Drivers/CMSIS/DSP/Include/arm_math_types_f16.h
Drivers/CMSIS/DSP/Include/arm_math_types.h
Drivers/CMSIS/DSP/Include/arm_math.h
Drivers/CMSIS/DSP/Include/arm_mve_tables_f16.h
Drivers/CMSIS/DSP/Include/arm_mve_tables.h
Drivers/CMSIS/DSP/Include/arm_vec_math_f16.h
Drivers/CMSIS/DSP/Include/arm_vec_math.h
Drivers/CMSIS/DSP/Include/dsp/basic_math_functions_f16.h
Drivers/CMSIS/DSP/Include/dsp/basic_math_functions.h
Drivers/CMSIS/DSP/Include/dsp/bayes_functions_f16.h
Drivers/CMSIS/DSP/Include/dsp/bayes_functions.h
Drivers/CMSIS/DSP/Include/dsp/complex_math_functions_f16.h
Drivers/CMSIS/DSP/Include/dsp/complex_math_functions.h
Drivers/CMSIS/DSP/Include/dsp/controller_functions_f16.h
Drivers/CMSIS/DSP/Include/dsp/controller_functions.h
Drivers/CMSIS/DSP/Include/dsp/distance_functions_f16.h
Drivers/CMSIS/DSP/Include/dsp/distance_functions.h
Drivers/CMSIS/DSP/Include/dsp/fast_math_functions_f16.h
Drivers/CMSIS/DSP/Include/dsp/fast_math_functions.h
Drivers/CMSIS/DSP/Include/dsp/filtering_functions_f16.h
Drivers/CMSIS/DSP/Include/dsp/filtering_functions.h
Drivers/CMSIS/DSP/Include/dsp/interpolation_functions_f16.h
Drivers/CMSIS/DSP/Include/dsp/interpolation_functions.h
Drivers/CMSIS/DSP/Include/dsp/matrix_functions_f16.h
Drivers/CMSIS/DSP/Include/dsp/matrix_functions.h
Drivers/CMSIS/DSP/Include/dsp/none.h
Drivers/CMSIS/DSP/Include/dsp/quaternion_math_functions.h
Drivers/CMSIS/DSP/Include/dsp/statistics_functions_f16.h
Drivers/CMSIS/DSP/Include/dsp/statistics_functions.h
Drivers/CMSIS/DSP/Include/dsp/support_functions_f16.h
Drivers/CMSIS/DSP/Include/dsp/support_functions.h
Drivers/CMSIS/DSP/Include/dsp/svm_defines.h
Drivers/CMSIS/DSP/Include/dsp/svm_functions_f16.h
Drivers/CMSIS/DSP/Include/dsp/svm_functions.h
Drivers/CMSIS/DSP/Include/dsp/transform_functions_f16.h
Drivers/CMSIS/DSP/Include/dsp/transform_functions.h
Drivers/CMSIS/DSP/Include/dsp/utils.h
Drivers/CMSIS/DSP/PrivateInclude/arm_sorting.h
Drivers/CMSIS/DSP/PrivateInclude/arm_vec_fft.h
Drivers/CMSIS/DSP/PrivateInclude/arm_vec_filtering.h
Drivers/CMSIS/DSP/Source/CMakeLists.txt
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f32.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_f64.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q7.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q15.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_abs_q31.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f32.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_add_f64.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q7.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q15.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_add_q31.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u8.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_and_u32.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_clip_f16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_clip_f32.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_clip_q7.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_clip_q15.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_clip_q31.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_dot_prod_f16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_dot_prod_f32.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_dot_prod_f64.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_dot_prod_q7.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_dot_prod_q15.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_dot_prod_q31.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_f16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_f32.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_f64.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_q7.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_q15.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_mult_q31.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_f16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_f32.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_f64.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_q7.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_q15.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_negate_q31.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u8.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_not_u32.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_f16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_f32.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_f64.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_q7.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_q15.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_offset_q31.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u8.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_or_u32.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_f16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_f32.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_f64.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_q7.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_q15.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_scale_q31.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_shift_q7.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_shift_q15.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_shift_q31.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f32.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_f64.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q7.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q15.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_sub_q31.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u8.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/arm_xor_u32.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/BasicMathFunctions.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/BasicMathFunctionsF16.c
Drivers/CMSIS/DSP/Source/BasicMathFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/BayesFunctions/arm_gaussian_naive_bayes_predict_f16.c
Drivers/CMSIS/DSP/Source/BayesFunctions/arm_gaussian_naive_bayes_predict_f32.c
Drivers/CMSIS/DSP/Source/BayesFunctions/BayesFunctions.c
Drivers/CMSIS/DSP/Source/BayesFunctions/BayesFunctionsF16.c
Drivers/CMSIS/DSP/Source/BayesFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/CommonTables/arm_common_tables_f16.c
Drivers/CMSIS/DSP/Source/CommonTables/arm_common_tables.c
Drivers/CMSIS/DSP/Source/CommonTables/arm_const_structs_f16.c
Drivers/CMSIS/DSP/Source/CommonTables/arm_const_structs.c
Drivers/CMSIS/DSP/Source/CommonTables/arm_mve_tables_f16.c
Drivers/CMSIS/DSP/Source/CommonTables/arm_mve_tables.c
Drivers/CMSIS/DSP/Source/CommonTables/CMakeLists.txt
Drivers/CMSIS/DSP/Source/CommonTables/CommonTables.c
Drivers/CMSIS/DSP/Source/CommonTables/CommonTablesF16.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_conj_f16.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_conj_f32.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_conj_q15.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_conj_q31.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_dot_prod_f16.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_dot_prod_f32.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_dot_prod_q15.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_dot_prod_q31.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_f16.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_f32.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_f64.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_fast_q15.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_q15.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_q31.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_squared_f16.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_squared_f32.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_squared_f64.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_squared_q15.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mag_squared_q31.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_f16.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_f32.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_f64.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_q15.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_cmplx_q31.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_real_f16.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_real_f32.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_real_q15.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/arm_cmplx_mult_real_q31.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/ComplexMathFunctions.c
Drivers/CMSIS/DSP/Source/ComplexMathFunctions/ComplexMathFunctionsF16.c
Drivers/CMSIS/DSP/Source/ControllerFunctions/arm_pid_init_f32.c
Drivers/CMSIS/DSP/Source/ControllerFunctions/arm_pid_init_q15.c
Drivers/CMSIS/DSP/Source/ControllerFunctions/arm_pid_init_q31.c
Drivers/CMSIS/DSP/Source/ControllerFunctions/arm_pid_reset_f32.c
Drivers/CMSIS/DSP/Source/ControllerFunctions/arm_pid_reset_q15.c
Drivers/CMSIS/DSP/Source/ControllerFunctions/arm_pid_reset_q31.c
Drivers/CMSIS/DSP/Source/ControllerFunctions/arm_sin_cos_f32.c
Drivers/CMSIS/DSP/Source/ControllerFunctions/arm_sin_cos_q31.c
Drivers/CMSIS/DSP/Source/ControllerFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/ControllerFunctions/ControllerFunctions.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_boolean_distance_template.h
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_boolean_distance.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_braycurtis_distance_f16.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_braycurtis_distance_f32.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_canberra_distance_f16.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_canberra_distance_f32.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_chebyshev_distance_f16.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_chebyshev_distance_f32.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_chebyshev_distance_f64.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_cityblock_distance_f16.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_cityblock_distance_f32.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_cityblock_distance_f64.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_correlation_distance_f16.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_correlation_distance_f32.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_cosine_distance_f16.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_cosine_distance_f32.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_cosine_distance_f64.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_dice_distance.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_euclidean_distance_f16.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_euclidean_distance_f32.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_euclidean_distance_f64.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_hamming_distance.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_jaccard_distance.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_jensenshannon_distance_f16.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_jensenshannon_distance_f32.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_kulsinski_distance.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_minkowski_distance_f16.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_minkowski_distance_f32.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_rogerstanimoto_distance.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_russellrao_distance.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_sokalmichener_distance.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_sokalsneath_distance.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/arm_yule_distance.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/DistanceFunctions/DistanceFunctions.c
Drivers/CMSIS/DSP/Source/DistanceFunctions/DistanceFunctionsF16.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_atan2_f16.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_atan2_f32.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_atan2_q15.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_atan2_q31.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_cos_f32.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_cos_q15.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_cos_q31.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_divide_q15.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_divide_q31.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_sin_f32.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_sin_q15.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_sin_q31.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_sqrt_q15.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_sqrt_q31.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_vexp_f16.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_vexp_f32.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_vexp_f64.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_vinverse_f16.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_f16.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_f32.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_f64.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_q15.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/arm_vlog_q31.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/FastMathFunctions/FastMathFunctions.c
Drivers/CMSIS/DSP/Source/FastMathFunctions/FastMathFunctionsF16.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_32x64_init_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_32x64_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_f16.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_fast_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_fast_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_init_f16.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_init_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_init_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_init_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df1_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df2T_f16.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df2T_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df2T_f64.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df2T_init_f16.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df2T_init_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_df2T_init_f64.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_stereo_df2T_f16.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_stereo_df2T_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_stereo_df2T_init_f16.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_biquad_cascade_stereo_df2T_init_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_fast_opt_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_fast_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_fast_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_opt_q7.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_opt_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_partial_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_partial_fast_opt_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_partial_fast_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_partial_fast_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_partial_opt_q7.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_partial_opt_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_partial_q7.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_partial_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_partial_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_q7.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_conv_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_correlate_f16.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_correlate_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_correlate_f64.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_correlate_fast_opt_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_correlate_fast_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_correlate_fast_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_correlate_opt_q7.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_correlate_opt_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_correlate_q7.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_correlate_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_correlate_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_decimate_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_decimate_fast_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_decimate_fast_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_decimate_init_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_decimate_init_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_decimate_init_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_decimate_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_decimate_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_f16.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_f64.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_fast_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_fast_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_init_f16.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_init_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_init_f64.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_init_q7.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_init_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_init_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_interpolate_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_interpolate_init_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_interpolate_init_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_interpolate_init_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_interpolate_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_interpolate_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_lattice_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_lattice_init_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_lattice_init_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_lattice_init_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_lattice_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_lattice_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q7.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_sparse_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_sparse_init_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_sparse_init_q7.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_sparse_init_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_sparse_init_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_sparse_q7.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_sparse_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_fir_sparse_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_iir_lattice_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_iir_lattice_init_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_iir_lattice_init_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_iir_lattice_init_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_iir_lattice_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_iir_lattice_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_levinson_durbin_f16.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_levinson_durbin_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_levinson_durbin_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_lms_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_lms_init_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_lms_init_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_lms_init_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_lms_norm_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_lms_norm_init_f32.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_lms_norm_init_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_lms_norm_init_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_lms_norm_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_lms_norm_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_lms_q15.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/arm_lms_q31.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/FilteringFunctions/FilteringFunctions.c
Drivers/CMSIS/DSP/Source/FilteringFunctions/FilteringFunctionsF16.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/arm_bilinear_interp_f16.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/arm_bilinear_interp_f32.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/arm_bilinear_interp_q7.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/arm_bilinear_interp_q15.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/arm_bilinear_interp_q31.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/arm_linear_interp_f16.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/arm_linear_interp_f32.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/arm_linear_interp_q7.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/arm_linear_interp_q15.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/arm_linear_interp_q31.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/arm_spline_interp_f32.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/arm_spline_interp_init_f32.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/InterpolationFunctions/InterpolationFunctions.c
Drivers/CMSIS/DSP/Source/InterpolationFunctions/InterpolationFunctionsF16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_add_f16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_add_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_add_q15.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_add_q31.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_cholesky_f16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_cholesky_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_cholesky_f64.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_cmplx_mult_f16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_cmplx_mult_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_cmplx_mult_q15.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_cmplx_mult_q31.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_cmplx_trans_f16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_cmplx_trans_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_cmplx_trans_q15.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_cmplx_trans_q31.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_init_f16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_init_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_init_q15.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_init_q31.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_inverse_f16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_inverse_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_inverse_f64.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_ldlt_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_ldlt_f64.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_mult_f16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_mult_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_mult_f64.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_mult_fast_q15.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_mult_fast_q31.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_mult_opt_q31.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_mult_q7.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_mult_q15.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_mult_q31.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_scale_f16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_scale_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_scale_q15.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_scale_q31.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_solve_lower_triangular_f16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_solve_lower_triangular_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_solve_lower_triangular_f64.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_solve_upper_triangular_f16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_solve_upper_triangular_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_solve_upper_triangular_f64.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_sub_f16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_sub_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_sub_f64.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_sub_q15.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_sub_q31.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_trans_f16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_trans_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_trans_f64.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_trans_q7.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_trans_q15.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_trans_q31.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_vec_mult_f16.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_vec_mult_f32.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_vec_mult_q7.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_vec_mult_q15.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/arm_mat_vec_mult_q31.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/MatrixFunctions/MatrixFunctions.c
Drivers/CMSIS/DSP/Source/MatrixFunctions/MatrixFunctionsF16.c
Drivers/CMSIS/DSP/Source/QuaternionMathFunctions/arm_quaternion_conjugate_f32.c
Drivers/CMSIS/DSP/Source/QuaternionMathFunctions/arm_quaternion_inverse_f32.c
Drivers/CMSIS/DSP/Source/QuaternionMathFunctions/arm_quaternion_norm_f32.c
Drivers/CMSIS/DSP/Source/QuaternionMathFunctions/arm_quaternion_normalize_f32.c
Drivers/CMSIS/DSP/Source/QuaternionMathFunctions/arm_quaternion_product_f32.c
Drivers/CMSIS/DSP/Source/QuaternionMathFunctions/arm_quaternion_product_single_f32.c
Drivers/CMSIS/DSP/Source/QuaternionMathFunctions/arm_quaternion2rotation_f32.c
Drivers/CMSIS/DSP/Source/QuaternionMathFunctions/arm_rotation2quaternion_f32.c
Drivers/CMSIS/DSP/Source/QuaternionMathFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/QuaternionMathFunctions/QuaternionMathFunctions.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_linear_init_f16.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_linear_init_f32.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_linear_predict_f16.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_linear_predict_f32.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_polynomial_init_f16.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_polynomial_init_f32.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_polynomial_predict_f16.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_polynomial_predict_f32.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_rbf_init_f16.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_rbf_init_f32.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_rbf_predict_f16.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_rbf_predict_f32.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_sigmoid_init_f16.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_sigmoid_init_f32.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_sigmoid_predict_f16.c
Drivers/CMSIS/DSP/Source/SVMFunctions/arm_svm_sigmoid_predict_f32.c
Drivers/CMSIS/DSP/Source/SVMFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/SVMFunctions/SVMFunctions.c
Drivers/CMSIS/DSP/Source/SVMFunctions/SVMFunctionsF16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmax_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmax_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmax_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmax_no_idx_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmax_no_idx_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmax_no_idx_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmax_no_idx_q7.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmax_no_idx_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmax_no_idx_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmax_q7.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmax_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmax_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmin_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmin_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmin_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmin_no_idx_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmin_no_idx_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmin_no_idx_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmin_no_idx_q7.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmin_no_idx_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmin_no_idx_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmin_q7.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmin_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_absmin_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_entropy_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_entropy_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_entropy_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_kullback_leibler_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_kullback_leibler_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_kullback_leibler_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_logsumexp_dot_prod_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_logsumexp_dot_prod_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_logsumexp_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_logsumexp_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_max_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_max_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_max_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_max_no_idx_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_max_no_idx_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_max_no_idx_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_max_no_idx_q7.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_max_no_idx_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_max_no_idx_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_max_q7.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_max_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_max_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_mean_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_mean_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_mean_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_mean_q7.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_mean_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_mean_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_min_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_min_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_min_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_min_no_idx_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_min_no_idx_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_min_no_idx_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_min_no_idx_q7.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_min_no_idx_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_min_no_idx_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_min_q7.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_min_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_min_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_mse_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_mse_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_mse_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_mse_q7.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_mse_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_mse_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_power_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_power_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_power_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_power_q7.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_power_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_power_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_rms_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_rms_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_rms_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_rms_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_std_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_std_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_std_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_std_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_std_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_var_f16.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_var_f32.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_var_f64.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_var_q15.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/arm_var_q31.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/StatisticsFunctions/StatisticsFunctions.c
Drivers/CMSIS/DSP/Source/StatisticsFunctions/StatisticsFunctionsF16.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_barycenter_f16.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_barycenter_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_bitonic_sort_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_bubble_sort_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_copy_f16.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_copy_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_copy_f64.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_copy_q7.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_copy_q15.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_copy_q31.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_f16_to_float.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_f16_to_q15.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_fill_f16.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_fill_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_fill_f64.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_fill_q7.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_fill_q15.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_fill_q31.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_float_to_f16.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_float_to_q7.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_float_to_q15.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_float_to_q31.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_heap_sort_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_insertion_sort_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_merge_sort_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_merge_sort_init_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_q7_to_float.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_q7_to_q15.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_q7_to_q31.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_q15_to_f16.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_q15_to_float.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_q15_to_q7.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_q15_to_q31.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_q31_to_float.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_q31_to_q7.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_q31_to_q15.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_quick_sort_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_selection_sort_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_sort_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_sort_init_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_weighted_sum_f16.c
Drivers/CMSIS/DSP/Source/SupportFunctions/arm_weighted_sum_f32.c
Drivers/CMSIS/DSP/Source/SupportFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/SupportFunctions/SupportFunctions.c
Drivers/CMSIS/DSP/Source/SupportFunctions/SupportFunctionsF16.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_bitreversal_f16.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_bitreversal.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_bitreversal2.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_bitreversal2.S
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_f16.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_f64.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_init_f16.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_init_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_init_f64.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_init_q15.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_init_q31.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_q15.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_q31.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix2_f16.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix2_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix2_init_f16.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix2_init_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix2_init_q15.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix2_init_q31.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix2_q15.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix2_q31.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix4_f16.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix4_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix4_init_f16.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix4_init_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix4_init_q15.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix4_init_q31.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix4_q15.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix4_q31.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix8_f16.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_cfft_radix8_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_dct4_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_dct4_init_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_dct4_init_q15.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_dct4_init_q31.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_dct4_q15.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_dct4_q31.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_mfcc_f16.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_mfcc_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_mfcc_init_f16.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_mfcc_init_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_mfcc_init_q15.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_mfcc_init_q31.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_mfcc_q15.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_mfcc_q31.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_fast_f16.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_fast_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_fast_f64.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_fast_init_f16.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_fast_init_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_fast_init_f64.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_init_f32.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_init_q15.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_init_q31.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_q15.c
Drivers/CMSIS/DSP/Source/TransformFunctions/arm_rfft_q31.c
Drivers/CMSIS/DSP/Source/TransformFunctions/CMakeLists.txt
Drivers/CMSIS/DSP/Source/TransformFunctions/TransformFunctions.c
Drivers/CMSIS/DSP/Source/TransformFunctions/TransformFunctionsF16.c
Drivers/CMSIS/Device/ST/STM32F4xx/LICENSE.txt
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f4xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xc.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f401xe.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f405xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f407xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f410cx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f410rx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f410tx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f411xe.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412cx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412rx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412vx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f412zx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f413xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f415xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f417xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f423xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f427xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f429xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f437xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f439xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f446xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f469xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/stm32f479xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Include/system_stm32f4xx.h
Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/system_stm32f4xx.c
Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f401xc.s
Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f401xe.s
Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f405xx.s
Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f407xx.s
Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f410cx.s
Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f410rx.s
Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f410tx.s
Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f411xe.s
Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f412cx.s
Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f412rx.s
Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f412vx.s