reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
/*
 * Use of this software is governed by the MIT license
 */

#ifndef ISL_FIXED_BOX_H
#define ISL_FIXED_BOX_H

#include <isl/ctx.h>
#include <isl/val_type.h>
#include <isl/space_type.h>
#include <isl/aff_type.h>

#if defined(__cplusplus)
extern "C" {
#endif

struct isl_fixed_box;
typedef struct isl_fixed_box isl_fixed_box;

isl_ctx *isl_fixed_box_get_ctx(__isl_keep isl_fixed_box *box);
__isl_give isl_space *isl_fixed_box_get_space(__isl_keep isl_fixed_box *box);
isl_bool isl_fixed_box_is_valid(__isl_keep isl_fixed_box *box);
__isl_give isl_multi_aff *isl_fixed_box_get_offset(
	__isl_keep isl_fixed_box *box);
__isl_give isl_multi_val *isl_fixed_box_get_size(__isl_keep isl_fixed_box *box);

__isl_give isl_fixed_box *isl_fixed_box_copy(__isl_keep isl_fixed_box *box);
__isl_null isl_fixed_box *isl_fixed_box_free(__isl_take isl_fixed_box *box);

#if defined(__cplusplus)
}
#endif

#endif