summaryrefslogtreecommitdiffstats
path: root/src/H5Iint.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-26 21:45:46 (GMT)
committerGitHub <noreply@github.com>2022-07-26 21:45:46 (GMT)
commitae414872f50187e64cbd6cc8f076c22cf5df2d53 (patch)
treeb616f33f5daa89f213e7c64e04c63afde906e939 /src/H5Iint.c
parent213eac2588369f75a11df6bb1788dde33c4b82e2 (diff)
downloadhdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.zip
hdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.tar.gz
hdf5-ae414872f50187e64cbd6cc8f076c22cf5df2d53.tar.bz2
Develop clang 13 format (#1933)
* Update format source to clang 13 * More format changes
Diffstat (limited to 'src/H5Iint.c')
-rw-r--r--src/H5Iint.c46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/H5Iint.c b/src/H5Iint.c
index e382efc..5675374 100644
--- a/src/H5Iint.c
+++ b/src/H5Iint.c
@@ -53,7 +53,7 @@ typedef struct {
/* User data for iterator callback for ID iteration */
typedef struct {
H5I_search_func_t user_func; /* 'User' function to invoke */
- void * user_udata; /* User data to pass to 'user' function */
+ void *user_udata; /* User data to pass to 'user' function */
hbool_t app_ref; /* Whether this is an appl. ref. call */
H5I_type_t obj_type; /* Type of object we are iterating over */
} H5I_iterate_ud_t;
@@ -73,9 +73,9 @@ typedef struct {
/* Local Prototypes */
/********************/
-static void * H5I__unwrap(void *object, H5I_type_t type);
+static void *H5I__unwrap(void *object, H5I_type_t type);
static herr_t H5I__mark_node(void *_id, void *key, void *udata);
-static void * H5I__remove_common(H5I_type_info_t *type_info, hid_t id);
+static void *H5I__remove_common(H5I_type_info_t *type_info, hid_t id);
static int H5I__dec_ref(hid_t id, void **request);
static int H5I__dec_app_ref(hid_t id, void **request);
static int H5I__dec_app_ref_always_close(hid_t id, void **request);
@@ -300,8 +300,8 @@ herr_t
H5I_clear_type(H5I_type_t type, hbool_t force, hbool_t app_ref)
{
H5I_clear_type_ud_t udata; /* udata struct for callback */
- H5I_id_info_t * item = NULL;
- H5I_id_info_t * tmp = NULL;
+ H5I_id_info_t *item = NULL;
+ H5I_id_info_t *tmp = NULL;
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)
@@ -366,7 +366,7 @@ done:
static herr_t
H5I__mark_node(void *_info, void H5_ATTR_UNUSED *key, void *_udata)
{
- H5I_id_info_t * info = (H5I_id_info_t *)_info; /* Current ID info being worked with */
+ H5I_id_info_t *info = (H5I_id_info_t *)_info; /* Current ID info being worked with */
H5I_clear_type_ud_t *udata = (H5I_clear_type_ud_t *)_udata; /* udata struct */
hbool_t mark = FALSE;
@@ -520,7 +520,7 @@ H5I__register(H5I_type_t type, const void *object, hbool_t app_ref, H5I_future_r
H5I_future_discard_func_t discard_cb)
{
H5I_type_info_t *type_info = NULL; /* Pointer to the type */
- H5I_id_info_t * info = NULL; /* Pointer to the new ID information */
+ H5I_id_info_t *info = NULL; /* Pointer to the new ID information */
hid_t new_id = H5I_INVALID_HID; /* New ID */
hid_t ret_value = H5I_INVALID_HID; /* Return value */
@@ -615,7 +615,7 @@ herr_t
H5I_register_using_existing_id(H5I_type_t type, void *object, hbool_t app_ref, hid_t existing_id)
{
H5I_type_info_t *type_info = NULL; /* Pointer to the type */
- H5I_id_info_t * info = NULL; /* Pointer to the new ID information */
+ H5I_id_info_t *info = NULL; /* Pointer to the new ID information */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI(FAIL)
@@ -687,7 +687,7 @@ void *
H5I_subst(hid_t id, const void *new_object)
{
H5I_id_info_t *info = NULL; /* Pointer to the ID's info */
- void * ret_value = NULL; /* Return value */
+ void *ret_value = NULL; /* Return value */
FUNC_ENTER_NOAPI(NULL)
@@ -723,7 +723,7 @@ void *
H5I_object(hid_t id)
{
H5I_id_info_t *info = NULL; /* Pointer to the ID info */
- void * ret_value = NULL; /* Return value */
+ void *ret_value = NULL; /* Return value */
FUNC_ENTER_NOAPI_NOERR
@@ -757,7 +757,7 @@ void *
H5I_object_verify(hid_t id, H5I_type_t type)
{
H5I_id_info_t *info = NULL; /* Pointer to the ID info */
- void * ret_value = NULL; /* Return value */
+ void *ret_value = NULL; /* Return value */
FUNC_ENTER_NOAPI_NOERR
@@ -906,7 +906,7 @@ static void *
H5I__remove_common(H5I_type_info_t *type_info, hid_t id)
{
H5I_id_info_t *info = NULL; /* Pointer to the current ID */
- void * ret_value = NULL; /* Return value */
+ void *ret_value = NULL; /* Return value */
FUNC_ENTER_PACKAGE
@@ -960,7 +960,7 @@ H5I_remove(hid_t id)
{
H5I_type_info_t *type_info = NULL; /* Pointer to the ID type */
H5I_type_t type = H5I_BADID; /* ID's type */
- void * ret_value = NULL; /* Return value */
+ void *ret_value = NULL; /* Return value */
FUNC_ENTER_NOAPI(NULL)
@@ -1502,7 +1502,7 @@ done:
static int
H5I__iterate_cb(void *_item, void H5_ATTR_UNUSED *_key, void *_udata)
{
- H5I_id_info_t * info = (H5I_id_info_t *)_item; /* Pointer to the ID info */
+ H5I_id_info_t *info = (H5I_id_info_t *)_item; /* Pointer to the ID info */
H5I_iterate_ud_t *udata = (H5I_iterate_ud_t *)_udata; /* User data for callback */
int ret_value = H5_ITER_CONT; /* Callback return value */
@@ -1513,7 +1513,7 @@ H5I__iterate_cb(void *_item, void H5_ATTR_UNUSED *_key, void *_udata)
*/
if ((!udata->app_ref) || (info->app_count > 0)) {
H5I_type_t type = udata->obj_type;
- void * object;
+ void *object;
herr_t cb_ret_val;
/* The stored object pointer might be an H5VL_object_t, in which
@@ -1577,8 +1577,8 @@ H5I_iterate(H5I_type_t type, H5I_search_func_t func, void *udata, hbool_t app_re
/* Only iterate through ID list if it is initialized and there are IDs in type */
if (type_info && type_info->init_count > 0 && type_info->id_count > 0) {
H5I_iterate_ud_t iter_udata; /* User data for iteration callback */
- H5I_id_info_t * item = NULL;
- H5I_id_info_t * tmp = NULL;
+ H5I_id_info_t *item = NULL;
+ H5I_id_info_t *tmp = NULL;
/* Set up iterator user data */
iter_udata.user_func = func;
@@ -1620,8 +1620,8 @@ H5I__find_id(hid_t id)
{
H5I_type_t type; /* ID's type */
H5I_type_info_t *type_info = NULL; /* Pointer to the type */
- H5I_id_info_t * id_info = NULL; /* ID's info */
- H5I_id_info_t * ret_value = NULL; /* Return value */
+ H5I_id_info_t *id_info = NULL; /* ID's info */
+ H5I_id_info_t *ret_value = NULL; /* Return value */
FUNC_ENTER_PACKAGE_NOERR
@@ -1698,10 +1698,10 @@ done:
static int
H5I__find_id_cb(void *_item, void H5_ATTR_UNUSED *_key, void *_udata)
{
- H5I_id_info_t * info = (H5I_id_info_t *)_item; /* Pointer to the ID info */
+ H5I_id_info_t *info = (H5I_id_info_t *)_item; /* Pointer to the ID info */
H5I_get_id_ud_t *udata = (H5I_get_id_ud_t *)_udata; /* Pointer to user data */
H5I_type_t type = udata->obj_type;
- const void * object = NULL;
+ const void *object = NULL;
int ret_value = H5_ITER_CONT; /* Return value */
FUNC_ENTER_PACKAGE_NOERR
@@ -1754,8 +1754,8 @@ H5I_find_id(const void *object, H5I_type_t type, hid_t *id)
/* Only iterate through ID list if it is initialized and there are IDs in type */
if (type_info->init_count > 0 && type_info->id_count > 0) {
H5I_get_id_ud_t udata; /* User data */
- H5I_id_info_t * item = NULL;
- H5I_id_info_t * tmp = NULL;
+ H5I_id_info_t *item = NULL;
+ H5I_id_info_t *tmp = NULL;
/* Set up iterator user data */
udata.object = object;