diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-01-22 15:27:29 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-01-22 15:27:29 (GMT) |
commit | fdfb6dfd26410b931b4452f832b5a4aedec283e0 (patch) | |
tree | 052c551e3cb4f99b2c77af519dce3d3d6ae7429c /src/H5V.c | |
parent | 851b17c87ad6f841efb5a5ba1b90b8c6636a2ffd (diff) | |
download | hdf5-fdfb6dfd26410b931b4452f832b5a4aedec283e0.zip hdf5-fdfb6dfd26410b931b4452f832b5a4aedec283e0.tar.gz hdf5-fdfb6dfd26410b931b4452f832b5a4aedec283e0.tar.bz2 |
[svn-r163] Changes since 19980121
----------------------
./Makefile.in
Added more dependencies to .PHONY.
./src/H5D.c
The write side of the I/O pipeline is implemented now too.
Things are looking good for the prototype and it's just a
matter of populating the library with the data type and data
space conversion functions.
./src/H5Farray.c
./src/H5Fprivate.h
./test/istore.c
Changed the order of the arguments for H5F_arr_read() and
H5F_arr_write().
./src/H5P.c
./src/H5Pprivate.h
Changed the names of the arguments of H5P_find(). Fleshed out
the mgath and fscat callback types.
./src/H5Psimp.c
Added stubs for H5P_simp_mgath() and H5P_simp_fscat() that
operate on the entire data space. Quincey, once you have the
data space hyperslab stuff in place let me know and I'll
finish the H5P_simp_*() functions to do partial I/O. Or you
can take a look at it too if you like; there's some comments
in there for you.
./src/H5V.c
./src/H5Vprivate.h
Changed dimensionality arguments from `size_t' to `intn' to be
consistent with the rest of the library and to get rid of
warnings on 64-bit Irix.
Diffstat (limited to 'src/H5V.c')
-rw-r--r-- | src/H5V.c | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -40,7 +40,7 @@ static hbool_t interface_initialize_g = TRUE; *------------------------------------------------------------------------- */ herr_t -H5V_stride_optimize1(size_t *np, size_t *elmt_size, size_t *size, +H5V_stride_optimize1(intn *np, size_t *elmt_size, size_t *size, intn *stride1) { FUNC_ENTER(H5V_stride_optimize1, FAIL); @@ -87,7 +87,7 @@ H5V_stride_optimize1(size_t *np, size_t *elmt_size, size_t *size, *------------------------------------------------------------------------- */ herr_t -H5V_stride_optimize2(size_t *np, size_t *elmt_size, size_t *size, +H5V_stride_optimize2(intn *np, size_t *elmt_size, size_t *size, intn *stride1, intn *stride2) { FUNC_ENTER(H5V_stride_optimize2, FAIL); @@ -143,7 +143,7 @@ H5V_stride_optimize2(size_t *np, size_t *elmt_size, size_t *size, *------------------------------------------------------------------------- */ size_t -H5V_hyper_stride(size_t n, const size_t *size, +H5V_hyper_stride(intn n, const size_t *size, const size_t *total_size, const size_t *offset, intn *stride/*out*/) { @@ -196,7 +196,7 @@ H5V_hyper_stride(size_t n, const size_t *size, *------------------------------------------------------------------------- */ hbool_t -H5V_hyper_eq(size_t n, +H5V_hyper_eq(intn n, const size_t *offset1, const size_t *size1, const size_t *offset2, const size_t *size2) { @@ -238,7 +238,7 @@ H5V_hyper_eq(size_t n, *------------------------------------------------------------------------- */ hbool_t -H5V_hyper_disjointp(size_t n, +H5V_hyper_disjointp(intn n, const size_t *offset1, const size_t *size1, const size_t *offset2, const size_t *size2) { @@ -282,7 +282,7 @@ H5V_hyper_disjointp(size_t n, *------------------------------------------------------------------------- */ herr_t -H5V_hyper_fill(size_t n, const size_t *_size, +H5V_hyper_fill(intn n, const size_t *_size, const size_t *total_size, const size_t *offset, void *_dst, uint8 fill_value) { @@ -358,7 +358,7 @@ H5V_hyper_fill(size_t n, const size_t *_size, *------------------------------------------------------------------------- */ herr_t -H5V_hyper_copy(size_t n, const size_t *_size, +H5V_hyper_copy(intn n, const size_t *_size, /*destination*/ const size_t *dst_size, const size_t *dst_offset, @@ -433,7 +433,7 @@ H5V_hyper_copy(size_t n, const size_t *_size, *------------------------------------------------------------------------- */ herr_t -H5V_stride_fill(size_t n, size_t elmt_size, const size_t *size, +H5V_stride_fill(intn n, size_t elmt_size, const size_t *size, const intn *stride, void *_dst, uint8 fill_value) { uint8 *dst = (uint8 *) _dst; /*cast for ptr arithmetic */ @@ -489,7 +489,7 @@ H5V_stride_fill(size_t n, size_t elmt_size, const size_t *size, *------------------------------------------------------------------------- */ herr_t -H5V_stride_copy(size_t n, size_t elmt_size, const size_t *size, +H5V_stride_copy(intn n, size_t elmt_size, const size_t *size, const intn *dst_stride, void *_dst, const intn *src_stride, const void *_src) { @@ -545,11 +545,11 @@ herr_t H5V_stride_copy2(size_t nelmts, size_t elmt_size, /* destination */ - size_t dst_n, const size_t *dst_size, const intn *dst_stride, + intn dst_n, const size_t *dst_size, const intn *dst_stride, void *_dst, /* source */ - size_t src_n, const size_t *src_size, const intn *src_stride, + intn src_n, const size_t *src_size, const intn *src_stride, const void *_src) { uint8 *dst = (uint8 *) _dst; |