summaryrefslogtreecommitdiffstats
path: root/src/H5Snone.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Snone.c')
-rw-r--r--src/H5Snone.c108
1 files changed, 54 insertions, 54 deletions
diff --git a/src/H5Snone.c b/src/H5Snone.c
index c6e862c..f7f0b8a 100644
--- a/src/H5Snone.c
+++ b/src/H5Snone.c
@@ -148,8 +148,8 @@ H5S__none_iter_init(H5S_t H5_ATTR_UNUSED *space, H5S_sel_iter_t *iter)
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(space && H5S_SEL_NONE == H5S_GET_SELECT_TYPE(space));
- HDassert(iter);
+ assert(space && H5S_SEL_NONE == H5S_GET_SELECT_TYPE(space));
+ assert(iter);
/* Initialize type of selection iterator */
iter->type = H5S_sel_iter_none;
@@ -176,8 +176,8 @@ H5S__none_iter_coords(const H5S_sel_iter_t H5_ATTR_UNUSED *iter, hsize_t H5_ATTR
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(iter);
- HDassert(coords);
+ assert(iter);
+ assert(coords);
FUNC_LEAVE_NOAPI(FAIL)
} /* end H5S__none_iter_coords() */
@@ -202,9 +202,9 @@ H5S__none_iter_block(const H5S_sel_iter_t H5_ATTR_UNUSED *iter, hsize_t H5_ATTR_
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(iter);
- HDassert(start);
- HDassert(end);
+ assert(iter);
+ assert(start);
+ assert(end);
FUNC_LEAVE_NOAPI(FAIL)
} /* end H5S__none_iter_block() */
@@ -227,7 +227,7 @@ H5S__none_iter_nelmts(const H5S_sel_iter_t H5_ATTR_UNUSED *iter)
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(iter);
+ assert(iter);
FUNC_LEAVE_NOAPI(0)
} /* end H5S__none_iter_nelmts() */
@@ -255,7 +255,7 @@ H5S__none_iter_has_next_block(const H5S_sel_iter_t H5_ATTR_UNUSED *iter)
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(iter);
+ assert(iter);
FUNC_LEAVE_NOAPI(FAIL)
} /* end H5S__none_iter_has_next_block() */
@@ -284,8 +284,8 @@ H5S__none_iter_next(H5S_sel_iter_t H5_ATTR_UNUSED *iter, size_t H5_ATTR_UNUSED n
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(iter);
- HDassert(nelem > 0);
+ assert(iter);
+ assert(nelem > 0);
FUNC_LEAVE_NOAPI(SUCCEED)
} /* end H5S__none_iter_next() */
@@ -313,7 +313,7 @@ H5S__none_iter_next_block(H5S_sel_iter_t H5_ATTR_UNUSED *iter)
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(iter);
+ assert(iter);
FUNC_LEAVE_NOAPI(FAIL)
} /* end H5S__none_iter_next_block() */
@@ -355,13 +355,13 @@ H5S__none_iter_get_seq_list(H5S_sel_iter_t H5_ATTR_UNUSED *iter, size_t H5_ATTR_
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(iter);
- HDassert(maxseq > 0);
- HDassert(maxelem > 0);
- HDassert(nseq);
- HDassert(nelem);
- HDassert(off);
- HDassert(len);
+ assert(iter);
+ assert(maxseq > 0);
+ assert(maxelem > 0);
+ assert(nseq);
+ assert(nelem);
+ assert(off);
+ assert(len);
/* "none" selections don't generate sequences of bytes */
*nseq = 0;
@@ -395,7 +395,7 @@ H5S__none_iter_release(H5S_sel_iter_t H5_ATTR_UNUSED *iter)
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(iter);
+ assert(iter);
FUNC_LEAVE_NOAPI(SUCCEED)
} /* end H5S__none_iter_release() */
@@ -423,7 +423,7 @@ H5S__none_release(H5S_t H5_ATTR_UNUSED *space)
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(space);
+ assert(space);
FUNC_LEAVE_NOAPI(SUCCEED)
} /* end H5S__none_release() */
@@ -453,8 +453,8 @@ H5S__none_copy(H5S_t *dst, const H5S_t H5_ATTR_UNUSED *src, hbool_t H5_ATTR_UNUS
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(src);
- HDassert(dst);
+ assert(src);
+ assert(dst);
/* Set number of elements in selection */
dst->select.num_elem = 0;
@@ -487,7 +487,7 @@ H5S__none_is_valid(const H5S_t H5_ATTR_UNUSED *space)
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(space);
+ assert(space);
FUNC_LEAVE_NOAPI(TRUE)
} /* end H5S__none_is_valid() */
@@ -516,7 +516,7 @@ H5S__none_serial_size(H5S_t H5_ATTR_UNUSED *space)
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(space);
+ assert(space);
/* Basic number of bytes required to serialize point selection:
* <type (4 bytes)> + <version (4 bytes)> + <padding (4 bytes)> +
@@ -554,9 +554,9 @@ H5S__none_serialize(H5S_t *space, uint8_t **p)
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(space);
- HDassert(p);
- HDassert(pp);
+ assert(space);
+ assert(p);
+ assert(pp);
/* Store the preamble information */
UINT32ENCODE(pp, (uint32_t)H5S_GET_SELECT_TYPE(space)); /* Store the type of selection */
@@ -603,8 +603,8 @@ H5S__none_deserialize(H5S_t **space, const uint8_t **p, const size_t p_size, hbo
FUNC_ENTER_PACKAGE
- HDassert(p);
- HDassert(*p);
+ assert(p);
+ assert(*p);
/* As part of the efforts to push all selection-type specific coding
to the callbacks, the coding for the allocation of a null dataspace
@@ -679,9 +679,9 @@ H5S__none_bounds(const H5S_t H5_ATTR_UNUSED *space, hsize_t H5_ATTR_UNUSED *star
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(space);
- HDassert(start);
- HDassert(end);
+ assert(space);
+ assert(start);
+ assert(end);
FUNC_LEAVE_NOAPI(FAIL)
} /* end H5S_none_bounds() */
@@ -711,8 +711,8 @@ H5S__none_offset(const H5S_t H5_ATTR_UNUSED *space, hsize_t H5_ATTR_UNUSED *offs
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(space);
- HDassert(offset);
+ assert(space);
+ assert(offset);
FUNC_LEAVE_NOAPI(FAIL)
} /* end H5S__none_offset() */
@@ -767,7 +767,7 @@ H5S__none_is_contiguous(const H5S_t H5_ATTR_UNUSED *space)
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(space);
+ assert(space);
FUNC_LEAVE_NOAPI(FALSE)
} /* end H5S__none_is_contiguous() */
@@ -795,7 +795,7 @@ H5S__none_is_single(const H5S_t H5_ATTR_UNUSED *space)
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(space);
+ assert(space);
FUNC_LEAVE_NOAPI(FALSE)
} /* end H5S__none_is_single() */
@@ -825,7 +825,7 @@ H5S__none_is_regular(H5S_t H5_ATTR_UNUSED *space)
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(space);
+ assert(space);
FUNC_LEAVE_NOAPI(TRUE)
} /* end H5S__none_is_regular() */
@@ -855,8 +855,8 @@ H5S__none_shape_same(H5S_t H5_ATTR_UNUSED *space1, H5S_t H5_ATTR_UNUSED *space2)
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(space1);
- HDassert(space2);
+ assert(space1);
+ assert(space2);
FUNC_LEAVE_NOAPI(TRUE)
} /* end H5S__none_shape_same() */
@@ -887,10 +887,10 @@ H5S__none_intersect_block(H5S_t H5_ATTR_UNUSED *space, const hsize_t H5_ATTR_UNU
FUNC_ENTER_PACKAGE_NOERR
/* Sanity check */
- HDassert(space);
- HDassert(H5S_SEL_NONE == H5S_GET_SELECT_TYPE(space));
- HDassert(start);
- HDassert(end);
+ assert(space);
+ assert(H5S_SEL_NONE == H5S_GET_SELECT_TYPE(space));
+ assert(start);
+ assert(end);
FUNC_LEAVE_NOAPI(FALSE)
} /* end H5S__none_intersect_block() */
@@ -919,8 +919,8 @@ H5S__none_adjust_u(H5S_t H5_ATTR_UNUSED *space, const hsize_t H5_ATTR_UNUSED *of
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(space);
- HDassert(offset);
+ assert(space);
+ assert(offset);
FUNC_LEAVE_NOAPI(SUCCEED)
} /* end H5S__none_adjust_u() */
@@ -949,8 +949,8 @@ H5S__none_adjust_s(H5S_t H5_ATTR_UNUSED *space, const hssize_t H5_ATTR_UNUSED *o
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(space);
- HDassert(offset);
+ assert(space);
+ assert(offset);
FUNC_LEAVE_NOAPI(SUCCEED)
} /* end H5S__none_adjust_s() */
@@ -973,8 +973,8 @@ H5S__none_project_scalar(const H5S_t H5_ATTR_UNUSED *space, hsize_t H5_ATTR_UNUS
FUNC_ENTER_PACKAGE_NOERR
/* Check args */
- HDassert(space && H5S_SEL_NONE == H5S_GET_SELECT_TYPE(space));
- HDassert(offset);
+ assert(space && H5S_SEL_NONE == H5S_GET_SELECT_TYPE(space));
+ assert(offset);
FUNC_LEAVE_NOAPI(FAIL)
} /* end H5S__none_project_scalar() */
@@ -1001,9 +1001,9 @@ H5S__none_project_simple(const H5S_t H5_ATTR_UNUSED *base_space, H5S_t *new_spac
FUNC_ENTER_PACKAGE
/* Check args */
- HDassert(base_space && H5S_SEL_NONE == H5S_GET_SELECT_TYPE(base_space));
- HDassert(new_space);
- HDassert(offset);
+ assert(base_space && H5S_SEL_NONE == H5S_GET_SELECT_TYPE(base_space));
+ assert(new_space);
+ assert(offset);
/* Select the entire new space */
if (H5S_select_none(new_space) < 0)
@@ -1038,7 +1038,7 @@ H5S_select_none(H5S_t *space)
FUNC_ENTER_NOAPI(FAIL)
/* Check args */
- HDassert(space);
+ assert(space);
/* Remove current selection first */
if (H5S_SELECT_RELEASE(space) < 0)