summaryrefslogtreecommitdiffstats
path: root/src/H5Dpkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-07-27 15:42:52 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-07-27 15:42:52 (GMT)
commit7bc9c34c55f1c21b521d20b4ec01092fee73ff90 (patch)
tree7ffd67721a4ede622ad2e7c5afb93d5fb4796372 /src/H5Dpkg.h
parent21f8fa203a153bb9d3d26f73c9e56d22fd9671f2 (diff)
downloadhdf5-7bc9c34c55f1c21b521d20b4ec01092fee73ff90.zip
hdf5-7bc9c34c55f1c21b521d20b4ec01092fee73ff90.tar.gz
hdf5-7bc9c34c55f1c21b521d20b4ec01092fee73ff90.tar.bz2
[svn-r17240] Description:
Interim checkin, before switching to use layout index message for storing layout message v4 chunk index addresses. Tested on: FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode Mac OS X/32 10.5.7 (amazon) in debug mode Mac OS X/32 10.5.7 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode
Diffstat (limited to 'src/H5Dpkg.h')
-rw-r--r--src/H5Dpkg.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/H5Dpkg.h b/src/H5Dpkg.h
index 4479dd0..fb2d642 100644
--- a/src/H5Dpkg.h
+++ b/src/H5Dpkg.h
@@ -64,6 +64,18 @@
#define H5D_CHUNK_HASH(D, ADDR) H5F_addr_hash(ADDR, (D)->cache.chunk.nslots)
+/* Default creation parameters for chunk index data structures */
+
+/* Fixed array creation values */
+#define H5D_FARRAY_MAX_DBLK_PAGE_NELMTS_BITS 10 /* i.e. 1024 elements per data block page */
+
+/* Extensible array creation values */
+#define H5D_EARRAY_MAX_NELMTS_BITS 32 /* i.e. 4 giga-elements */
+#define H5D_EARRAY_IDX_BLK_ELMTS 4
+#define H5D_EARRAY_SUP_BLK_MIN_DATA_PTRS 4
+#define H5D_EARRAY_DATA_BLK_MIN_ELMTS 16
+#define H5D_EARRAY_MAX_DBLOCK_PAGE_NELMTS_BITS 10 /* i.e. 1024 elements per data block page */
+
/****************************/
/* Package Private Typedefs */