make isl_mat_sub_* functions private
[platform/upstream/isl.git] / isl_mat_private.h
1 #include <isl/mat.h>
2
3 struct isl_mat {
4         int ref;
5
6         struct isl_ctx *ctx;
7
8 #define ISL_MAT_BORROWED                (1 << 0)
9         unsigned flags;
10
11         unsigned n_row;
12         unsigned n_col;
13
14         isl_int **row;
15
16         /* actual size of the rows in memory; n_col <= max_col */
17         unsigned max_col;
18
19         struct isl_blk block;
20 };
21
22 struct isl_mat *isl_mat_sub_alloc(struct isl_ctx *ctx, isl_int **row,
23         unsigned first_row, unsigned n_row, unsigned first_col, unsigned n_col);
24 void isl_mat_sub_copy(struct isl_ctx *ctx, isl_int **dst, isl_int **src,
25         unsigned n_row, unsigned dst_col, unsigned src_col, unsigned n_col);
26 void isl_mat_sub_neg(struct isl_ctx *ctx, isl_int **dst, isl_int **src,
27         unsigned n_row, unsigned dst_col, unsigned src_col, unsigned n_col);