clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
31 lines
725 B
C
31 lines
725 B
C
/*
|
|
* Use of this software is governed by the MIT license
|
|
*/
|
|
|
|
#ifndef ISL_STRIDE_INFO_H
|
|
#define ISL_STRIDE_INFO_H
|
|
|
|
#include <isl/val_type.h>
|
|
#include <isl/aff_type.h>
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct isl_stride_info;
|
|
typedef struct isl_stride_info isl_stride_info;
|
|
|
|
isl_ctx *isl_stride_info_get_ctx(__isl_keep isl_stride_info *si);
|
|
__isl_give isl_val *isl_stride_info_get_stride(__isl_keep isl_stride_info *si);
|
|
__isl_give isl_aff *isl_stride_info_get_offset(__isl_keep isl_stride_info *si);
|
|
__isl_null isl_stride_info *isl_stride_info_free(
|
|
__isl_take isl_stride_info *si);
|
|
__isl_give isl_stride_info *isl_stride_info_copy(
|
|
__isl_keep isl_stride_info *si);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif
|