Lines Matching refs:offset1
6679 uint32 offset1, offset2, full_bytes; in extractImageSection() local
6764 offset1 = row_offset + (first_col * bps / 8); in extractImageSection()
6770 bitset = *(src_buff + offset1) & (((unsigned char)1 << k)) ? 1 : 0; in extractImageSection()
6782 row, offset1, shift1, offset2, shift2); in extractImageSection()
6788 _TIFFmemcpy (sect_buff + dst_offset, src_buff + offset1, full_bytes); in extractImageSection()
6791 TIFFError ("", " Alligned data src offset1: %8d, Dst offset: %8d\n", offset1, dst_offset); in extractImageSection()
6825 …TIFFError ("", " Unalligned data src offset: %8d, Dst offset: %8d\n", offset1 , dst_offset)… in extractImageSection()
6829 bytebuff1 = src_buff[offset1 + j] & ((unsigned char)255 >> shift1); in extractImageSection()
6830 bytebuff2 = src_buff[offset1 + j + 1] & ((unsigned char)255 << (7 - shift1)); in extractImageSection()
6849 …TIFFError ("", " Trailing bits src offset: %8d, Dst offset: %8d\n", offset1 + full_bytes,… in extractImageSection()
6853 bytebuff1 = src_buff[offset1 + full_bytes] & ((unsigned char)255 << (7 - shift2)); in extractImageSection()