- Timestamp:
- Feb 13, 2013, 10:43:41 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20120805/Ohana/src/libfits/matrix/F_matrix.c
r27435 r35161 43 43 return (size); 44 44 } 45 46 off_t gfits_data_pad_size (off_t rawsize) { 47 48 off_t Nrec, size; 49 50 /* round up to next complete block */ 51 if (rawsize % FT_RECORD_SIZE) { 52 Nrec = 1 + (int) (rawsize / FT_RECORD_SIZE); 53 size = FT_RECORD_SIZE * Nrec; 54 } 55 56 return (size); 57 }
Note:
See TracChangeset
for help on using the changeset viewer.
