summaryrefslogtreecommitdiffstats
path: root/src/H5Dcompact.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Dcompact.c')
-rw-r--r--src/H5Dcompact.c58
1 files changed, 29 insertions, 29 deletions
diff --git a/src/H5Dcompact.c b/src/H5Dcompact.c
index a13bf5d..85d78eb 100644
--- a/src/H5Dcompact.c
+++ b/src/H5Dcompact.c
@@ -13,8 +13,8 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
- * Programmer: Raymond Lu <slu@ncsa.uiuc.edu>
- * August 5, 2002
+ * Programmer: Raymond Lu <slu@ncsa.uiuc.edu>
+ * August 5, 2002
*
* Purpose: Compact dataset I/O functions. These routines are similar
* H5D_contig_* and H5D_istore_*.
@@ -35,32 +35,32 @@
/*-------------------------------------------------------------------------
* Function: H5D_compact_readvv
- *
+ *
* Purpose: Reads some data vectors from a dataset into a buffer.
- * The data is in compact dataset. The address is relative
+ * The data is in compact dataset. The address is relative
* to the beginning address of the dataset. The offsets and
* sequence lengths are in bytes.
- *
+ *
* Return: Non-negative on success/Negative on failure
- *
+ *
* Programmer: Quincey Koziol
* May 7, 2003
- *
- * Notes:
+ *
+ * Notes:
* Offsets in the sequences must be monotonically increasing
- *
+ *
* Modifications:
- *
+ *
*-------------------------------------------------------------------------
*/
ssize_t
H5D_compact_readvv(const H5D_io_info_t *io_info,
- size_t dset_max_nseq, size_t *dset_curr_seq, size_t dset_size_arr[], hsize_t dset_offset_arr[],
- size_t mem_max_nseq, size_t *mem_curr_seq, size_t mem_size_arr[], hsize_t mem_offset_arr[],
+ size_t dset_max_nseq, size_t *dset_curr_seq, size_t dset_size_arr[], hsize_t dset_offset_arr[],
+ size_t mem_max_nseq, size_t *mem_curr_seq, size_t mem_size_arr[], hsize_t mem_offset_arr[],
void *buf)
{
ssize_t ret_value; /* Return value */
-
+
FUNC_ENTER_NOAPI(H5D_compact_readvv, FAIL)
assert(io_info->dset);
@@ -69,42 +69,42 @@ H5D_compact_readvv(const H5D_io_info_t *io_info,
if((ret_value=H5V_memcpyvv(buf,mem_max_nseq,mem_curr_seq,mem_size_arr,mem_offset_arr,io_info->dset->shared->layout.u.compact.buf,dset_max_nseq,dset_curr_seq,dset_size_arr,dset_offset_arr))<0)
HGOTO_ERROR(H5E_IO, H5E_WRITEERROR, FAIL, "vectorized memcpy failed")
-done:
+done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5D_compact_readvv() */
/*-------------------------------------------------------------------------
* Function: H5D_compact_writevv
- *
+ *
* Purpose: Writes some data vectors from a dataset into a buffer.
- * The data is in compact dataset. The address is relative
+ * The data is in compact dataset. The address is relative
* to the beginning address for the file. The offsets and
* sequence lengths are in bytes. This function only copies
- * data into the buffer in the LAYOUT struct and mark it
- * as DIRTY. Later in H5D_close, the data is copied into
- * header message in memory.
- *
+ * data into the buffer in the LAYOUT struct and mark it
+ * as DIRTY. Later in H5D_close, the data is copied into
+ * header message in memory.
+ *
* Return: Non-negative on success/Negative on failure
- *
+ *
* Programmer: Quincey Koziol
* May 2, 2003
- *
- * Notes:
+ *
+ * Notes:
* Offsets in the sequences must be monotonically increasing
- *
+ *
* Modifications:
- *
+ *
*-------------------------------------------------------------------------
*/
ssize_t
H5D_compact_writevv(const H5D_io_info_t *io_info,
- size_t dset_max_nseq, size_t *dset_curr_seq, size_t dset_size_arr[], hsize_t dset_offset_arr[],
- size_t mem_max_nseq, size_t *mem_curr_seq, size_t mem_size_arr[], hsize_t mem_offset_arr[],
+ size_t dset_max_nseq, size_t *dset_curr_seq, size_t dset_size_arr[], hsize_t dset_offset_arr[],
+ size_t mem_max_nseq, size_t *mem_curr_seq, size_t mem_size_arr[], hsize_t mem_offset_arr[],
const void *buf)
{
ssize_t ret_value; /* Return value */
-
+
FUNC_ENTER_NOAPI(H5D_compact_writevv, FAIL)
assert(io_info->dset);
@@ -115,6 +115,6 @@ H5D_compact_writevv(const H5D_io_info_t *io_info,
io_info->dset->shared->layout.u.compact.dirty = TRUE;
-done:
+done:
FUNC_LEAVE_NOAPI(ret_value)
} /* end H5D_compact_writevv() */