diff --git a/doc/html/Datasets.html b/doc/html/Datasets.html index 6ffa622770..46233bd62e 100644 --- a/doc/html/Datasets.html +++ b/doc/html/Datasets.html @@ -542,9 +542,9 @@ H5Pset_external (plist, "scan3.data", 0, 16);
herr_t H5Pset_buffer (hid_t xfer_plist,
- size_t max_buf_size, void *tconv_buf, void
+ hsize_t max_buf_size, void *tconv_buf, void
*bkg_buf)
- size_t H5Pget_buffer (hid_t xfer_plist, void
+ hsize_t H5Pget_buffer (hid_t xfer_plist, void
**tconv_buf, void **bkg_buf)
- Sets or retrieves the maximum size in bytes of the temporary
buffer used for datatype conversion in the I/O pipeline. An
diff --git a/doc/html/RM_H5P.html b/doc/html/RM_H5P.html
index 7ee03339fd..7b6adb795c 100644
--- a/doc/html/RM_H5P.html
+++ b/doc/html/RM_H5P.html
@@ -2070,7 +2070,7 @@ facilitate moving easily between them.
- Name: H5Pset_buffer
- Signature:
- herr_t
H5Pset_buffer
(hid_t plist
,
- size_t size
,
+ hsize_t size
,
void *tconv
,
void *bkg
)
@@ -2104,7 +2104,7 @@ facilitate moving easily between them.
- hid_t
plist
- IN: Identifier for the dataset transfer property list.
-
- size_t
size
+ - hsize_t
size
- IN: Size, in bytes, of the type conversion and background buffers.
- void
tconv
- IN: Pointer to application-allocated type conversion buffer.
@@ -2129,7 +2129,7 @@ facilitate moving easily between them.
- Name: H5Pget_buffer
- Signature:
-
- size_t
H5Pget_buffer
(hid_t plist
,
+ - hsize_t
H5Pget_buffer
(hid_t plist
,
void **tconv
,
void **bkg
)
diff --git a/doc/html/RM_H5T.html b/doc/html/RM_H5T.html
index c082035834..6c4b9f39bb 100644
--- a/doc/html/RM_H5T.html
+++ b/doc/html/RM_H5T.html
@@ -420,7 +420,7 @@ in the HDF5 User's Guide for further information, including a compl
- Signature:
- herr_t
H5Tconvert
(hid_t src_id
,
hid_t dst_id
,
- size_t nelmts
,
+ hsize_t nelmts
,
void *buf
,
void *background
,
hid_t plist_id
@@ -452,7 +452,7 @@ in the HDF5 User's Guide for further information, including a compl
- Identifier for the source datatype.
- hid_t
dst_id
- Identifier for the destination datatype.
-
- size_t
nelmts
+ - hsize_t
nelmts
- Size of array
buf
.
- void *
buf
- Array containing pre- and post-conversion values.