@@ -206,6 +206,7 @@ int8_t stdlib_ndarray_assign_k_i_0d( struct ndarray *arrays[], void *data ) {
206
206
* stdlib_ndarray_free( y );
207
207
*/
208
208
int8_t stdlib_ndarray_assign_k_i_1d ( struct ndarray * arrays [], void * data ) {
209
+ // cppcheck-suppress constVariablePointer
209
210
STDLIB_NDARRAY_ASSIGN_1D_LOOP_CAST ( int16_t , int32_t )
210
211
return 0 ;
211
212
}
@@ -293,6 +294,7 @@ int8_t stdlib_ndarray_assign_k_i_1d( struct ndarray *arrays[], void *data ) {
293
294
* stdlib_ndarray_free( y );
294
295
*/
295
296
int8_t stdlib_ndarray_assign_k_i_2d ( struct ndarray * arrays [], void * data ) {
297
+ // cppcheck-suppress constVariablePointer
296
298
STDLIB_NDARRAY_ASSIGN_2D_LOOP_CAST ( int16_t , int32_t )
297
299
return 0 ;
298
300
}
@@ -380,6 +382,7 @@ int8_t stdlib_ndarray_assign_k_i_2d( struct ndarray *arrays[], void *data ) {
380
382
* stdlib_ndarray_free( y );
381
383
*/
382
384
int8_t stdlib_ndarray_assign_k_i_2d_blocked ( struct ndarray * arrays [], void * data ) {
385
+ // cppcheck-suppress constVariablePointer
383
386
STDLIB_NDARRAY_ASSIGN_2D_BLOCKED_LOOP_CAST ( int16_t , int32_t )
384
387
return 0 ;
385
388
}
@@ -467,6 +470,7 @@ int8_t stdlib_ndarray_assign_k_i_2d_blocked( struct ndarray *arrays[], void *dat
467
470
* stdlib_ndarray_free( y );
468
471
*/
469
472
int8_t stdlib_ndarray_assign_k_i_3d ( struct ndarray * arrays [], void * data ) {
473
+ // cppcheck-suppress constVariablePointer
470
474
STDLIB_NDARRAY_ASSIGN_3D_LOOP_CAST ( int16_t , int32_t )
471
475
return 0 ;
472
476
}
@@ -554,6 +558,7 @@ int8_t stdlib_ndarray_assign_k_i_3d( struct ndarray *arrays[], void *data ) {
554
558
* stdlib_ndarray_free( y );
555
559
*/
556
560
int8_t stdlib_ndarray_assign_k_i_3d_blocked ( struct ndarray * arrays [], void * data ) {
561
+ // cppcheck-suppress constVariablePointer
557
562
STDLIB_NDARRAY_ASSIGN_3D_BLOCKED_LOOP_CAST ( int16_t , int32_t )
558
563
return 0 ;
559
564
}
@@ -641,6 +646,7 @@ int8_t stdlib_ndarray_assign_k_i_3d_blocked( struct ndarray *arrays[], void *dat
641
646
* stdlib_ndarray_free( y );
642
647
*/
643
648
int8_t stdlib_ndarray_assign_k_i_4d ( struct ndarray * arrays [], void * data ) {
649
+ // cppcheck-suppress constVariablePointer
644
650
STDLIB_NDARRAY_ASSIGN_4D_LOOP_CAST ( int16_t , int32_t )
645
651
return 0 ;
646
652
}
@@ -728,6 +734,7 @@ int8_t stdlib_ndarray_assign_k_i_4d( struct ndarray *arrays[], void *data ) {
728
734
* stdlib_ndarray_free( y );
729
735
*/
730
736
int8_t stdlib_ndarray_assign_k_i_4d_blocked ( struct ndarray * arrays [], void * data ) {
737
+ // cppcheck-suppress constVariablePointer
731
738
STDLIB_NDARRAY_ASSIGN_4D_BLOCKED_LOOP_CAST ( int16_t , int32_t )
732
739
return 0 ;
733
740
}
@@ -815,6 +822,7 @@ int8_t stdlib_ndarray_assign_k_i_4d_blocked( struct ndarray *arrays[], void *dat
815
822
* stdlib_ndarray_free( y );
816
823
*/
817
824
int8_t stdlib_ndarray_assign_k_i_5d ( struct ndarray * arrays [], void * data ) {
825
+ // cppcheck-suppress constVariablePointer
818
826
STDLIB_NDARRAY_ASSIGN_5D_LOOP_CAST ( int16_t , int32_t )
819
827
return 0 ;
820
828
}
@@ -902,6 +910,7 @@ int8_t stdlib_ndarray_assign_k_i_5d( struct ndarray *arrays[], void *data ) {
902
910
* stdlib_ndarray_free( y );
903
911
*/
904
912
int8_t stdlib_ndarray_assign_k_i_5d_blocked ( struct ndarray * arrays [], void * data ) {
913
+ // cppcheck-suppress constVariablePointer
905
914
STDLIB_NDARRAY_ASSIGN_5D_BLOCKED_LOOP_CAST ( int16_t , int32_t )
906
915
return 0 ;
907
916
}
@@ -989,6 +998,7 @@ int8_t stdlib_ndarray_assign_k_i_5d_blocked( struct ndarray *arrays[], void *dat
989
998
* stdlib_ndarray_free( y );
990
999
*/
991
1000
int8_t stdlib_ndarray_assign_k_i_6d ( struct ndarray * arrays [], void * data ) {
1001
+ // cppcheck-suppress constVariablePointer
992
1002
STDLIB_NDARRAY_ASSIGN_6D_LOOP_CAST ( int16_t , int32_t )
993
1003
return 0 ;
994
1004
}
@@ -1076,6 +1086,7 @@ int8_t stdlib_ndarray_assign_k_i_6d( struct ndarray *arrays[], void *data ) {
1076
1086
* stdlib_ndarray_free( y );
1077
1087
*/
1078
1088
int8_t stdlib_ndarray_assign_k_i_6d_blocked ( struct ndarray * arrays [], void * data ) {
1089
+ // cppcheck-suppress constVariablePointer
1079
1090
STDLIB_NDARRAY_ASSIGN_6D_BLOCKED_LOOP_CAST ( int16_t , int32_t )
1080
1091
return 0 ;
1081
1092
}
@@ -1163,6 +1174,7 @@ int8_t stdlib_ndarray_assign_k_i_6d_blocked( struct ndarray *arrays[], void *dat
1163
1174
* stdlib_ndarray_free( y );
1164
1175
*/
1165
1176
int8_t stdlib_ndarray_assign_k_i_7d ( struct ndarray * arrays [], void * data ) {
1177
+ // cppcheck-suppress constVariablePointer
1166
1178
STDLIB_NDARRAY_ASSIGN_7D_LOOP_CAST ( int16_t , int32_t )
1167
1179
return 0 ;
1168
1180
}
@@ -1250,6 +1262,7 @@ int8_t stdlib_ndarray_assign_k_i_7d( struct ndarray *arrays[], void *data ) {
1250
1262
* stdlib_ndarray_free( y );
1251
1263
*/
1252
1264
int8_t stdlib_ndarray_assign_k_i_7d_blocked ( struct ndarray * arrays [], void * data ) {
1265
+ // cppcheck-suppress constVariablePointer
1253
1266
STDLIB_NDARRAY_ASSIGN_7D_BLOCKED_LOOP_CAST ( int16_t , int32_t )
1254
1267
return 0 ;
1255
1268
}
@@ -1337,6 +1350,7 @@ int8_t stdlib_ndarray_assign_k_i_7d_blocked( struct ndarray *arrays[], void *dat
1337
1350
* stdlib_ndarray_free( y );
1338
1351
*/
1339
1352
int8_t stdlib_ndarray_assign_k_i_8d ( struct ndarray * arrays [], void * data ) {
1353
+ // cppcheck-suppress constVariablePointer
1340
1354
STDLIB_NDARRAY_ASSIGN_8D_LOOP_CAST ( int16_t , int32_t )
1341
1355
return 0 ;
1342
1356
}
@@ -1424,6 +1438,7 @@ int8_t stdlib_ndarray_assign_k_i_8d( struct ndarray *arrays[], void *data ) {
1424
1438
* stdlib_ndarray_free( y );
1425
1439
*/
1426
1440
int8_t stdlib_ndarray_assign_k_i_8d_blocked ( struct ndarray * arrays [], void * data ) {
1441
+ // cppcheck-suppress constVariablePointer
1427
1442
STDLIB_NDARRAY_ASSIGN_8D_BLOCKED_LOOP_CAST ( int16_t , int32_t )
1428
1443
return 0 ;
1429
1444
}
@@ -1511,6 +1526,7 @@ int8_t stdlib_ndarray_assign_k_i_8d_blocked( struct ndarray *arrays[], void *dat
1511
1526
* stdlib_ndarray_free( y );
1512
1527
*/
1513
1528
int8_t stdlib_ndarray_assign_k_i_9d ( struct ndarray * arrays [], void * data ) {
1529
+ // cppcheck-suppress constVariablePointer
1514
1530
STDLIB_NDARRAY_ASSIGN_9D_LOOP_CAST ( int16_t , int32_t )
1515
1531
return 0 ;
1516
1532
}
@@ -1598,6 +1614,7 @@ int8_t stdlib_ndarray_assign_k_i_9d( struct ndarray *arrays[], void *data ) {
1598
1614
* stdlib_ndarray_free( y );
1599
1615
*/
1600
1616
int8_t stdlib_ndarray_assign_k_i_9d_blocked ( struct ndarray * arrays [], void * data ) {
1617
+ // cppcheck-suppress constVariablePointer
1601
1618
STDLIB_NDARRAY_ASSIGN_9D_BLOCKED_LOOP_CAST ( int16_t , int32_t )
1602
1619
return 0 ;
1603
1620
}
@@ -1685,6 +1702,7 @@ int8_t stdlib_ndarray_assign_k_i_9d_blocked( struct ndarray *arrays[], void *dat
1685
1702
* stdlib_ndarray_free( y );
1686
1703
*/
1687
1704
int8_t stdlib_ndarray_assign_k_i_10d ( struct ndarray * arrays [], void * data ) {
1705
+ // cppcheck-suppress constVariablePointer
1688
1706
STDLIB_NDARRAY_ASSIGN_10D_LOOP_CAST ( int16_t , int32_t )
1689
1707
return 0 ;
1690
1708
}
@@ -1772,6 +1790,7 @@ int8_t stdlib_ndarray_assign_k_i_10d( struct ndarray *arrays[], void *data ) {
1772
1790
* stdlib_ndarray_free( y );
1773
1791
*/
1774
1792
int8_t stdlib_ndarray_assign_k_i_10d_blocked ( struct ndarray * arrays [], void * data ) {
1793
+ // cppcheck-suppress constVariablePointer
1775
1794
STDLIB_NDARRAY_ASSIGN_10D_BLOCKED_LOOP_CAST ( int16_t , int32_t )
1776
1795
return 0 ;
1777
1796
}
@@ -1859,6 +1878,7 @@ int8_t stdlib_ndarray_assign_k_i_10d_blocked( struct ndarray *arrays[], void *da
1859
1878
* stdlib_ndarray_free( y );
1860
1879
*/
1861
1880
int8_t stdlib_ndarray_assign_k_i_nd ( struct ndarray * arrays [], void * data ) {
1881
+ // cppcheck-suppress constVariablePointer
1862
1882
STDLIB_NDARRAY_ASSIGN_ND_LOOP_CAST ( int16_t , int32_t )
1863
1883
return 0 ;
1864
1884
}
0 commit comments