summaryrefslogtreecommitdiffstats
path: root/src/H5Sall.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-07-14 21:14:22 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-07-14 21:14:22 (GMT)
commit13834c0d94857dcd6deb7abd3d0b8b1eba8c26d5 (patch)
tree0ec72f7f283cfa91e13d38876975b31672f7d481 /src/H5Sall.c
parentbf5165c748def41aec8b1904d450b319617f5e57 (diff)
downloadhdf5-13834c0d94857dcd6deb7abd3d0b8b1eba8c26d5.zip
hdf5-13834c0d94857dcd6deb7abd3d0b8b1eba8c26d5.tar.gz
hdf5-13834c0d94857dcd6deb7abd3d0b8b1eba8c26d5.tar.bz2
[svn-r490] Changed more API functions to the new names as documented.
Diffstat (limited to 'src/H5Sall.c')
-rw-r--r--src/H5Sall.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/H5Sall.c b/src/H5Sall.c
index 4a3dcce..8af7a18 100644
--- a/src/H5Sall.c
+++ b/src/H5Sall.c
@@ -85,7 +85,7 @@ H5S_all_favail (const H5S_t *space, const H5S_sel_iter_t *sel_iter, size_t max)
* be split up. We choose the largest possible strip mine size which is
* not larger than the desired size.
*/
- m_ndims = H5S_get_dims (space, size, NULL);
+ m_ndims = H5S_extent_dims (space, size, NULL);
for (i=m_ndims-1, acc=1; i>0; --i)
acc *= size[i];
nelmts = (max/acc) * acc;
@@ -153,7 +153,7 @@ H5S_all_fgath (H5F_t *f, const struct H5O_layout_t *layout,
* currently pass sample information into H5F_arr_read() much less
* H5F_istore_read().
*/
- if ((space_ndims=H5S_get_dims (file_space, hsize, NULL))<0) {
+ if ((space_ndims=H5S_extent_dims (file_space, hsize, NULL))<0) {
HRETURN_ERROR (H5E_DATASPACE, H5E_CANTINIT, 0,
"unable to retrieve hyperslab parameters");
}
@@ -236,7 +236,7 @@ H5S_all_fscat (H5F_t *f, const struct H5O_layout_t *layout,
/*
* Get information to determine what elements are being selected.
*/
- if ((space_ndims=H5S_get_dims (file_space, hsize, NULL))<0) {
+ if ((space_ndims=H5S_extent_dims (file_space, hsize, NULL))<0) {
HRETURN_ERROR (H5E_DATASPACE, H5E_CANTINIT, FAIL,
"unable to retrieve hyperslab parameters");
}
@@ -318,13 +318,13 @@ H5S_all_mgath (const void *_buf, size_t elmt_size,
/*
* Retrieve information to determine what elements are being selected.
*/
- if ((space_ndims=H5S_get_dims (mem_space, hsize, NULL))<0) {
+ if ((space_ndims=H5S_extent_dims (mem_space, hsize, NULL))<0) {
HRETURN_ERROR (H5E_DATASPACE, H5E_CANTINIT, 0,
"unable to retrieve hyperslab parameters");
}
HDmemset(mem_offset,0,sizeof(hssize_t)*space_ndims);
- if (H5S_get_dims (mem_space, mem_size, NULL)<0) {
+ if (H5S_extent_dims (mem_space, mem_size, NULL)<0) {
HRETURN_ERROR (H5E_DATASPACE, H5E_CANTINIT, 0,
"unable to retrieve data space dimensions");
}
@@ -406,13 +406,13 @@ H5S_all_mscat (const void *_tconv_buf, size_t elmt_size,
/*
* Retrieve information to determine what elements are being selected.
*/
- if ((space_ndims=H5S_get_dims (mem_space, hsize, NULL))<0) {
+ if ((space_ndims=H5S_extent_dims (mem_space, hsize, NULL))<0) {
HRETURN_ERROR (H5E_DATASPACE, H5E_CANTINIT, FAIL,
"unable to retrieve hyperslab parameters");
}
HDmemset(mem_offset,0,sizeof(hssize_t)*space_ndims);
- if (H5S_get_dims (mem_space, mem_size, NULL)<0) {
+ if (H5S_extent_dims (mem_space, mem_size, NULL)<0) {
HRETURN_ERROR (H5E_DATASPACE, H5E_CANTINIT, FAIL,
"unable to retrieve data space dimensions");
}