summaryrefslogtreecommitdiffstats
path: root/src/H5VM.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2021-04-06 09:43:53 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2021-04-06 09:43:53 (GMT)
commit245950c383324d09ee4161c2697371462a8b928d (patch)
tree7bd88bc241f247d48b5488f8d00933b377737ace /src/H5VM.c
parent847be78dbec1116c5b9be6207dba5253b75da323 (diff)
downloadhdf5-245950c383324d09ee4161c2697371462a8b928d.zip
hdf5-245950c383324d09ee4161c2697371462a8b928d.tar.gz
hdf5-245950c383324d09ee4161c2697371462a8b928d.tar.bz2
Brings trace changes from develop
Diffstat (limited to 'src/H5VM.c')
-rw-r--r--src/H5VM.c19
1 files changed, 5 insertions, 14 deletions
diff --git a/src/H5VM.c b/src/H5VM.c
index 2a0e69b..20b2707 100644
--- a/src/H5VM.c
+++ b/src/H5VM.c
@@ -468,13 +468,8 @@ H5VM_hyper_fill(unsigned n, const hsize_t *_size, const hsize_t *total_size, con
*-------------------------------------------------------------------------
*/
herr_t
-H5VM_hyper_copy(unsigned n, const hsize_t *_size,
-
- /*destination*/
- const hsize_t *dst_size, const hsize_t *dst_offset, void *_dst,
-
- /*source*/
- const hsize_t *src_size, const hsize_t *src_offset, const void *_src)
+H5VM_hyper_copy(unsigned n, const hsize_t *_size, const hsize_t *dst_size, const hsize_t *dst_offset,
+ void *_dst, const hsize_t *src_size, const hsize_t *src_offset, const void *_src)
{
const uint8_t *src = (const uint8_t *)_src; /*cast for ptr arithmtc */
uint8_t * dst = (uint8_t *)_dst; /*cast for ptr arithmtc */
@@ -824,13 +819,9 @@ H5VM_stride_copy_s(unsigned n, hsize_t elmt_size, const hsize_t *size, const hss
*-------------------------------------------------------------------------
*/
static void
-H5VM_stride_copy2(hsize_t nelmts, hsize_t elmt_size,
-
- /* destination */
- unsigned dst_n, const hsize_t *dst_size, const hsize_t *dst_stride, void *_dst,
-
- /* source */
- unsigned src_n, const hsize_t *src_size, const hsize_t *src_stride, const void *_src)
+H5VM__stride_copy2(hsize_t nelmts, hsize_t elmt_size, unsigned dst_n, const hsize_t *dst_size,
+ const hsize_t *dst_stride, void *_dst, unsigned src_n, const hsize_t *src_size,
+ const hsize_t *src_stride, const void *_src)
{
uint8_t * dst = (uint8_t *)_dst;
const uint8_t *src = (const uint8_t *)_src;