Lines Matching defs:size
126 { uint32_t size ;
386 /* This function ought to check size */
483 comm_fmt->size = chunk_size ;
915 { psf_log_printf (psf, "*** Chunk size %u > file length %D. Exiting parser.\n", chunk_size, psf->filelength) ;
1013 if (comm_fmt->size > 0x10000 && (comm_fmt->size & 0xffff) == 0)
1014 { psf_log_printf (psf, " COMM : %d (0x%x) *** should be ", comm_fmt->size, comm_fmt->size) ;
1015 comm_fmt->size = ENDSWAP_32 (comm_fmt->size) ;
1016 psf_log_printf (psf, "%d (0x%x)\n", comm_fmt->size, comm_fmt->size) ;
1019 psf_log_printf (psf, " COMM : %d\n", comm_fmt->size) ;
1021 if (comm_fmt->size == SIZEOF_AIFF_COMM)
1023 else if (comm_fmt->size == SIZEOF_AIFC_COMM_MIN)
1025 else if (comm_fmt->size >= SIZEOF_AIFC_COMM)
1031 comm_fmt->size = SF_MIN (sizeof (ubuf.scbuf), make_size_t (comm_fmt->size)) ;
1032 memset (ubuf.scbuf, 0, comm_fmt->size) ;
1033 read_len = comm_fmt->size - SIZEOF_AIFC_COMM + 1 ;