Lines Matching refs:offset1
40 - uint32_t offset1, offset2, full_bytes;
41 + uint32_t offset1, full_bytes;
116 - offset1 = row_offset + (first_col * bps / 8);
118 + offset1 = row_offset + ((first_col * spp * bps) / 8); /* offset1 = offset into source of b…
127 + bitset = *(src_buff + offset1 + full_bytes) & (((unsigned char)1 << k)) ? 1 : 0;
132 - row, offset1, shift1, offset2, shift2);
134 + row, offset1, shift1, offset1+full_bytes, trailing_bits);
144 + bytebuff2 = src_buff[offset1 + full_bytes] & ((unsigned char)255 << (8 - trailing_bits));
149 + offset1 + full_bytes, dst_offset);
157 - bytebuff1 = src_buff[offset1 + j] & ((unsigned char)255 >> shift1);
158 - bytebuff2 = src_buff[offset1 + j + 1] & ((unsigned char)255 << (7 - shift1));
161 + bytebuff1 = src_buff[offset1 + j] & ((unsigned char)255 >> shift1);
162 + bytebuff2 = src_buff[offset1 + j + 1] & ((unsigned char)255 << (8 - shift1));
175 … Trailing bits src offset: %8"PRIu32", Dst offset: %8"PRIu32"\n", offset1 + full_bytes, dst…
179 - bytebuff1 = src_buff[offset1 + full_bytes] & ((unsigned char)255 << (7 - shift2));
184 …u32" src offset: %8"PRIu32", Dst offset: %8"PRIu32"\n", trailing_bits, offset1 + full_bytes, dst…