Lines Matching refs:bound
14 isl_val_free(tile->bound[j].size); in gpu_array_tile_free()
15 isl_val_free(tile->bound[j].stride); in gpu_array_tile_free()
16 isl_aff_free(tile->bound[j].lb); in gpu_array_tile_free()
17 isl_aff_free(tile->bound[j].shift); in gpu_array_tile_free()
19 free(tile->bound); in gpu_array_tile_free()
38 tile->bound = isl_alloc_array(ctx, struct gpu_array_bound, n_index); in gpu_array_tile_create()
39 if (!tile->bound) in gpu_array_tile_create()
45 tile->bound[i].size = NULL; in gpu_array_tile_create()
46 tile->bound[i].lb = NULL; in gpu_array_tile_create()
47 tile->bound[i].stride = NULL; in gpu_array_tile_create()
48 tile->bound[i].shift = NULL; in gpu_array_tile_create()
68 size = isl_val_mul(size, isl_val_copy(tile->bound[i].size)); in gpu_array_tile_size()