summaryrefslogtreecommitdiffstats
path: root/src/H5Pdxpl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Pdxpl.c')
-rw-r--r--src/H5Pdxpl.c74
1 files changed, 37 insertions, 37 deletions
diff --git a/src/H5Pdxpl.c b/src/H5Pdxpl.c
index 3515c55..a9642ef 100644
--- a/src/H5Pdxpl.c
+++ b/src/H5Pdxpl.c
@@ -30,15 +30,15 @@
* Function: H5Pset_data_transform
*
* Purpose:
- * Sets data transform expression.
+ * Sets data transform expression.
+ *
+ *
+ * Return: Returns a non-negative value if successful; otherwise returns a negative value.
+ *
*
- *
- * Return: Returns a non-negative value if successful; otherwise returns a negative value.
- *
- *
* Programmer: Leon Arber
* Monday, March 07, 2004
- *
+ *
* Modifications:
*
*-------------------------------------------------------------------------
@@ -50,7 +50,7 @@ herr_t H5Pset_data_transform(hid_t plist_id, const char* expression)
herr_t ret_value=SUCCEED; /* return value */
FUNC_ENTER_API(H5Pset_data_transform, FAIL);
-
+
/* Check arguments */
if (expression == NULL)
HGOTO_ERROR (H5E_ARGS, H5E_BADVALUE, FAIL, "expression cannot be NULL");
@@ -82,10 +82,10 @@ done:
* Function: H5Pget_data_transform
*
* Purpose:
- * Gets data transform expression.
- *
- * Return: Returns a non-negative value if successful; otherwise returns a negative value.
- *
+ * Gets data transform expression.
+ *
+ * Return: Returns a non-negative value if successful; otherwise returns a negative value.
+ *
* Comments:
* If `expression' is non-NULL then write up to `size' bytes into that
* buffer and always return the length of the transform name.
@@ -95,10 +95,10 @@ done:
* is unchanged and the function returns a negative value.
* If a zero is returned for the name's length, then there is no name
* associated with the ID.
- *
+ *
* Programmer: Leon Arber
* August 27, 2004
- *
+ *
* Modifications:
* October 20, 2004 LA: Changed API to use size and return ssize_t
*-------------------------------------------------------------------------
@@ -123,13 +123,13 @@ ssize_t H5Pget_data_transform(hid_t plist_id, char* expression /*out*/, size_t s
if(NULL == data_xform_prop)
HGOTO_ERROR (H5E_PLIST, H5E_CANTGET, FAIL, "Cannot get a data transform that has not been set");
-
+
/* Get the data transform string */
- pexp = H5Z_xform_extract_xform_str(data_xform_prop);
+ pexp = H5Z_xform_extract_xform_str(data_xform_prop);
if(!pexp)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "Failed to retrieve transform expression");
-
+
len = HDstrlen(pexp);
if(expression)
{
@@ -137,9 +137,9 @@ ssize_t H5Pget_data_transform(hid_t plist_id, char* expression /*out*/, size_t s
if(len >= size)
expression[size-1]='\0';
}
-
+
ret_value = (ssize_t)len;
-
+
done:
if(ret_value<0) {
if(data_xform_prop)
@@ -278,7 +278,7 @@ H5Pset_preserve(hid_t plist_id, hbool_t status)
H5T_bkg_t need_bkg; /* Value for background buffer type */
H5P_genplist_t *plist; /* Property list pointer */
herr_t ret_value=SUCCEED; /* return value */
-
+
FUNC_ENTER_API(H5Pset_preserve, FAIL);
H5TRACE2("e","ib",plist_id,status);
@@ -318,7 +318,7 @@ H5Pget_preserve(hid_t plist_id)
H5T_bkg_t need_bkg; /* Background value */
H5P_genplist_t *plist; /* Property list pointer */
int ret_value; /* return value */
-
+
FUNC_ENTER_API(H5Pget_preserve, FAIL);
H5TRACE1("Is","i",plist_id);
@@ -341,9 +341,9 @@ done:
/*-------------------------------------------------------------------------
* Function: H5Pset_edc_check
*
- * Purpose: Enable or disable error-detecting for a dataset reading
- * process. This error-detecting algorithm is whichever
- * user chooses earlier. This function cannot control
+ * Purpose: Enable or disable error-detecting for a dataset reading
+ * process. This error-detecting algorithm is whichever
+ * user chooses earlier. This function cannot control
* writing process.
*
* Return: Non-negative on success/Negative on failure
@@ -360,14 +360,14 @@ H5Pset_edc_check(hid_t plist_id, H5Z_EDC_t check)
{
H5P_genplist_t *plist; /* Property list pointer */
herr_t ret_value=SUCCEED; /* return value */
-
+
FUNC_ENTER_API(H5Pset_edc_check, FAIL);
H5TRACE2("e","iZe",plist_id,check);
/* Check argument */
if (check != H5Z_ENABLE_EDC && check != H5Z_DISABLE_EDC)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "not a valid value");
-
+
/* Get the plist structure */
if(NULL == (plist = H5P_object_verify(plist_id,H5P_DATASET_XFER)))
HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID");
@@ -375,7 +375,7 @@ H5Pset_edc_check(hid_t plist_id, H5Z_EDC_t check)
/* Update property list */
if (H5P_set(plist,H5D_XFER_EDC_NAME,&check)<0)
HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "unable to set value");
-
+
done:
FUNC_LEAVE_API(ret_value);
}
@@ -384,9 +384,9 @@ done:
/*-------------------------------------------------------------------------
* Function: H5Pget_edc_check
*
- * Purpose: Enable or disable error-detecting for a dataset reading
- * process. This error-detecting algorithm is whichever
- * user chooses earlier. This function cannot control
+ * Purpose: Enable or disable error-detecting for a dataset reading
+ * process. This error-detecting algorithm is whichever
+ * user chooses earlier. This function cannot control
* writing process.
*
* Return: Non-negative on success/Negative on failure
@@ -403,7 +403,7 @@ H5Pget_edc_check(hid_t plist_id)
{
H5P_genplist_t *plist; /* Property list pointer */
H5Z_EDC_t ret_value; /* return value */
-
+
FUNC_ENTER_API(H5Pget_edc_check, H5Z_ERROR_EDC);
H5TRACE1("Ze","i",plist_id);
@@ -422,7 +422,7 @@ H5Pget_edc_check(hid_t plist_id)
done:
FUNC_LEAVE_API(ret_value);
}
-
+
/*-------------------------------------------------------------------------
* Function: H5Pset_filter_callback
@@ -446,7 +446,7 @@ H5Pset_filter_callback(hid_t plist_id, H5Z_filter_func_t func, void *op_data)
H5P_genplist_t *plist; /* Property list pointer */
herr_t ret_value=SUCCEED; /* return value */
H5Z_cb_t cb_struct;
-
+
FUNC_ENTER_API(H5Pset_filter_callback, FAIL);
H5TRACE3("e","ixx",plist_id,func,op_data);
@@ -457,7 +457,7 @@ H5Pset_filter_callback(hid_t plist_id, H5Z_filter_func_t func, void *op_data)
/* Update property list */
cb_struct.func = func;
cb_struct.op_data = op_data;
-
+
if (H5P_set(plist,H5D_XFER_FILTER_CB_NAME,&cb_struct)<0)
HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "unable to set value");
@@ -488,7 +488,7 @@ H5Pset_type_conv_cb(hid_t plist_id, H5T_conv_except_func_t op, void *operate_dat
H5P_genplist_t *plist; /* Property list pointer */
herr_t ret_value=SUCCEED; /* return value */
H5T_conv_cb_t cb_struct;
-
+
FUNC_ENTER_API(H5Pset_type_conv_cb, FAIL);
H5TRACE3("e","ixx",plist_id,op,operate_data);
@@ -499,7 +499,7 @@ H5Pset_type_conv_cb(hid_t plist_id, H5T_conv_except_func_t op, void *operate_dat
/* Update property list */
cb_struct.func = op;
cb_struct.user_data = operate_data;
-
+
if (H5P_set(plist,H5D_XFER_CONV_CB_NAME,&cb_struct)<0)
HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "unable to set value");
@@ -530,7 +530,7 @@ H5Pget_type_conv_cb(hid_t plist_id, H5T_conv_except_func_t *op, void **operate_d
H5P_genplist_t *plist; /* Property list pointer */
H5T_conv_cb_t cb_struct;
herr_t ret_value=SUCCEED; /* return value */
-
+
FUNC_ENTER_API(H5Pget_type_conv_cb, FAIL);
H5TRACE3("e","i*xx",plist_id,op,operate_data);
@@ -637,7 +637,7 @@ H5Pset_btree_ratios(hid_t plist_id, double left, double middle,
if (left<0.0 || left>1.0 || middle<0.0 || middle>1.0 ||
right<0.0 || right>1.0)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "split ratio must satisfy 0.0<=X<=1.0");
-
+
/* Get the plist structure */
if(NULL == (plist = H5P_object_verify(plist_id,H5P_DATASET_XFER)))
HGOTO_ERROR(H5E_ATOM, H5E_BADATOM, FAIL, "can't find object for ID");