diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-27 03:06:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-27 03:06:48 (GMT) |
commit | c64ac252cdd9fe40b96313e2435551f16428b9d6 (patch) | |
tree | 9ff6633ac3ee8fe9529620a0ecfc99bbbab451f8 /hl | |
parent | ddf436469153cc5deb7cadfdb9a1b985c605774f (diff) | |
download | hdf5-c64ac252cdd9fe40b96313e2435551f16428b9d6.zip hdf5-c64ac252cdd9fe40b96313e2435551f16428b9d6.tar.gz hdf5-c64ac252cdd9fe40b96313e2435551f16428b9d6.tar.bz2 |
[svn-r13549] Description:
Check in changes from Elena and I to get pgcc compiler working again.
Primarily (all?) changes to move from using 'hsize_t' as array index to using
something else ('size_t') mostly.
Tested on:
Linux/32 2.4 kagiso w/pgcc
Diffstat (limited to 'hl')
-rw-r--r-- | hl/examples/ex_image1.c | 8 | ||||
-rw-r--r-- | hl/examples/ex_lite2.c | 6 | ||||
-rw-r--r-- | hl/test/test_image.c | 12 | ||||
-rw-r--r-- | hl/test/test_table.c | 140 |
4 files changed, 84 insertions, 82 deletions
diff --git a/hl/examples/ex_image1.c b/hl/examples/ex_image1.c index 9b3c426..96bc7c7 100644 --- a/hl/examples/ex_image1.c +++ b/hl/examples/ex_image1.c @@ -16,8 +16,8 @@ #include "hdf5.h" #include "hdf5_hl.h" -#define WIDTH (hsize_t)400 -#define HEIGHT (hsize_t)200 +#define WIDTH 400 +#define HEIGHT 200 #define PAL_ENTRIES 9 unsigned char buf [ WIDTH*HEIGHT ]; @@ -26,7 +26,7 @@ int main( void ) hid_t file_id; herr_t status; hsize_t pal_dims[] = {PAL_ENTRIES,3}; - hsize_t i, j; + size_t i, j; int n, space; unsigned char pal[PAL_ENTRIES*3] = { /* create a palette with 9 colors */ 0,0,168, /* dark blue */ @@ -56,7 +56,7 @@ int main( void ) file_id = H5Fcreate( "ex_image1.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT ); /* make the image */ - status = H5IMmake_image_8bit( file_id, "image1", WIDTH, HEIGHT, buf ); + status = H5IMmake_image_8bit( file_id, "image1", (hsize_t)WIDTH, (hsize_t)HEIGHT, buf ); /* make a palette */ status = H5IMmake_palette( file_id, "pallete", pal_dims, pal ); diff --git a/hl/examples/ex_lite2.c b/hl/examples/ex_lite2.c index 5919ef9..98f92c8 100644 --- a/hl/examples/ex_lite2.c +++ b/hl/examples/ex_lite2.c @@ -22,7 +22,7 @@ int main( void ) int data[6]; hsize_t dims[2]; herr_t status; - hsize_t i, j, nrow, n_values; + size_t i, j, nrow, n_values; /* open file from ex_lite1.c */ file_id = H5Fopen ("ex_lite1.h5", H5F_ACC_RDONLY, H5P_DEFAULT); @@ -34,8 +34,8 @@ int main( void ) status = H5LTget_dataset_info(file_id,"/dset",dims,NULL,NULL); /* print it by rows */ - n_values = dims[0] * dims[1]; - nrow = dims[1]; + n_values = (size_t)(dims[0] * dims[1]); + nrow = (size_t)dims[1]; for (i=0; i<n_values/nrow; i++ ) { for (j=0; j<nrow; j++) diff --git a/hl/test/test_image.c b/hl/test/test_image.c index c4182bb..c988160 100644 --- a/hl/test/test_image.c +++ b/hl/test/test_image.c @@ -96,7 +96,7 @@ static int test_simple(void) hsize_t pal_dims_out[2]; char interlace[20]; hssize_t npals; - hsize_t i, j; + size_t i, j; herr_t is_image; herr_t is_pal; unsigned char image_in1 [ WIDTH*HEIGHT ]; @@ -120,10 +120,10 @@ static int test_simple(void) /* create an image of 9 values divided evenly by the array */ space = WIDTH*HEIGHT / PAL_ENTRIES; - for (i=0, j=0, n=0; i < WIDTH*HEIGHT; i++, j++ ) + for (i=0, j=0, n=0; i < (size_t)(WIDTH*HEIGHT); i++, j++ ) { image_in1[i] = n; - if ( j > space ) + if ( j > (size_t)space ) { n++; j=0; @@ -131,7 +131,7 @@ static int test_simple(void) if (n>PAL_ENTRIES-1) n=0; } /* create an image 3 byte RGB image */ - for (i=0, j=0, n=0; i < WIDTH*HEIGHT*3; i++, j++) + for (i=0, j=0, n=0; i < (size_t)(WIDTH*HEIGHT*3); i++, j++) { image_in2[i] = n; if (j==3) @@ -185,7 +185,7 @@ static int test_simple(void) goto out; /* check */ - for (i = 0; i < height*width*planes; i++) + for (i = 0; i < (size_t)(height*width*planes); i++) { if ( image_in1[i] != image_out1[i] ) { @@ -223,7 +223,7 @@ static int test_simple(void) goto out; /* check */ - for (i = 0; i < height*width*planes; i++) + for (i = 0; i < (size_t)(height*width*planes); i++) { if ( image_in2[i] != image_out2[i] ) { diff --git a/hl/test/test_table.c b/hl/test/test_table.c index 0848b43..fcc8a7b 100644 --- a/hl/test/test_table.c +++ b/hl/test/test_table.c @@ -157,6 +157,7 @@ test_table(hid_t fid, int do_write) hsize_t nfields; hsize_t rfields; hsize_t i, j; + size_t u; hsize_t start1; /* record to start reading from 1st table */ hsize_t start2; /* record to start writing in 2nd table */ @@ -580,8 +581,8 @@ test_table(hid_t fid, int do_write) * data= 0 1 2 3 4 5 6 7 *------------------------------------------------------------------------- */ - for( i=0; i<NRECORDS; i++) - wbufd[i] = wbuf[i]; + for( u=0; u<(size_t)NRECORDS; u++) + wbufd[u] = wbuf[u]; if (H5TBmake_table(TITLE,fid,"table3",NFIELDS,NRECORDS,type_size_mem, field_names,field_offset,field_type, @@ -617,8 +618,8 @@ test_table(hid_t fid, int do_write) *------------------------------------------------------------------------- */ nrecords=rrecords; - for( i=0; i<nrecords; i++) - wbufd[i] = rbuf[i]; + for( u=0; u<(size_t)nrecords; u++) + wbufd[u] = rbuf[u]; /*------------------------------------------------------------------------- * Delete records, start at 0, delete 2 @@ -648,8 +649,8 @@ test_table(hid_t fid, int do_write) *------------------------------------------------------------------------- */ nrecords=rrecords; - for( i=0; i<nrecords; i++) - wbufd[i] = rbuf[i]; + for( u=0; u<(size_t)nrecords; u++) + wbufd[u] = rbuf[u]; /*------------------------------------------------------------------------- * Delete records, start at 1, delete 1 @@ -679,8 +680,8 @@ test_table(hid_t fid, int do_write) *------------------------------------------------------------------------- */ nrecords=rrecords; - for( i=0; i<nrecords; i++) - wbufd[i] = rbuf[i]; + for( u=0; u<(size_t)nrecords; u++) + wbufd[u] = rbuf[u]; /*------------------------------------------------------------------------- * Delete records, start at 0, delete 1 @@ -710,8 +711,8 @@ test_table(hid_t fid, int do_write) *------------------------------------------------------------------------- */ nrecords=rrecords; - for( i=0; i<nrecords; i++) - wbufd[i] = rbuf[i]; + for( u=0; u<(size_t)nrecords; u++) + wbufd[u] = rbuf[u]; /* Read complete table */ if (H5TBread_table(fid,"table3",type_size_mem,field_offset,field_size,rbuf)<0) @@ -923,18 +924,18 @@ test_table(hid_t fid, int do_write) goto out; /* compare the read values with the initial values */ - for( i = 0; i < NRECORDS; i++ ) + for( u = 0; u < (size_t)NRECORDS; u++ ) { - if ( i >= 2 && i <= 4 ) + if ( u >= 2 && u <= 4 ) { - if ( rbuf[i].lati != position_in[i-NRECORDS_ADD+1].lati || - rbuf[i].longi != position_in[i-NRECORDS_ADD+1].longi || - rbuf[i].pressure != pressure_in[i-NRECORDS_ADD+1] ) + if ( rbuf[u].lati != position_in[u-(size_t)NRECORDS_ADD+1].lati || + rbuf[u].longi != position_in[u-(size_t)NRECORDS_ADD+1].longi || + rbuf[u].pressure != pressure_in[u-(size_t)NRECORDS_ADD+1] ) { fprintf(stderr,"%ld %f %d\n", - rbuf[i].longi,rbuf[i].pressure,rbuf[i].lati); + rbuf[u].longi,rbuf[u].pressure,rbuf[u].lati); fprintf(stderr,"%ld %f %d\n", - position_in[i].longi,pressure_in[i],position_in[i].lati); + position_in[u].longi,pressure_in[u],position_in[u].lati); goto out; } } @@ -980,9 +981,9 @@ test_table(hid_t fid, int do_write) goto out; /* Compare the extracted table with the initial values */ - for( i = 0; i < NRECORDS_ADD; i++ ) + for( u = 0; u < (size_t)NRECORDS_ADD; u++ ) { - if ( pressure_out[i] != pressure_in[i] ) { + if ( pressure_out[u] != pressure_in[u] ) { goto out; } } @@ -1009,10 +1010,10 @@ test_table(hid_t fid, int do_write) goto out; /* Compare the extracted table with the initial values */ - for( i = 0; i < NRECORDS_ADD; i++ ) + for( u = 0; u < (size_t)NRECORDS_ADD; u++ ) { - if ( position_out[i].lati != position_in[i].lati || - position_out[i].longi != position_in[i].longi ) + if ( position_out[u].lati != position_in[u].lati || + position_out[u].longi != position_in[u].longi ) goto out; } @@ -1040,18 +1041,18 @@ test_table(hid_t fid, int do_write) goto out; /* Compare the extracted table with the initial values */ - for( i = 0; i < NRECORDS; i++ ) + for( u = 0; u < (size_t)NRECORDS; u++ ) { - if ( ( strcmp( namepre_out[i].name, namepre_in[i].name ) != 0 ) || - namepre_out[i].pressure != namepre_in[i].pressure ) { + if ( ( strcmp( namepre_out[u].name, namepre_in[u].name ) != 0 ) || + namepre_out[u].pressure != namepre_in[u].pressure ) { goto out; } } /* reset buffer */ - for( i = 0; i < NRECORDS; i++ ) + for( u = 0; u < (size_t)NRECORDS; u++ ) { - strcpy( namepre_out[i].name, "\0" ); - namepre_out[i].pressure = -1; + strcpy( namepre_out[u].name, "\0" ); + namepre_out[u].pressure = -1; } /*------------------------------------------------------------------------- @@ -1066,10 +1067,10 @@ test_table(hid_t fid, int do_write) goto out; /* Compare the extracted table with the initial values */ - for( i = 0; i < 3; i++ ) + for( u = 0; u < 3; u++ ) { - if ( ( strcmp( namepre_out[i].name, namepre_in[start+i].name ) != 0 ) || - namepre_out[i].pressure != namepre_in[start+i].pressure ) { + if ( ( strcmp( namepre_out[u].name, namepre_in[(size_t)start+u].name ) != 0 ) || + namepre_out[u].pressure != namepre_in[(size_t)start+u].pressure ) { goto out; } } @@ -1119,13 +1120,13 @@ test_table(hid_t fid, int do_write) goto out; /* Compare the extracted table with the initial values */ - for( i = 0; i < NRECORDS; i++ ) + for( u = 0; u < (size_t)NRECORDS; u++ ) { - if ( i >= 2 && i <= 4 ) + if ( u >= 2 && u <= 4 ) { - if ( rbuf[i].lati != position_in[i-NRECORDS_ADD+1].lati || - rbuf[i].longi != position_in[i-NRECORDS_ADD+1].longi || - rbuf[i].pressure != pressure_in[i-NRECORDS_ADD+1] ) + if ( rbuf[u].lati != position_in[u-(size_t)NRECORDS_ADD+1].lati || + rbuf[u].longi != position_in[u-(size_t)NRECORDS_ADD+1].longi || + rbuf[u].pressure != pressure_in[u-(size_t)NRECORDS_ADD+1] ) goto out; } } @@ -1176,9 +1177,9 @@ test_table(hid_t fid, int do_write) goto out; /* compare the extracted table with the initial values */ - for( i = 0; i < NRECORDS; i++ ) + for( u = 0; u < (size_t)NRECORDS; u++ ) { - if ( pressure_out[i] != pressure_in[i] ) { + if ( pressure_out[u] != pressure_in[u] ) { goto out; } } @@ -1207,10 +1208,10 @@ test_table(hid_t fid, int do_write) goto out; /* compare the extracted table with the initial values */ - for( i = 0; i < NRECORDS_ADD; i++ ) + for( u = 0; u < (size_t)NRECORDS_ADD; u++ ) { - if ( position_out[i].lati != position_in[i].lati || - position_out[i].longi != position_in[i].longi ) { + if ( position_out[u].lati != position_in[u].lati || + position_out[u].longi != position_in[u].longi ) { goto out; } } @@ -1241,19 +1242,19 @@ test_table(hid_t fid, int do_write) goto out; /* compare the extracted table with the initial values */ - for( i = 0; i < NRECORDS; i++ ) + for( u = 0; u < (size_t)NRECORDS; u++ ) { - if ( ( strcmp( namepre_out[i].name, namepre_in[i].name ) != 0 ) || - namepre_out[i].pressure != namepre_in[i].pressure ) { + if ( ( strcmp( namepre_out[u].name, namepre_in[u].name ) != 0 ) || + namepre_out[u].pressure != namepre_in[u].pressure ) { goto out; } } /* reset buffer */ - for( i = 0; i < NRECORDS; i++ ) + for( u = 0; u < (size_t)NRECORDS; u++ ) { - strcpy( namepre_out[i].name, "\0" ); - namepre_out[i].pressure = -1; + strcpy( namepre_out[u].name, "\0" ); + namepre_out[u].pressure = -1; } /*------------------------------------------------------------------------- @@ -1271,10 +1272,10 @@ test_table(hid_t fid, int do_write) goto out; /* compare the extracted table with the initial values */ - for( i = 0; i < 3; i++ ) + for( u = 0; u < 3; u++ ) { - if ( ( strcmp( namepre_out[i].name, wbuf[start+i].name ) != 0 ) || - namepre_out[i].pressure != wbuf[start+i].pressure ) { + if ( ( strcmp( namepre_out[u].name, wbuf[(size_t)start+u].name ) != 0 ) || + namepre_out[u].pressure != wbuf[(size_t)start+u].pressure ) { goto out; } } @@ -1312,14 +1313,14 @@ test_table(hid_t fid, int do_write) goto out; /* compare the extracted table with the original array */ - for( i = 0; i < NRECORDS; i++ ) + for( u = 0; u < (size_t)NRECORDS; u++ ) { - if ( ( strcmp( rbuf2[i].name, wbuf[i].name ) != 0 ) || - rbuf2[i].lati != wbuf[i].lati || - rbuf2[i].longi != wbuf[i].longi || - rbuf2[i].pressure != wbuf[i].pressure || - rbuf2[i].temperature != wbuf[i].temperature || - rbuf2[i].new_field != buf_new[i] ) { + if ( ( strcmp( rbuf2[u].name, wbuf[u].name ) != 0 ) || + rbuf2[u].lati != wbuf[u].lati || + rbuf2[u].longi != wbuf[u].longi || + rbuf2[u].pressure != wbuf[u].pressure || + rbuf2[u].temperature != wbuf[u].temperature || + rbuf2[u].new_field != buf_new[u] ) { goto out; } } @@ -1355,12 +1356,12 @@ test_table(hid_t fid, int do_write) goto out; /* compare the extracted table with the original array */ - for( i = 0; i < NRECORDS; i++ ) + for( u = 0; u < (size_t)NRECORDS; u++ ) { - if ( ( strcmp( rbuf3[i].name, wbuf[i].name ) != 0 ) || - rbuf3[i].lati != wbuf[i].lati || - rbuf3[i].longi != wbuf[i].longi || - rbuf3[i].temperature != wbuf[i].temperature ) { + if ( ( strcmp( rbuf3[u].name, wbuf[u].name ) != 0 ) || + rbuf3[u].lati != wbuf[u].lati || + rbuf3[u].longi != wbuf[u].longi || + rbuf3[u].temperature != wbuf[u].temperature ) { goto out; } } @@ -1403,26 +1404,26 @@ test_table(hid_t fid, int do_write) /* alocate */ names_out = malloc( sizeof(char*) * (size_t)NFIELDS ); - for ( i = 0; i < NFIELDS; i++) + for ( u = 0; u < (size_t)NFIELDS; u++) { - names_out[i] = malloc( sizeof(char) * 255 ); + names_out[u] = malloc( sizeof(char) * 255 ); } /* Get field info */ if ( H5TBget_field_info(fid, "table1", names_out, sizes_out, offset_out, &size_out ) < 0 ) goto out; - for ( i = 0; i < NFIELDS; i++) + for ( u = 0; u < (size_t)NFIELDS; u++) { - if ( (strcmp( field_names[i], names_out[i] ) != 0)) { + if ( (strcmp( field_names[u], names_out[u] ) != 0)) { goto out; } } /* release */ - for ( i = 0; i < NFIELDS; i++) + for ( u = 0; u < (size_t)NFIELDS; u++) { - free ( names_out[i] ); + free ( names_out[u] ); } free ( names_out ); @@ -1549,8 +1550,9 @@ static hid_t h5file_open(const char *fname, unsigned flags) * function that compares one particle *------------------------------------------------------------------------- */ -static int cmp_par(hsize_t i, hsize_t j, particle_t *rbuf, particle_t *wbuf ) +static int cmp_par(hsize_t _i, hsize_t _j, particle_t *rbuf, particle_t *wbuf ) { + size_t i = (size_t)_i, j = (size_t)_j; if ( ( strcmp( rbuf[i].name, wbuf[j].name ) != 0 ) || rbuf[i].lati != wbuf[j].lati || rbuf[i].longi != wbuf[j].longi || |