aboutsummaryrefslogtreecommitdiff
path: root/src/common/store.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/store.h')
-rw-r--r--src/common/store.h64
1 files changed, 32 insertions, 32 deletions
diff --git a/src/common/store.h b/src/common/store.h
index 678d663..e042552 100644
--- a/src/common/store.h
+++ b/src/common/store.h
@@ -9,68 +9,68 @@
*/
void AEILocalInterp_store_1dcube2
- (fp factor, const struct coeffs_struct_1d_cube_size2 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_1d_cube_size2 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride);
void AEILocalInterp_store_1dcube3
- (fp factor, const struct coeffs_struct_1d_cube_size3 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_1d_cube_size3 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride);
void AEILocalInterp_store_1dcube4
- (fp factor, const struct coeffs_struct_1d_cube_size4 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_1d_cube_size4 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride);
void AEILocalInterp_store_1dcube5
- (fp factor, const struct coeffs_struct_1d_cube_size5 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_1d_cube_size5 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride);
void AEILocalInterp_store_1dcube6
- (fp factor, const struct coeffs_struct_1d_cube_size6 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_1d_cube_size6 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride);
void AEILocalInterp_store_1dcube7
- (fp factor, const struct coeffs_struct_1d_cube_size7 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_1d_cube_size7 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride);
void AEILocalInterp_store_2dcube2
- (fp factor, const struct coeffs_struct_2d_cube_size2 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_2d_cube_size2 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride, int Jacobian_mj_stride);
void AEILocalInterp_store_2dcube3
- (fp factor, const struct coeffs_struct_2d_cube_size3 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_2d_cube_size3 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride, int Jacobian_mj_stride);
void AEILocalInterp_store_2dcube4
- (fp factor, const struct coeffs_struct_2d_cube_size4 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_2d_cube_size4 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride, int Jacobian_mj_stride);
void AEILocalInterp_store_2dcube5
- (fp factor, const struct coeffs_struct_2d_cube_size5 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_2d_cube_size5 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride, int Jacobian_mj_stride);
void AEILocalInterp_store_2dcube6
- (fp factor, const struct coeffs_struct_2d_cube_size6 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_2d_cube_size6 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride, int Jacobian_mj_stride);
void AEILocalInterp_store_3dcube2
- (fp factor, const struct coeffs_struct_3d_cube_size2 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_3d_cube_size2 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride, int Jacobian_mj_stride, int Jacobian_mk_stride);
void AEILocalInterp_store_3dcube3
- (fp factor, const struct coeffs_struct_3d_cube_size3 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_3d_cube_size3 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride, int Jacobian_mj_stride, int Jacobian_mk_stride);
void AEILocalInterp_store_3dcube4
- (fp factor, const struct coeffs_struct_3d_cube_size4 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_3d_cube_size4 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride, int Jacobian_mj_stride, int Jacobian_mk_stride);
void AEILocalInterp_store_3dcube5
- (fp factor, const struct coeffs_struct_3d_cube_size5 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_3d_cube_size5 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride, int Jacobian_mj_stride, int Jacobian_mk_stride);
void AEILocalInterp_store_3dcube6
- (fp factor, const struct coeffs_struct_3d_cube_size6 *restrict coeffs,
- fp *restrict Jacobian_ptr,
+ (fp factor, const struct coeffs_struct_3d_cube_size6 *coeffs,
+ fp Jacobian_ptr[],
int Jacobian_mi_stride, int Jacobian_mj_stride, int Jacobian_mk_stride);