summaryrefslogtreecommitdiffstats
path: root/src/H5Tdbg.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2020-10-01 14:04:36 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2020-10-01 14:04:36 (GMT)
commitf1ba03cea5b82699a984c80bd2deac14fdc8df18 (patch)
treeebe777c3e0b83f4c4cec9212731da9ebe0a0cfd3 /src/H5Tdbg.c
parent10343c197906415388f2a4c8d292e21d25cf7381 (diff)
downloadhdf5-f1ba03cea5b82699a984c80bd2deac14fdc8df18.zip
hdf5-f1ba03cea5b82699a984c80bd2deac14fdc8df18.tar.gz
hdf5-f1ba03cea5b82699a984c80bd2deac14fdc8df18.tar.bz2
Source formatted
Diffstat (limited to 'src/H5Tdbg.c')
-rw-r--r--src/H5Tdbg.c106
1 files changed, 41 insertions, 65 deletions
diff --git a/src/H5Tdbg.c b/src/H5Tdbg.c
index 6188138..9dae22d 100644
--- a/src/H5Tdbg.c
+++ b/src/H5Tdbg.c
@@ -26,53 +26,43 @@
/* Module Setup */
/****************/
-#include "H5Tmodule.h" /* This source code file is part of the H5T module */
-
+#include "H5Tmodule.h" /* This source code file is part of the H5T module */
/***********/
/* Headers */
/***********/
-#include "H5private.h" /* Generic Functions */
-#include "H5Eprivate.h" /* Error handling */
-#include "H5Tpkg.h" /* Datatypes */
-
+#include "H5private.h" /* Generic Functions */
+#include "H5Eprivate.h" /* Error handling */
+#include "H5Tpkg.h" /* Datatypes */
/****************/
/* Local Macros */
/****************/
-
/******************/
/* Local Typedefs */
/******************/
-
/********************/
/* Package Typedefs */
/********************/
-
/********************/
/* Local Prototypes */
/********************/
-
/*********************/
/* Package Variables */
/*********************/
-
/*****************************/
/* Library Private Variables */
/*****************************/
-
/*******************/
/* Local Variables */
/*******************/
-
-
/*-------------------------------------------------------------------------
* Function: H5T__print_stats
*
@@ -93,26 +83,24 @@
*-------------------------------------------------------------------------
*/
herr_t
-H5T__print_stats(H5T_path_t H5_ATTR_UNUSED * path, int H5_ATTR_UNUSED * nprint/*in,out*/)
+H5T__print_stats(H5T_path_t H5_ATTR_UNUSED *path, int H5_ATTR_UNUSED *nprint /*in,out*/)
{
FUNC_ENTER_PACKAGE_NOERR
#ifdef H5T_DEBUG
- if(H5DEBUG(T) && path->stats.ncalls > 0) {
- hsize_t nbytes;
+ if (H5DEBUG(T) && path->stats.ncalls > 0) {
+ hsize_t nbytes;
char bandwidth[32];
- if(nprint && 0 == (*nprint)++) {
- HDfprintf(H5DEBUG(T), "H5T: type conversion statistics:\n");
- HDfprintf(H5DEBUG(T), " %-16s %10s %10s %8s %8s %8s %10s\n",
- "Conversion", "Elmts", "Calls", "User",
- "System", "Elapsed", "Bandwidth");
- HDfprintf(H5DEBUG(T), " %-16s %10s %10s %8s %8s %8s %10s\n",
- "----------", "-----", "-----", "----",
- "------", "-------", "---------");
- } /* end if */
+ if (nprint && 0 == (*nprint)++) {
+ HDfprintf(H5DEBUG(T), "H5T: type conversion statistics:\n");
+ HDfprintf(H5DEBUG(T), " %-16s %10s %10s %8s %8s %8s %10s\n", "Conversion", "Elmts", "Calls",
+ "User", "System", "Elapsed", "Bandwidth");
+ HDfprintf(H5DEBUG(T), " %-16s %10s %10s %8s %8s %8s %10s\n", "----------", "-----", "-----",
+ "----", "------", "-------", "---------");
+ } /* end if */
- if(path->src && path->dst)
+ if (path->src && path->dst)
nbytes = MAX(H5T_get_size(path->src), H5T_get_size(path->dst));
else if (path->src)
nbytes = H5T_get_size(path->src);
@@ -121,23 +109,17 @@ H5T__print_stats(H5T_path_t H5_ATTR_UNUSED * path, int H5_ATTR_UNUSED * nprint/*
else
nbytes = 0;
- nbytes *= path->stats.nelmts;
+ nbytes *= path->stats.nelmts;
H5_bandwidth(bandwidth, (double)nbytes, path->stats.times.elapsed);
- HDfprintf(H5DEBUG(T), " %-16s %10Hd %10d %8T %8T %8T %10s\n",
- path->name,
- path->stats.nelmts,
- path->stats.ncalls,
- path->stats.times.user,
- path->stats.times.system,
- path->stats.times.elapsed,
- bandwidth);
+ HDfprintf(H5DEBUG(T), " %-16s %10Hd %10d %8T %8T %8T %10s\n", path->name, path->stats.nelmts,
+ path->stats.ncalls, path->stats.times.user, path->stats.times.system,
+ path->stats.times.elapsed, bandwidth);
} /* end if */
#endif
FUNC_LEAVE_NOAPI(SUCCEED)
} /* end H5T__print_stats() */
-
/*-------------------------------------------------------------------------
* Function: H5T_debug
*
@@ -150,10 +132,10 @@ H5T__print_stats(H5T_path_t H5_ATTR_UNUSED * path, int H5_ATTR_UNUSED * nprint/*
herr_t
H5T_debug(const H5T_t *dt, FILE *stream)
{
- const char *s1 = "";
- const char *s2 = "";
+ const char *s1 = "";
+ const char *s2 = "";
unsigned i;
- herr_t ret_value = SUCCEED; /* Return value */
+ herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_NOAPI_NOINIT
@@ -199,7 +181,7 @@ H5T_debug(const H5T_t *dt, FILE *stream)
break;
case H5T_VLEN:
- if(H5T_IS_VL_STRING(dt->shared))
+ if (H5T_IS_VL_STRING(dt->shared))
s1 = "str";
else
s1 = "vlen";
@@ -211,7 +193,7 @@ H5T_debug(const H5T_t *dt, FILE *stream)
default:
s1 = "";
break;
- } /* end switch */
+ } /* end switch */
switch (dt->shared->state) {
case H5T_STATE_TRANSIENT:
@@ -235,12 +217,12 @@ H5T_debug(const H5T_t *dt, FILE *stream)
break;
default:
HDassert(0 && "This Should never be executed!");
- } /* end switch */
+ } /* end switch */
HDfprintf(stream, "%s%s {nbytes=%lu", s1, s2, (unsigned long)(dt->shared->size));
if (H5T_IS_ATOMIC(dt->shared)) {
- uint64_t tmp;
+ uint64_t tmp;
switch (dt->shared->u.atomic.order) {
case H5T_ORDER_ERROR:
@@ -272,9 +254,9 @@ H5T_debug(const H5T_t *dt, FILE *stream)
HDfprintf(stream, ", %s", s1);
if (dt->shared->u.atomic.offset)
- HDfprintf(stream, ", offset=%lu", (unsigned long) (dt->shared->u.atomic.offset));
+ HDfprintf(stream, ", offset=%lu", (unsigned long)(dt->shared->u.atomic.offset));
if (dt->shared->u.atomic.prec != 8 * dt->shared->size)
- HDfprintf(stream, ", prec=%lu", (unsigned long) (dt->shared->u.atomic.prec));
+ HDfprintf(stream, ", prec=%lu", (unsigned long)(dt->shared->u.atomic.prec));
switch (dt->shared->type) {
case H5T_NO_CLASS:
@@ -282,7 +264,7 @@ H5T_debug(const H5T_t *dt, FILE *stream)
break;
case H5T_INTEGER:
- switch(dt->shared->u.atomic.u.i.sign) {
+ switch (dt->shared->u.atomic.u.i.sign) {
case H5T_SGN_ERROR:
HGOTO_ERROR(H5E_DATATYPE, H5E_BADTYPE, FAIL, "sign error");
break;
@@ -301,12 +283,12 @@ H5T_debug(const H5T_t *dt, FILE *stream)
break;
} /* end switch */
- if(s1)
+ if (s1)
HDfprintf(stream, ", %s", s1);
break;
case H5T_FLOAT:
- switch(dt->shared->u.atomic.u.f.norm) {
+ switch (dt->shared->u.atomic.u.f.norm) {
case H5T_NORM_ERROR:
HGOTO_ERROR(H5E_DATATYPE, H5E_BADTYPE, FAIL, "norm error");
break;
@@ -328,20 +310,16 @@ H5T_debug(const H5T_t *dt, FILE *stream)
break;
} /* end switch */
- HDfprintf(stream, ", sign=%lu+1",
- (unsigned long)(dt->shared->u.atomic.u.f.sign));
- HDfprintf(stream, ", mant=%lu+%lu (%s)",
- (unsigned long)(dt->shared->u.atomic.u.f.mpos),
- (unsigned long)(dt->shared->u.atomic.u.f.msize), s1);
- HDfprintf(stream, ", exp=%lu+%lu",
- (unsigned long)(dt->shared->u.atomic.u.f.epos),
- (unsigned long)(dt->shared->u.atomic.u.f.esize));
+ HDfprintf(stream, ", sign=%lu+1", (unsigned long)(dt->shared->u.atomic.u.f.sign));
+ HDfprintf(stream, ", mant=%lu+%lu (%s)", (unsigned long)(dt->shared->u.atomic.u.f.mpos),
+ (unsigned long)(dt->shared->u.atomic.u.f.msize), s1);
+ HDfprintf(stream, ", exp=%lu+%lu", (unsigned long)(dt->shared->u.atomic.u.f.epos),
+ (unsigned long)(dt->shared->u.atomic.u.f.esize));
tmp = dt->shared->u.atomic.u.f.ebias >> 32;
if (tmp) {
size_t hi = (size_t)tmp;
size_t lo = (size_t)(dt->shared->u.atomic.u.f.ebias & 0xffffffff);
- HDfprintf(stream, " bias=0x%08lx%08lx",
- (unsigned long)hi, (unsigned long)lo);
+ HDfprintf(stream, " bias=0x%08lx%08lx", (unsigned long)hi, (unsigned long)lo);
}
else {
size_t lo = (size_t)(dt->shared->u.atomic.u.f.ebias & 0xffffffff);
@@ -367,9 +345,8 @@ H5T_debug(const H5T_t *dt, FILE *stream)
else if (H5T_COMPOUND == dt->shared->type) {
/* Compound data type */
for (i = 0; i < dt->shared->u.compnd.nmembs; i++) {
- HDfprintf(stream, "\n\"%s\" @%lu",
- dt->shared->u.compnd.memb[i].name,
- (unsigned long)(dt->shared->u.compnd.memb[i].offset));
+ HDfprintf(stream, "\n\"%s\" @%lu", dt->shared->u.compnd.memb[i].name,
+ (unsigned long)(dt->shared->u.compnd.memb[i].offset));
HDfprintf(stream, " ");
H5T_debug(dt->shared->u.compnd.memb[i].type, stream);
} /* end for */
@@ -406,14 +383,14 @@ H5T_debug(const H5T_t *dt, FILE *stream)
} /* end else */
}
else if (H5T_ENUM == dt->shared->type) {
- size_t base_size;
+ size_t base_size;
/* Enumeration data type */
HDfprintf(stream, " ");
H5T_debug(dt->shared->parent, stream);
base_size = dt->shared->parent->shared->size;
for (i = 0; i < dt->shared->u.enumer.nmembs; i++) {
- size_t k;
+ size_t k;
HDfprintf(stream, "\n\"%s\" = 0x", dt->shared->u.enumer.name[i]);
for (k = 0; k < base_size; k++)
@@ -433,4 +410,3 @@ H5T_debug(const H5T_t *dt, FILE *stream)
done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5T_debug() */
-