mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
[svn-r7415] Purpose:
Code cleanup Description: Clean up some of the code for writing out dataspace and datatype information. Platforms tested: FreeBSD 4.8 (sleipnir) too small to need h5committest
This commit is contained in:
parent
6f8d95297d
commit
4bb0d2d299
@ -649,9 +649,9 @@ H5O_dtype_encode_helper(uint8_t **pp, const H5T_t *dt)
|
||||
*(*pp)++ = 0;
|
||||
|
||||
/* Reserved */
|
||||
*(*pp)++ = '\0';
|
||||
*(*pp)++ = '\0';
|
||||
*(*pp)++ = '\0';
|
||||
*(*pp)++ = 0;
|
||||
*(*pp)++ = 0;
|
||||
*(*pp)++ = 0;
|
||||
|
||||
/* Dimension permutation */
|
||||
UINT32ENCODE(*pp, 0);
|
||||
@ -767,6 +767,7 @@ H5O_dtype_encode_helper(uint8_t **pp, const H5T_t *dt)
|
||||
break;
|
||||
}
|
||||
|
||||
/* Encode the type's class, version and bit field */
|
||||
*hdr++ = ((unsigned)(dt->type) & 0x0f) | (((dt->type==H5T_COMPOUND && dt->u.compnd.has_array) ? H5O_DTYPE_VERSION_UPDATED : H5O_DTYPE_VERSION_COMPAT )<<4);
|
||||
*hdr++ = (flags >> 0) & 0xff;
|
||||
*hdr++ = (flags >> 8) & 0xff;
|
||||
|
@ -133,7 +133,7 @@ H5O_sdspace_decode(H5F_t *f, hid_t UNUSED dxpl_id, const uint8_t *p, H5O_shared_
|
||||
if (NULL==(sdim->perm=H5FL_ARR_MALLOC(hsize_t,sdim->rank)))
|
||||
HGOTO_ERROR (H5E_RESOURCE, H5E_NOSPACE, NULL, "memory allocation failed");
|
||||
for (u = 0; u < sdim->rank; u++)
|
||||
UINT32DECODE(p, sdim->perm[u]);
|
||||
H5F_DECODE_LENGTH (f, p, sdim->perm[u]);
|
||||
}
|
||||
#endif /* LATER */
|
||||
}
|
||||
@ -220,7 +220,7 @@ H5O_sdspace_encode(H5F_t *f, uint8_t *p, const void *mesg)
|
||||
#ifdef LATER
|
||||
if (flags & H5S_VALID_PERM) {
|
||||
for (u = 0; u < sdim->rank; u++)
|
||||
UINT32ENCODE(p, sdim->perm[u]);
|
||||
H5F_ENCODE_LENGTH (f, p, sdim->perm[u]);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user