summaryrefslogtreecommitdiffstats
path: root/src/H5FDsplitter.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/H5FDsplitter.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/H5FDsplitter.c')
-rw-r--r--src/H5FDsplitter.c46
1 files changed, 23 insertions, 23 deletions
diff --git a/src/H5FDsplitter.c b/src/H5FDsplitter.c
index 48de4e6..faf5d29 100644
--- a/src/H5FDsplitter.c
+++ b/src/H5FDsplitter.c
@@ -46,9 +46,9 @@ typedef struct H5FD_splitter_t {
H5FD_t pub; /* public stuff, must be first */
unsigned version; /* version of the H5FD_splitter_vfd_config_t structure used */
H5FD_splitter_fapl_t fa; /* driver-specific file access properties */
- H5FD_t * rw_file; /* pointer of R/W channel */
- H5FD_t * wo_file; /* pointer of W/O channel */
- FILE * logfp; /* Log file pointer */
+ H5FD_t *rw_file; /* pointer of R/W channel */
+ H5FD_t *wo_file; /* pointer of W/O channel */
+ FILE *logfp; /* Log file pointer */
} H5FD_splitter_t;
/*
@@ -105,14 +105,14 @@ static int H5FD__copy_plist(hid_t fapl_id, hid_t *id_out_ptr);
/* Prototypes */
static herr_t H5FD__splitter_term(void);
static herr_t H5FD__splitter_populate_config(H5FD_splitter_vfd_config_t *vfd_config,
- H5FD_splitter_fapl_t * fapl_out);
+ H5FD_splitter_fapl_t *fapl_out);
static herr_t H5FD__splitter_get_default_wo_path(char *new_path, size_t new_path_len,
const char *base_filename);
static hsize_t H5FD__splitter_sb_size(H5FD_t *_file);
static herr_t H5FD__splitter_sb_encode(H5FD_t *_file, char *name /*out*/, unsigned char *buf /*out*/);
static herr_t H5FD__splitter_sb_decode(H5FD_t *_file, const char *name, const unsigned char *buf);
-static void * H5FD__splitter_fapl_get(H5FD_t *_file);
-static void * H5FD__splitter_fapl_copy(const void *_old_fa);
+static void *H5FD__splitter_fapl_get(H5FD_t *_file);
+static void *H5FD__splitter_fapl_copy(const void *_old_fa);
static herr_t H5FD__splitter_fapl_free(void *_fapl);
static H5FD_t *H5FD__splitter_open(const char *name, unsigned flags, hid_t fapl_id, haddr_t maxaddr);
static herr_t H5FD__splitter_close(H5FD_t *_file);
@@ -283,7 +283,7 @@ herr_t
H5Pset_fapl_splitter(hid_t fapl_id, H5FD_splitter_vfd_config_t *vfd_config)
{
H5FD_splitter_fapl_t *info = NULL;
- H5P_genplist_t * plist_ptr = NULL;
+ H5P_genplist_t *plist_ptr = NULL;
herr_t ret_value = SUCCEED;
FUNC_ENTER_API(FAIL)
@@ -330,8 +330,8 @@ herr_t
H5Pget_fapl_splitter(hid_t fapl_id, H5FD_splitter_vfd_config_t *config /*out*/)
{
const H5FD_splitter_fapl_t *fapl_ptr = NULL;
- H5FD_splitter_fapl_t * default_fapl = NULL;
- H5P_genplist_t * plist_ptr = NULL;
+ H5FD_splitter_fapl_t *default_fapl = NULL;
+ H5P_genplist_t *plist_ptr = NULL;
herr_t ret_value = SUCCEED;
FUNC_ENTER_API(FAIL)
@@ -428,9 +428,9 @@ H5FD__splitter_populate_config(H5FD_splitter_vfd_config_t *vfd_config, H5FD_spli
* determining attribute.
*/
if (H5P_DEFAULT != vfd_config->wo_fapl_id) {
- H5FD_class_t * wo_driver = NULL;
+ H5FD_class_t *wo_driver = NULL;
H5FD_driver_prop_t wo_driver_prop;
- H5P_genplist_t * wo_plist_ptr = NULL;
+ H5P_genplist_t *wo_plist_ptr = NULL;
unsigned long wo_driver_flags = 0;
wo_plist_ptr = (H5P_genplist_t *)H5I_object(vfd_config->wo_fapl_id);
@@ -518,7 +518,7 @@ H5FD__splitter_get_default_wo_path(char *new_path, size_t new_path_len, const ch
{
const char *suffix = "_wo";
size_t old_filename_len = 0;
- char * file_extension = NULL;
+ char *file_extension = NULL;
herr_t ret_value = SUCCEED;
FUNC_ENTER_PACKAGE
@@ -645,7 +645,7 @@ H5FD__splitter_write(H5FD_t *_file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr
const void *buf)
{
H5FD_splitter_t *file = (H5FD_splitter_t *)_file;
- H5P_genplist_t * plist_ptr = NULL;
+ H5P_genplist_t *plist_ptr = NULL;
herr_t ret_value = SUCCEED;
FUNC_ENTER_PACKAGE
@@ -682,7 +682,7 @@ static void *
H5FD__splitter_fapl_get(H5FD_t *_file)
{
H5FD_splitter_t *file = (H5FD_splitter_t *)_file;
- void * ret_value = NULL;
+ void *ret_value = NULL;
FUNC_ENTER_PACKAGE_NOERR
@@ -706,8 +706,8 @@ static void *
H5FD__splitter_fapl_copy(const void *_old_fa)
{
const H5FD_splitter_fapl_t *old_fa_ptr = (const H5FD_splitter_fapl_t *)_old_fa;
- H5FD_splitter_fapl_t * new_fa_ptr = NULL;
- void * ret_value = NULL;
+ H5FD_splitter_fapl_t *new_fa_ptr = NULL;
+ void *ret_value = NULL;
FUNC_ENTER_PACKAGE
@@ -786,11 +786,11 @@ done:
static H5FD_t *
H5FD__splitter_open(const char *name, unsigned flags, hid_t splitter_fapl_id, haddr_t maxaddr)
{
- H5FD_splitter_t * file_ptr = NULL; /* Splitter VFD info */
+ H5FD_splitter_t *file_ptr = NULL; /* Splitter VFD info */
const H5FD_splitter_fapl_t *fapl_ptr = NULL; /* Driver-specific property list */
- H5FD_splitter_fapl_t * default_fapl = NULL;
- H5P_genplist_t * plist_ptr = NULL;
- H5FD_t * ret_value = NULL;
+ H5FD_splitter_fapl_t *default_fapl = NULL;
+ H5P_genplist_t *plist_ptr = NULL;
+ H5FD_t *ret_value = NULL;
FUNC_ENTER_PACKAGE
@@ -1493,8 +1493,8 @@ static herr_t
H5FD__splitter_delete(const char *filename, hid_t fapl_id)
{
const H5FD_splitter_fapl_t *fapl_ptr = NULL;
- H5FD_splitter_fapl_t * default_fapl = NULL;
- H5P_genplist_t * plist;
+ H5FD_splitter_fapl_t *default_fapl = NULL;
+ H5P_genplist_t *plist;
herr_t ret_value = SUCCEED;
FUNC_ENTER_PACKAGE
@@ -1572,7 +1572,7 @@ H5FD__splitter_log_error(const H5FD_splitter_t *file, const char *atfunc, const
if (file->logfp != NULL) {
size_t size;
- char * s;
+ char *s;
size = HDstrlen(atfunc) + HDstrlen(msg) + 3; /* ':', ' ', '\n' */
s = (char *)H5MM_malloc(sizeof(char) * (size + 1));