summaryrefslogtreecommitdiffstats
path: root/src/H5Pdapl.c
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-06-28 14:31:56 (GMT)
committerGitHub <noreply@github.com>2023-06-28 14:31:56 (GMT)
commit7a44581a84778a1346a2fd5b6cca7d9db905a321 (patch)
tree44ea9c2d1b471eb227698abe8499c34cfa6d47d2 /src/H5Pdapl.c
parent622fcbd13881fbc58bbeaed3062583b759f5e864 (diff)
downloadhdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.zip
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.gz
hdf5-7a44581a84778a1346a2fd5b6cca7d9db905a321.tar.bz2
Rename HDassert() to assert() (#3191)
* Change HDassert to assert * Fix bin/make_err
Diffstat (limited to 'src/H5Pdapl.c')
-rw-r--r--src/H5Pdapl.c78
1 files changed, 39 insertions, 39 deletions
diff --git a/src/H5Pdapl.c b/src/H5Pdapl.c
index 268728d..7fae53b 100644
--- a/src/H5Pdapl.c
+++ b/src/H5Pdapl.c
@@ -269,7 +269,7 @@ H5P__dapl_vds_file_pref_set(hid_t H5_ATTR_UNUSED prop_id, const char H5_ATTR_UNU
FUNC_ENTER_PACKAGE_NOERR
/* Sanity check */
- HDassert(value);
+ assert(value);
/* Copy the prefix */
*(char **)value = H5MM_xstrdup(*(const char **)value);
@@ -293,7 +293,7 @@ H5P__dapl_vds_file_pref_get(hid_t H5_ATTR_UNUSED prop_id, const char H5_ATTR_UNU
FUNC_ENTER_PACKAGE_NOERR
/* Sanity check */
- HDassert(value);
+ assert(value);
/* Copy the prefix */
*(char **)value = H5MM_xstrdup(*(const char **)value);
@@ -330,7 +330,7 @@ H5P__dapl_vds_file_pref_enc(const void *value, void **_pp, size_t *size)
enc_value = (uint64_t)len;
enc_size = H5VM_limit_enc_size(enc_value);
- HDassert(enc_size < 256);
+ assert(enc_size < 256);
if (NULL != *pp) {
/* encode the length of the prefix */
@@ -373,14 +373,14 @@ H5P__dapl_vds_file_pref_dec(const void **_pp, void *_value)
FUNC_ENTER_PACKAGE
- HDassert(pp);
- HDassert(*pp);
- HDassert(vds_file_pref);
+ assert(pp);
+ assert(*pp);
+ assert(vds_file_pref);
HDcompile_assert(sizeof(size_t) <= sizeof(uint64_t));
/* Decode the size */
enc_size = *(*pp)++;
- HDassert(enc_size < 256);
+ assert(enc_size < 256);
/* Decode the value */
UINT64DECODE_VAR(*pp, enc_value, enc_size);
@@ -416,7 +416,7 @@ H5P__dapl_vds_file_pref_del(hid_t H5_ATTR_UNUSED prop_id, const char H5_ATTR_UNU
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(value);
+ assert(value);
H5MM_xfree(*(void **)value);
@@ -436,7 +436,7 @@ H5P__dapl_vds_file_pref_copy(const char H5_ATTR_UNUSED *name, size_t H5_ATTR_UNU
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(value);
+ assert(value);
*(char **)value = H5MM_xstrdup(*(const char **)value);
@@ -486,7 +486,7 @@ H5P__dapl_vds_file_pref_close(const char H5_ATTR_UNUSED *name, size_t H5_ATTR_UN
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(value);
+ assert(value);
H5MM_xfree(*(void **)value);
@@ -509,7 +509,7 @@ H5P__dapl_efile_pref_set(hid_t H5_ATTR_UNUSED prop_id, const char H5_ATTR_UNUSED
FUNC_ENTER_PACKAGE_NOERR
/* Sanity check */
- HDassert(value);
+ assert(value);
/* Copy the prefix */
*(char **)value = H5MM_xstrdup(*(const char **)value);
@@ -533,7 +533,7 @@ H5P__dapl_efile_pref_get(hid_t H5_ATTR_UNUSED prop_id, const char H5_ATTR_UNUSED
FUNC_ENTER_PACKAGE_NOERR
/* Sanity check */
- HDassert(value);
+ assert(value);
/* Copy the prefix */
*(char **)value = H5MM_xstrdup(*(const char **)value);
@@ -570,7 +570,7 @@ H5P__dapl_efile_pref_enc(const void *value, void **_pp, size_t *size)
enc_value = (uint64_t)len;
enc_size = H5VM_limit_enc_size(enc_value);
- HDassert(enc_size < 256);
+ assert(enc_size < 256);
if (NULL != *pp) {
/* encode the length of the prefix */
@@ -613,14 +613,14 @@ H5P__dapl_efile_pref_dec(const void **_pp, void *_value)
FUNC_ENTER_PACKAGE
- HDassert(pp);
- HDassert(*pp);
- HDassert(efile_pref);
+ assert(pp);
+ assert(*pp);
+ assert(efile_pref);
HDcompile_assert(sizeof(size_t) <= sizeof(uint64_t));
/* Decode the size */
enc_size = *(*pp)++;
- HDassert(enc_size < 256);
+ assert(enc_size < 256);
/* Decode the value */
UINT64DECODE_VAR(*pp, enc_value, enc_size);
@@ -656,7 +656,7 @@ H5P__dapl_efile_pref_del(hid_t H5_ATTR_UNUSED prop_id, const char H5_ATTR_UNUSED
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(value);
+ assert(value);
H5MM_xfree(*(void **)value);
@@ -676,7 +676,7 @@ H5P__dapl_efile_pref_copy(const char H5_ATTR_UNUSED *name, size_t H5_ATTR_UNUSED
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(value);
+ assert(value);
*(char **)value = H5MM_xstrdup(*(const char **)value);
@@ -726,7 +726,7 @@ H5P__dapl_efile_pref_close(const char H5_ATTR_UNUSED *name, size_t H5_ATTR_UNUSE
{
FUNC_ENTER_PACKAGE_NOERR
- HDassert(value);
+ assert(value);
H5MM_xfree(*(void **)value);
@@ -874,7 +874,7 @@ H5P__encode_chunk_cache_nslots(const void *value, void **_pp, size_t *size)
/* Sanity checks */
HDcompile_assert(sizeof(size_t) <= sizeof(uint64_t));
- HDassert(size);
+ assert(size);
/* Determine if this is the default value, in which case only encode
* enc_size (as 255). Also set size needed for encoding. */
@@ -885,11 +885,11 @@ H5P__encode_chunk_cache_nslots(const void *value, void **_pp, size_t *size)
else {
enc_value = (uint64_t) * (const size_t *)value;
enc_size = H5VM_limit_enc_size(enc_value);
- HDassert(enc_size > 0);
+ assert(enc_size > 0);
*size += (1 + enc_size);
} /* end else */
- HDassert(enc_size < 256);
+ assert(enc_size < 256);
if (NULL != *pp) {
/* Encode the size */
@@ -929,13 +929,13 @@ H5P__decode_chunk_cache_nslots(const void **_pp, void *_value)
/* Sanity check */
HDcompile_assert(sizeof(size_t) <= sizeof(uint64_t));
- HDassert(pp);
- HDassert(*pp);
- HDassert(value);
+ assert(pp);
+ assert(*pp);
+ assert(value);
/* Decode the size */
enc_size = *(*pp)++;
- HDassert(enc_size < 256);
+ assert(enc_size < 256);
/* Determine if enc_size indicates that this is the default value, in which
* case set value to H5D_ACS_DATA_CACHE_NUM_SLOTS_DEF and return */
@@ -974,7 +974,7 @@ H5P__encode_chunk_cache_nbytes(const void *value, void **_pp, size_t *size)
/* Sanity checks */
HDcompile_assert(sizeof(size_t) <= sizeof(uint64_t));
- HDassert(size);
+ assert(size);
/* Determine if this is the default value, in which case only encode
* enc_size (as 255). Also set size needed for encoding. */
@@ -985,11 +985,11 @@ H5P__encode_chunk_cache_nbytes(const void *value, void **_pp, size_t *size)
else {
enc_value = (uint64_t) * (const size_t *)value;
enc_size = H5VM_limit_enc_size(enc_value);
- HDassert(enc_size > 0);
+ assert(enc_size > 0);
*size += (1 + enc_size);
} /* end else */
- HDassert(enc_size < 256);
+ assert(enc_size < 256);
if (NULL != *pp) {
/* Encode the size */
@@ -1029,13 +1029,13 @@ H5P__decode_chunk_cache_nbytes(const void **_pp, void *_value)
/* Sanity check */
HDcompile_assert(sizeof(size_t) <= sizeof(uint64_t));
- HDassert(pp);
- HDassert(*pp);
- HDassert(value);
+ assert(pp);
+ assert(*pp);
+ assert(value);
/* Decode the size */
enc_size = *(*pp)++;
- HDassert(enc_size < 256);
+ assert(enc_size < 256);
/* Determine if enc_size indicates that this is the default value, in which
* case set value to H5D_ACS_DATA_CACHE_BYTE_SIZE_DEF and return */
@@ -1144,8 +1144,8 @@ H5P__dacc_vds_view_enc(const void *value, void **_pp, size_t *size)
FUNC_ENTER_PACKAGE_NOERR
/* Sanity check */
- HDassert(view);
- HDassert(size);
+ assert(view);
+ assert(size);
if (NULL != *pp)
/* Encode EDC property */
@@ -1176,9 +1176,9 @@ H5P__dacc_vds_view_dec(const void **_pp, void *_value)
FUNC_ENTER_PACKAGE_NOERR
/* Sanity checks */
- HDassert(pp);
- HDassert(*pp);
- HDassert(view);
+ assert(pp);
+ assert(*pp);
+ assert(view);
/* Decode EDC property */
*view = (H5D_vds_view_t) * (*pp)++;