|
105 | 105 | * // Apply the callback: |
106 | 106 | * stdlib_strided_ddddd_d( arrays, shape, strides, (void *)add5 ); |
107 | 107 | */ |
108 | | -void stdlib_strided_ddddd_d( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn ) { |
| 108 | +void stdlib_strided_ddddd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { |
109 | 109 | QuinaryFcnFloat64 *f = (QuinaryFcnFloat64 *)fcn; |
110 | 110 | STDLIB_QUINARY_LOOP_CLBK( double, double ) |
111 | 111 | } |
@@ -147,7 +147,7 @@ void stdlib_strided_ddddd_d( uint8_t *arrays[], int64_t *shape, int64_t *strides |
147 | 147 | * // Apply the callback: |
148 | 148 | * stdlib_strided_fffff_f( arrays, shape, strides, (void *)add5 ); |
149 | 149 | */ |
150 | | -void stdlib_strided_fffff_f( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn ) { |
| 150 | +void stdlib_strided_fffff_f( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { |
151 | 151 | QuinaryFcnFloat32 *f = (QuinaryFcnFloat32 *)fcn; |
152 | 152 | STDLIB_QUINARY_LOOP_CLBK( float, float ) |
153 | 153 | } |
@@ -189,7 +189,7 @@ void stdlib_strided_fffff_f( uint8_t *arrays[], int64_t *shape, int64_t *strides |
189 | 189 | * // Apply the callback: |
190 | 190 | * stdlib_strided_fffff_f_as_ddddd_d( arrays, shape, strides, (void *)add5 ); |
191 | 191 | */ |
192 | | -void stdlib_strided_fffff_f_as_ddddd_d( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn ) { |
| 192 | +void stdlib_strided_fffff_f_as_ddddd_d( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { |
193 | 193 | QuinaryFcnFloat64 *f = (QuinaryFcnFloat64 *)fcn; |
194 | 194 | STDLIB_QUINARY_LOOP_CLBK_ARG_CAST( float, float, double ) |
195 | 195 | } |
@@ -231,7 +231,7 @@ void stdlib_strided_fffff_f_as_ddddd_d( uint8_t *arrays[], int64_t *shape, int64 |
231 | 231 | * // Apply the callback: |
232 | 232 | * stdlib_strided_IIIII_I( arrays, shape, strides, (void *)add5 ); |
233 | 233 | */ |
234 | | -void stdlib_strided_IIIII_I( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn ) { |
| 234 | +void stdlib_strided_IIIII_I( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { |
235 | 235 | QuinaryFcnUint32 *f = (QuinaryFcnUint32 *)fcn; |
236 | 236 | STDLIB_QUINARY_LOOP_CLBK( uint32_t, uint32_t ) |
237 | 237 | } |
@@ -273,7 +273,7 @@ void stdlib_strided_IIIII_I( uint8_t *arrays[], int64_t *shape, int64_t *strides |
273 | 273 | * // Apply the callback: |
274 | 274 | * stdlib_strided_iiiii_i( arrays, shape, strides, (void *)add5 ); |
275 | 275 | */ |
276 | | -void stdlib_strided_iiiii_i( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn ) { |
| 276 | +void stdlib_strided_iiiii_i( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { |
277 | 277 | QuinaryFcnInt32 *f = (QuinaryFcnInt32 *)fcn; |
278 | 278 | STDLIB_QUINARY_LOOP_CLBK( int32_t, int32_t ) |
279 | 279 | } |
@@ -315,7 +315,7 @@ void stdlib_strided_iiiii_i( uint8_t *arrays[], int64_t *shape, int64_t *strides |
315 | 315 | * // Apply the callback: |
316 | 316 | * stdlib_strided_HHHHH_H( arrays, shape, strides, (void *)add5 ); |
317 | 317 | */ |
318 | | -void stdlib_strided_HHHHH_H( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn ) { |
| 318 | +void stdlib_strided_HHHHH_H( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { |
319 | 319 | QuinaryFcnUint16 *f = (QuinaryFcnUint16 *)fcn; |
320 | 320 | STDLIB_QUINARY_LOOP_CLBK( uint16_t, uint16_t ) |
321 | 321 | } |
@@ -357,7 +357,7 @@ void stdlib_strided_HHHHH_H( uint8_t *arrays[], int64_t *shape, int64_t *strides |
357 | 357 | * // Apply the callback: |
358 | 358 | * stdlib_strided_hhhhh_h( arrays, shape, strides, (void *)add5 ); |
359 | 359 | */ |
360 | | -void stdlib_strided_hhhhh_h( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn ) { |
| 360 | +void stdlib_strided_hhhhh_h( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { |
361 | 361 | QuinaryFcnInt16 *f = (QuinaryFcnInt16 *)fcn; |
362 | 362 | STDLIB_QUINARY_LOOP_CLBK( int16_t, int16_t ) |
363 | 363 | } |
@@ -399,7 +399,7 @@ void stdlib_strided_hhhhh_h( uint8_t *arrays[], int64_t *shape, int64_t *strides |
399 | 399 | * // Apply the callback: |
400 | 400 | * stdlib_strided_BBBBB_B( arrays, shape, strides, (void *)add5 ); |
401 | 401 | */ |
402 | | -void stdlib_strided_BBBBB_B( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn ) { |
| 402 | +void stdlib_strided_BBBBB_B( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { |
403 | 403 | QuinaryFcnUint8 *f = (QuinaryFcnUint8 *)fcn; |
404 | 404 | STDLIB_QUINARY_LOOP_CLBK( uint8_t, uint8_t ) |
405 | 405 | } |
@@ -441,7 +441,7 @@ void stdlib_strided_BBBBB_B( uint8_t *arrays[], int64_t *shape, int64_t *strides |
441 | 441 | * // Apply the callback: |
442 | 442 | * stdlib_strided_bbbbb_b( arrays, shape, strides, (void *)add5 ); |
443 | 443 | */ |
444 | | -void stdlib_strided_bbbbb_b( uint8_t *arrays[], int64_t *shape, int64_t *strides, void *fcn ) { |
| 444 | +void stdlib_strided_bbbbb_b( uint8_t *arrays[], const int64_t *shape, const int64_t *strides, void *fcn ) { |
445 | 445 | QuinaryFcnInt8 *f = (QuinaryFcnInt8 *)fcn; |
446 | 446 | STDLIB_QUINARY_LOOP_CLBK( int8_t, int8_t ) |
447 | 447 | } |
0 commit comments