Home | History | Annotate | Download | only in libtiff

Lines Matching defs:bytes

639 	tmsize_t bytes = m1 * m2;
641 if (m1 && bytes / m1 != m2)
642 bytes = 0;
644 return bytes;
650 tmsize_t bytes = m1 + m2;
654 bytes = 0;
655 else if (bytes <= m1 || bytes <= m2)
656 bytes = 0;
658 return bytes;
804 /* hopefully, we got all the bytes we needed */
807 "Not enough data at scanline %lu (short " TIFF_UINT64_FORMAT " bytes)",
813 /* Swap bytes in the data if from a different endian machine. */