summaryrefslogtreecommitdiffstats
path: root/src/H5Sprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-04-10 14:44:58 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-04-10 14:44:58 (GMT)
commiteb7a675f0a1bb565bdeb4c97697c9821c5ce72cc (patch)
treeb83bfafc05ea36dbc675eb832debe1571c5f0026 /src/H5Sprivate.h
parent48d84a1bbc72fc52241a7b0cbdd8ac1fb7544d9b (diff)
downloadhdf5-eb7a675f0a1bb565bdeb4c97697c9821c5ce72cc.zip
hdf5-eb7a675f0a1bb565bdeb4c97697c9821c5ce72cc.tar.gz
hdf5-eb7a675f0a1bb565bdeb4c97697c9821c5ce72cc.tar.bz2
[svn-r8335] Purpose:
Code optimization Description: Change algorithm to directly use coordinates describing a chunk's position in a dataspace instead of creating a dataspace with the chunk's position selected. This reduces the number of copies of dataspaces we need to keep around. Platforms tested: Solaris 2.7 (arabica) FreeBSD 4.9 (sleipnir) w/parallel too minor to require h5committest
Diffstat (limited to 'src/H5Sprivate.h')
-rw-r--r--src/H5Sprivate.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/H5Sprivate.h b/src/H5Sprivate.h
index 2fcdad7..94510b2 100644
--- a/src/H5Sprivate.h
+++ b/src/H5Sprivate.h
@@ -241,7 +241,10 @@ H5_DLL herr_t H5S_hyper_add_span_element(H5S_t *space, unsigned rank,
hssize_t *coords);
H5_DLL herr_t H5S_hyper_reset_scratch(H5S_t *space);
H5_DLL herr_t H5S_hyper_convert(H5S_t *space);
+#ifdef LATER
H5_DLL htri_t H5S_hyper_intersect (H5S_t *space1, H5S_t *space2);
+#endif /* LATER */
+H5_DLL htri_t H5S_hyper_intersect_block (const H5S_t *space, hssize_t *start, hssize_t *end);
H5_DLL herr_t H5S_hyper_adjust(H5S_t *space, const hssize_t *offset);
H5_DLL herr_t H5S_hyper_move(H5S_t *space, const hssize_t *offset);
H5_DLL herr_t H5S_hyper_normalize_offset(H5S_t *space);