Lines Matching refs:offset1
6660 uint32 offset1, offset2, full_bytes; in extractImageSection() local
6745 offset1 = row_offset + (first_col * bps / 8); in extractImageSection()
6751 bitset = *(src_buff + offset1) & (((unsigned char)1 << k)) ? 1 : 0; in extractImageSection()
6763 row, offset1, shift1, offset2, shift2); in extractImageSection()
6769 _TIFFmemcpy (sect_buff + dst_offset, src_buff + offset1, full_bytes); in extractImageSection()
6772 TIFFError ("", " Alligned data src offset1: %8d, Dst offset: %8d\n", offset1, dst_offset); in extractImageSection()
6806 …TIFFError ("", " Unalligned data src offset: %8d, Dst offset: %8d\n", offset1 , dst_offset)… in extractImageSection()
6810 bytebuff1 = src_buff[offset1 + j] & ((unsigned char)255 >> shift1); in extractImageSection()
6811 bytebuff2 = src_buff[offset1 + j + 1] & ((unsigned char)255 << (7 - shift1)); in extractImageSection()
6830 …TIFFError ("", " Trailing bits src offset: %8d, Dst offset: %8d\n", offset1 + full_bytes,… in extractImageSection()
6834 bytebuff1 = src_buff[offset1 + full_bytes] & ((unsigned char)255 << (7 - shift2)); in extractImageSection()