summaryrefslogtreecommitdiffstats
path: root/test/ntypes.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 /test/ntypes.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 'test/ntypes.c')
-rw-r--r--test/ntypes.c54
1 files changed, 27 insertions, 27 deletions
diff --git a/test/ntypes.c b/test/ntypes.c
index 4a42f16..a9f0cba 100644
--- a/test/ntypes.c
+++ b/test/ntypes.c
@@ -75,7 +75,7 @@ test_atomic_dtype(hid_t file)
hid_t dtype = -1, native_type = -1;
int i, j, n;
hsize_t dims[2];
- void * tmp = NULL;
+ void *tmp = NULL;
struct {
int arr[DIM0][DIM1];
} *ipoints2 = NULL;
@@ -338,9 +338,9 @@ test_compound_dtype2(hid_t file)
nest_mem_id = -1;
int i, j, n;
hsize_t dims[2];
- s1 * temp_point = NULL, *temp_check = NULL;
- s1 * points = NULL, *check = NULL;
- void * tmp = NULL, *bkg = NULL;
+ s1 *temp_point = NULL, *temp_check = NULL;
+ s1 *points = NULL, *check = NULL;
+ void *tmp = NULL, *bkg = NULL;
TESTING("nested compound datatype");
@@ -661,12 +661,12 @@ test_compound_dtype(hid_t file)
hid_t dtype = -1, native_type = -1, tid = -1, tid2 = -1, mem_id = -1;
int i, j, n;
hsize_t dims[2];
- s1 * temp_point = NULL;
- s1 * temp_check = NULL;
- s1 * points = NULL;
- s1 * check = NULL;
- void * tmp = NULL;
- void * bkg = NULL;
+ s1 *temp_point = NULL;
+ s1 *temp_check = NULL;
+ s1 *points = NULL;
+ s1 *check = NULL;
+ void *tmp = NULL;
+ void *bkg = NULL;
TESTING("compound datatype");
@@ -876,9 +876,9 @@ test_compound_dtype3(hid_t file)
hsize_t array_dims[1] = {5};
int i, j, k, n;
hsize_t dims[2];
- s1 * temp_point = NULL, *temp_check = NULL;
- s1 * points = NULL, *check = NULL;
- void * tmp = NULL, *bkg = NULL;
+ s1 *temp_point = NULL, *temp_check = NULL;
+ s1 *points = NULL, *check = NULL;
+ void *tmp = NULL, *bkg = NULL;
TESTING("compound datatype with array as field");
@@ -1115,9 +1115,9 @@ test_compound_opaque(hid_t file)
hid_t dtype = -1, native_type = -1, tid = -1, tid2 = -1, tid_m = -1, mem_id = -1;
int i, j, k, n;
hsize_t dims[2];
- s1 * temp_point = NULL, *temp_check = NULL;
- s1 * points = NULL, *check = NULL;
- void * tmp = NULL, *bkg = NULL;
+ s1 *temp_point = NULL, *temp_check = NULL;
+ s1 *points = NULL, *check = NULL;
+ void *tmp = NULL, *bkg = NULL;
TESTING("compound datatype with opaque field");
@@ -1337,10 +1337,10 @@ test_enum_dtype(hid_t file)
hid_t tid = -1, tid_m = -1, dtype = -1, native_type = -1;
int i, j, n;
hsize_t dims[2];
- void * tmp = NULL;
+ void *tmp = NULL;
short colors[8];
unsigned char sub_colors[16];
- const char * mname[] = {"RED", "GREEN", "BLUE", "YELLOW", "PINK", "PURPLE", "ORANGE", "WHITE"};
+ const char *mname[] = {"RED", "GREEN", "BLUE", "YELLOW", "PINK", "PURPLE", "ORANGE", "WHITE"};
struct {
short arr[DIM0][DIM1];
} *spoints2 = NULL;
@@ -1501,9 +1501,9 @@ test_array_dtype(hid_t file)
hid_t dtype = -1, native_type = -1, tid = -1, tid2 = -1, tid3 = -1, tid_m = -1;
int i, j, k, n;
hsize_t space_dims[2], array_dims[1] = {5};
- s1 * temp_point = NULL, *temp_check = NULL;
- s1 * points = NULL, *check = NULL;
- void * tmp = NULL;
+ s1 *temp_point = NULL, *temp_check = NULL;
+ s1 *points = NULL, *check = NULL;
+ void *tmp = NULL;
TESTING("array of compound datatype");
@@ -1684,7 +1684,7 @@ test_array_dtype2(hid_t file)
hid_t dtype = -1, native_type = -1, tid = -1, tid_m = -1;
int i, j, k, n;
hsize_t space_dims[2], array_dims[1] = {5};
- void * tmp = NULL;
+ void *tmp = NULL;
struct {
int arr[DIM0][DIM1][5];
} *ipoints3 = NULL;
@@ -1834,12 +1834,12 @@ test_vl_dtype(hid_t file)
{
hvl_t wdata[SPACE1_DIM1]; /* Information to write */
hvl_t rdata[SPACE1_DIM1]; /* Information read in */
- hvl_t * t1, *t2; /* Temporary pointer to VL information */
+ hvl_t *t1, *t2; /* Temporary pointer to VL information */
hsize_t dims1[] = {SPACE1_DIM1};
hid_t dataset = -1, space = -1;
hid_t dtype = -1, native_type = -1, nat_super_type = -1, tid = -1, tid2 = -1, tid_m = -1, tid_m2 = -1;
size_t i, j, k;
- void ** tmp = NULL;
+ void **tmp = NULL;
TESTING("variable length datatype");
@@ -2044,7 +2044,7 @@ test_vlstr_dtype(hid_t file)
"conceived in liberty and dedicated to the proposition that all men are created equal.",
"Now we are engaged in a great civil war,",
"testing whether that nation or any nation so conceived and so dedicated can long endure."};
- char * rdata[SPACE1_DIM1]; /* Information read in */
+ char *rdata[SPACE1_DIM1]; /* Information read in */
hbool_t rdata_alloc = FALSE; /* Whether the read data is allocated */
hid_t dataset = -1; /* Dataset ID */
hid_t sid1 = -1; /* Dataspace ID */
@@ -2487,7 +2487,7 @@ test_refer_dtype2(hid_t file)
rbuf; /* buffer read from disk */
uint8_t *dwbuf = NULL, /* Buffer for writing numeric data to disk */
*drbuf = NULL; /* Buffer for reading numeric data from disk */
- uint8_t * tu8 = NULL; /* Temporary pointer to uint8 data */
+ uint8_t *tu8 = NULL; /* Temporary pointer to uint8 data */
H5O_type_t obj_type; /* Object type */
int i; /* counting variables */
@@ -2794,7 +2794,7 @@ test_bitfield_dtype(hid_t file)
size_t ntype_size, i;
unsigned char wbuf[BITFIELD_ENUMB * sizeof(int)];
unsigned char *p = NULL;
- void * rbuf = NULL;
+ void *rbuf = NULL;
unsigned int intw[BITFIELD_ENUMB], intr[BITFIELD_ENUMB];
hsize_t nelmts;