summaryrefslogtreecommitdiffstats
path: root/src/H5Pdcpl.c
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-07-27 17:28:11 (GMT)
committerGitHub <noreply@github.com>2022-07-27 17:28:11 (GMT)
commita0a1959c58973095194f2d9ac5f9b13bb7b14fb4 (patch)
tree3f36cbd14d9ede9f00c4c26affb9ecab5d1a860f /src/H5Pdcpl.c
parentf0690f13fb914ff39a32d88801eabcef759a0163 (diff)
downloadhdf5-a0a1959c58973095194f2d9ac5f9b13bb7b14fb4.zip
hdf5-a0a1959c58973095194f2d9ac5f9b13bb7b14fb4.tar.gz
hdf5-a0a1959c58973095194f2d9ac5f9b13bb7b14fb4.tar.bz2
clang 13 format #1933 (#1939)
Diffstat (limited to 'src/H5Pdcpl.c')
-rw-r--r--src/H5Pdcpl.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/H5Pdcpl.c b/src/H5Pdcpl.c
index 59a41ed..03b36f8 100644
--- a/src/H5Pdcpl.c
+++ b/src/H5Pdcpl.c
@@ -482,8 +482,8 @@ static herr_t
H5P__dcrt_layout_enc(const void *value, void **_pp, size_t *size)
{
const H5O_layout_t *layout = (const H5O_layout_t *)value; /* Create local aliases for values */
- uint8_t ** pp = (uint8_t **)_pp;
- uint8_t * tmp_p;
+ uint8_t **pp = (uint8_t **)_pp;
+ uint8_t *tmp_p;
size_t tmp_size;
size_t u; /* Local index variable */
herr_t ret_value = SUCCEED; /* Return value */
@@ -619,7 +619,7 @@ H5P__dcrt_layout_dec(const void **_pp, void *value)
const H5O_layout_t *layout; /* Storage layout */
H5O_layout_t tmp_layout; /* Temporary local layout structure */
H5D_layout_t type; /* Layout type */
- const uint8_t ** pp = (const uint8_t **)_pp;
+ const uint8_t **pp = (const uint8_t **)_pp;
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_STATIC
@@ -1123,7 +1123,7 @@ H5P__dcrt_fill_value_enc(const void *value, void **_pp, size_t *size)
const H5O_fill_t *fill = (const H5O_fill_t *)value; /* Create local aliases for values */
size_t dt_size = 0; /* Size of encoded datatype */
herr_t ret_value = SUCCEED; /* Return value */
- uint8_t ** pp = (uint8_t **)_pp;
+ uint8_t **pp = (uint8_t **)_pp;
uint64_t enc_value;
unsigned enc_size = 0;
@@ -1214,7 +1214,7 @@ done:
static herr_t
H5P__dcrt_fill_value_dec(const void **_pp, void *_value)
{
- H5O_fill_t * fill = (H5O_fill_t *)_value; /* Fill value */
+ H5O_fill_t *fill = (H5O_fill_t *)_value; /* Fill value */
const uint8_t **pp = (const uint8_t **)_pp;
herr_t ret_value = SUCCEED; /* Return value */
@@ -1525,7 +1525,7 @@ H5P__dcrt_ext_file_list_enc(const void *value, void **_pp, size_t *size)
const H5O_efl_t *efl = (const H5O_efl_t *)value; /* Create local aliases for values */
size_t len = 0; /* String length of slot name */
size_t u; /* Local index variable */
- uint8_t ** pp = (uint8_t **)_pp;
+ uint8_t **pp = (uint8_t **)_pp;
unsigned enc_size;
uint64_t enc_value;
@@ -1607,7 +1607,7 @@ H5P__dcrt_ext_file_list_enc(const void *value, void **_pp, size_t *size)
static herr_t
H5P__dcrt_ext_file_list_dec(const void **_pp, void *_value)
{
- H5O_efl_t * efl = (H5O_efl_t *)_value; /* External file list */
+ H5O_efl_t *efl = (H5O_efl_t *)_value; /* External file list */
const uint8_t **pp = (const uint8_t **)_pp;
size_t u, nused;
unsigned enc_size;
@@ -1982,7 +1982,7 @@ H5P__init_def_layout(void)
herr_t
H5Pset_layout(hid_t plist_id, H5D_layout_t layout_type)
{
- H5P_genplist_t * plist; /* Property list pointer */
+ H5P_genplist_t *plist; /* Property list pointer */
const H5O_layout_t *layout; /* Pointer to default layout information for type specified */
herr_t ret_value = SUCCEED; /* Return value */
@@ -2227,10 +2227,10 @@ herr_t
H5Pset_virtual(hid_t dcpl_id, hid_t vspace_id, const char *src_file_name, const char *src_dset_name,
hid_t src_space_id)
{
- H5P_genplist_t * plist = NULL; /* Property list pointer */
+ H5P_genplist_t *plist = NULL; /* Property list pointer */
H5O_layout_t virtual_layout; /* Layout information for setting virtual info */
- H5S_t * vspace; /* Virtual dataset space selection */
- H5S_t * src_space; /* Source dataset space selection */
+ H5S_t *vspace; /* Virtual dataset space selection */
+ H5S_t *src_space; /* Source dataset space selection */
H5O_storage_virtual_ent_t *old_list = NULL; /* List pointer previously on property list */
H5O_storage_virtual_ent_t *ent = NULL; /* Convenience pointer to new VDS entry */
hbool_t retrieved_layout = FALSE; /* Whether the layout has been retrieved */
@@ -2456,7 +2456,7 @@ H5Pget_virtual_vspace(hid_t dcpl_id, size_t idx)
{
H5P_genplist_t *plist; /* Property list pointer */
H5O_layout_t layout; /* Layout information */
- H5S_t * space = NULL; /* Dataspace pointer */
+ H5S_t *space = NULL; /* Dataspace pointer */
hid_t ret_value; /* Return value */
FUNC_ENTER_API(FAIL)
@@ -2513,7 +2513,7 @@ H5Pget_virtual_srcspace(hid_t dcpl_id, size_t idx)
{
H5P_genplist_t *plist; /* Property list pointer */
H5O_layout_t layout; /* Layout information */
- H5S_t * space = NULL; /* Dataspace pointer */
+ H5S_t *space = NULL; /* Dataspace pointer */
hid_t ret_value = FAIL; /* Return value */
FUNC_ENTER_API(FAIL)
@@ -3275,7 +3275,7 @@ H5Pset_fill_value(hid_t plist_id, hid_t type_id, const void *value)
H5O_fill_reset_dyn(&fill);
if (value) {
- H5T_t * type; /* Datatype for fill value */
+ H5T_t *type; /* Datatype for fill value */
H5T_path_t *tpath; /* Conversion information */
/* Retrieve pointer to datatype */
@@ -3348,8 +3348,8 @@ H5P_get_fill_value(H5P_genplist_t *plist, const H5T_t *type, void *value /*out*/
{
H5O_fill_t fill; /* Fill value to retrieve */
H5T_path_t *tpath; /*type conversion info */
- void * buf = NULL; /*conversion buffer */
- void * bkg = NULL; /*conversion buffer */
+ void *buf = NULL; /*conversion buffer */
+ void *bkg = NULL; /*conversion buffer */
hid_t src_id = -1; /*source datatype id */
hid_t dst_id = -1; /*destination datatype id */
herr_t ret_value = SUCCEED; /* Return value */
@@ -3440,7 +3440,7 @@ herr_t
H5Pget_fill_value(hid_t plist_id, hid_t type_id, void *value /*out*/)
{
H5P_genplist_t *plist; /* Property list pointer */
- H5T_t * type; /* Datatype */
+ H5T_t *type; /* Datatype */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_API(FAIL)