void fill_double_array(double *array, long n, double value)
Fills a double array with the specified value.
void fill_int_array(int *array, long n, int value)
Fills an int array with the specified value.
void fill_short_array(short *array, long n, short value)
Fills a short array with the specified value.
void fill_float_array(float *array, long n, float value)
Fills a float array with the specified value.
void fill_long_array(long *array, long n, long value)
Fills a long array with the specified value.