mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-22 13:47:44 +01:00
Updated dependencies: * GMP 6.2.1 * ISL 0.24 * MPL 1.2.1 * MPFR 4.1.0 The dependencies were pulled in by running the ./contrib/download_prerequisites script and then manually removing the symbolic links and archives, and renaming the directories (i.e mv isl-0.24 to isl)
28 lines
845 B
C
28 lines
845 B
C
#ifndef ISL_POINT_PRIVATE_H
|
|
#define ISL_POINT_PRIVATE_H
|
|
|
|
#include <isl/space.h>
|
|
#include <isl/point.h>
|
|
#include <isl/vec.h>
|
|
|
|
struct isl_point {
|
|
int ref;
|
|
isl_space *dim;
|
|
struct isl_vec *vec;
|
|
};
|
|
|
|
__isl_give isl_point *isl_point_alloc(__isl_take isl_space *space,
|
|
__isl_take isl_vec *vec);
|
|
|
|
__isl_keep isl_space *isl_point_peek_space(__isl_keep isl_point *pnt);
|
|
__isl_give isl_space *isl_point_take_space(__isl_keep isl_point *pnt);
|
|
__isl_give isl_point *isl_point_restore_space(__isl_take isl_point *pnt,
|
|
__isl_take isl_space *space);
|
|
__isl_keep isl_vec *isl_point_peek_vec(__isl_keep isl_point *pnt);
|
|
__isl_give isl_vec *isl_point_get_vec(__isl_keep isl_point *pnt);
|
|
__isl_give isl_vec *isl_point_take_vec(__isl_keep isl_point *pnt);
|
|
__isl_give isl_point *isl_point_restore_vec(__isl_take isl_point *pnt,
|
|
__isl_take isl_vec *vec);
|
|
|
|
#endif
|