diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-09-01 18:33:32 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-09-01 18:33:32 (GMT) |
commit | 572688a4e5fc702c5c6313badb5c9dc1fba19ff3 (patch) | |
tree | 20105d7a3a3cb7ce0d6c819a96f16c71b3966c77 /src/H5Tpkg.h | |
parent | 9d452584c69713124501d9b5ebd5af3d42932ec7 (diff) | |
download | hdf5-572688a4e5fc702c5c6313badb5c9dc1fba19ff3.zip hdf5-572688a4e5fc702c5c6313badb5c9dc1fba19ff3.tar.gz hdf5-572688a4e5fc702c5c6313badb5c9dc1fba19ff3.tar.bz2 |
[svn-r11332] Purpose: Minor Change to Macro Names
Description: Changed the names of macros defined in H5Tpkg.h from
H5T_CONV_INTERIM_XXX_XXX to H5T_CONV_INTERNAL_XXX_XXX to be more
descriptive.
Platforms tested: fuss - simple change
Diffstat (limited to 'src/H5Tpkg.h')
-rw-r--r-- | src/H5Tpkg.h | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/src/H5Tpkg.h b/src/H5Tpkg.h index e98d5b0..76d5e13 100644 --- a/src/H5Tpkg.h +++ b/src/H5Tpkg.h @@ -65,99 +65,99 @@ #define H5T_IS_ATOMIC(dt) (!(H5T_IS_COMPLEX((dt)->type) || (dt)->type==H5T_OPAQUE)) -/* Define an interim macro for converting between floating number(float and double) and floating number. +/* Define an internal macro for converting between floating number(float and double) and floating number. * All Cray compilers don't support denormalized floating values generating exception(?). */ #if H5_CONVERT_DENORMAL_FLOAT -#define H5T_CONV_INTERIM_FP_FP 1 +#define H5T_CONV_INTERNAL_FP_FP 1 #endif /*H5_CONVERT_DENORMAL_FLOAT*/ -/* Define an interim macro for converting between floating number(float and double) and long double. +/* Define an internal macro for converting between floating number(float and double) and long double. * All Cray compilers don't support denormalized floating values generating exception(?). NEC doesn't * support long double. */ #if H5_SIZEOF_LONG_DOUBLE && H5_CONVERT_DENORMAL_FLOAT -#define H5T_CONV_INTERIM_FP_LDOUBLE 1 +#define H5T_CONV_INTERNAL_FP_LDOUBLE 1 #endif /*H5_SIZEOF_LONG_DOUBLE && H5_CONVERT_DENORMAL_FLOAT*/ -/* Define an interim macro for converting all integers to long double. SGI compilers give some +/* Define an internal macro for converting all integers to long double. SGI compilers give some * incorrect conversions. */ #if (H5_WANT_DATA_ACCURACY && H5_INTEGER_TO_LDOUBLE_ACCURATE) || (!H5_WANT_DATA_ACCURACY) -#define H5T_CONV_INTERIM_INTEGER_LDOUBLE 1 +#define H5T_CONV_INTERNAL_INTEGER_LDOUBLE 1 #endif -/* Define an interim macro for converting unsigned (long) long to floating numbers. +/* Define an internal macro for converting unsigned (long) long to floating numbers. * 64-bit Solaris does different rounding. */ #if (H5_WANT_DATA_ACCURACY && H5_ULONG_TO_FP_BOTTOM_BIT_ACCURATE) || (!H5_WANT_DATA_ACCURACY) -#define H5T_CONV_INTERIM_ULONG_FP 1 +#define H5T_CONV_INTERNAL_ULONG_FP 1 #endif -/* Define an interim macro for converting unsigned long to long double. SGI compilers give some +/* Define an internal macro for converting unsigned long to long double. SGI compilers give some * incorrect conversions. 64-bit Solaris does different rounding. */ #if (H5_WANT_DATA_ACCURACY && H5_INTEGER_TO_LDOUBLE_ACCURATE && H5_ULONG_TO_FP_BOTTOM_BIT_ACCURATE) || \ (!H5_WANT_DATA_ACCURACY) -#define H5T_CONV_INTERIM_ULONG_LDOUBLE 1 +#define H5T_CONV_INTERNAL_ULONG_LDOUBLE 1 #endif -/* Define an interim macro for converting unsigned long long to floating numbers. SGI compilers give +/* Define an internal macro for converting unsigned long long to floating numbers. SGI compilers give * some incorect conversion. 64-bit Solaris does different rounding. Windows Visual Studio 6 does * not support unsigned long long. */ #if (H5_WANT_DATA_ACCURACY && H5_ULLONG_TO_FP_CAST_WORKS && H5_ULONG_TO_FP_BOTTOM_BIT_ACCURATE) || \ (!H5_WANT_DATA_ACCURACY && H5_ULLONG_TO_FP_CAST_WORKS) -#define H5T_CONV_INTERIM_ULLONG_FP 1 +#define H5T_CONV_INTERNAL_ULLONG_FP 1 #endif -/* Define an interim macro for converting unsigned long long to long double. SGI compilers give +/* Define an internal macro for converting unsigned long long to long double. SGI compilers give * some incorect conversion. 64-bit Solaris does different rounding. Windows Visual Studio 6 does * not support unsigned long long. For FreeBSD(sleipnir), the last 2 bytes of mantissa are lost when * compiler tries to do the conversion. For Cygwin, compiler doesn't do rounding correctly. */ #if (H5_WANT_DATA_ACCURACY && H5_ULLONG_TO_FP_CAST_WORKS && H5_ULONG_TO_FP_BOTTOM_BIT_ACCURATE && \ H5_ULLONG_TO_LDOUBLE_PRECISION) || (!H5_WANT_DATA_ACCURACY && H5_ULLONG_TO_FP_CAST_WORKS) -#define H5T_CONV_INTERIM_ULLONG_LDOUBLE 1 +#define H5T_CONV_INTERNAL_ULLONG_LDOUBLE 1 #endif -/* Define an interim macro for converting long double to all integers. SGI compilers give some incorrect +/* Define an internal macro for converting long double to all integers. SGI compilers give some incorrect * conversions. HP-UX 11.00 compiler generates floating exception. */ #if (H5_WANT_DATA_ACCURACY && H5_LDOUBLE_TO_INTEGER_ACCURATE && H5_LDOUBLE_TO_INTEGER_WORKS) || \ (!H5_WANT_DATA_ACCURACY && H5_LDOUBLE_TO_INTEGER_WORKS) -#define H5T_CONV_INTERIM_LDOUBLE_INTEGER 1 +#define H5T_CONV_INTERNAL_LDOUBLE_INTEGER 1 #endif -/* Define an interim macro for converting long double to unsigned int. SGI compilers give some incorrect +/* Define an internal macro for converting long double to unsigned int. SGI compilers give some incorrect * conversions. HP-UX 11.00 compiler generates floating exception. Some Intel compilers on some Linux * give incorrect values. */ #if (H5_WANT_DATA_ACCURACY && H5_LDOUBLE_TO_INTEGER_ACCURATE && H5_LDOUBLE_TO_UINT_ACCURATE && \ H5_LDOUBLE_TO_INTEGER_WORKS) || (!H5_WANT_DATA_ACCURACY && H5_LDOUBLE_TO_INTEGER_WORKS) -#define H5T_CONV_INTERIM_LDOUBLE_UINT 1 +#define H5T_CONV_INTERNAL_LDOUBLE_UINT 1 #endif -/* Define an interim macro for converting floating numbers to long long. The hard conversion on Windows +/* Define an internal macro for converting floating numbers to long long. The hard conversion on Windows * .NET 2003 has a bug and gives wrong exception value. */ #if (H5_WANT_DATA_ACCURACY && !H5_HW_FP_TO_LLONG_NOT_WORKS) || (!H5_WANT_DATA_ACCURACY) -#define H5T_CONV_INTERIM_FP_LLONG 1 +#define H5T_CONV_INTERNAL_FP_LLONG 1 #endif -/* Define an interim macro for converting long double to long long. SGI compilers give some incorrect +/* Define an internal macro for converting long double to long long. SGI compilers give some incorrect * conversions. HP-UX 11.00 compiler generates floating exception. The hard conversion on Windows * .NET 2003 has a bug and gives wrong exception value. */ #if (H5_WANT_DATA_ACCURACY && !H5_HW_FP_TO_LLONG_NOT_WORKS && H5_LDOUBLE_TO_INTEGER_ACCURATE && \ H5_LDOUBLE_TO_INTEGER_WORKS) || \ (!H5_WANT_DATA_ACCURACY && !H5_HW_FP_TO_LLONG_NOT_WORKS && H5_LDOUBLE_TO_INTEGER_WORKS) -#define H5T_CONV_INTERIM_LDOUBLE_LLONG 1 +#define H5T_CONV_INTERNAL_LDOUBLE_LLONG 1 #endif -/* Define an interim macro for converting floating numbers to unsigned long long. PGI compiler does +/* Define an internal macro for converting floating numbers to unsigned long long. PGI compiler does * roundup when the source fraction part is greater than 0.5. HP-UX compilers set the maximal number * for unsigned long long as 0x7fffffffffffffff during conversion. */ #if (H5_WANT_DATA_ACCURACY && H5_FP_TO_ULLONG_ACCURATE && H5_FP_TO_ULLONG_RIGHT_MAXIMUM) || \ (!H5_WANT_DATA_ACCURACY) -#define H5T_CONV_INTERIM_FP_ULLONG 1 +#define H5T_CONV_INTERNAL_FP_ULLONG 1 #endif -/* Define an interim macro for converting long double to all integers. SGI compilers give some incorrect +/* Define an internal macro for converting long double to all integers. SGI compilers give some incorrect * conversions. HP-UX 11.00 compiler generates floating exception. */ #if (H5_WANT_DATA_ACCURACY && H5_LDOUBLE_TO_INTEGER_ACCURATE && H5_LDOUBLE_TO_INTEGER_WORKS && \ H5_FP_TO_ULLONG_ACCURATE && H5_FP_TO_ULLONG_RIGHT_MAXIMUM) || \ (!H5_WANT_DATA_ACCURACY && H5_LDOUBLE_TO_INTEGER_WORKS) -#define H5T_CONV_INTERIM_LDOUBLE_ULLONG 1 +#define H5T_CONV_INTERNAL_LDOUBLE_ULLONG 1 #endif /* Statistics about a conversion function */ |