Lines Matching defs:offset

376                                              uint8_t c, int width, int offset)
381 dst[(width+offset)*8+7] = (usePtr ? src[width] : c) & 0x1;
382 dst[(width+offset)*8+6] = (usePtr ? src[width] : c) >> 1 & 0x1;
383 dst[(width+offset)*8+5] = (usePtr ? src[width] : c) >> 2 & 0x1;
384 dst[(width+offset)*8+4] = (usePtr ? src[width] : c) >> 3 & 0x1;
385 dst[(width+offset)*8+3] = (usePtr ? src[width] : c) >> 4 & 0x1;
386 dst[(width+offset)*8+2] = (usePtr ? src[width] : c) >> 5 & 0x1;
387 dst[(width+offset)*8+1] = (usePtr ? src[width] : c) >> 6 & 0x1;
388 dst[(width+offset)*8+0] = (usePtr ? src[width] : c) >> 7;
393 dst[(width+offset)*4+3] = (usePtr ? src[width] : c) & 0x3;
394 dst[(width+offset)*4+2] = (usePtr ? src[width] : c) >> 2 & 0x3;
395 dst[(width+offset)*4+1] = (usePtr ? src[width] : c) >> 4 & 0x3;
396 dst[(width+offset)*4+0] = (usePtr ? src[width] : c) >> 6;
401 dst[(width+offset)*2+1] = (usePtr ? src[width] : c) & 0xF;
402 dst[(width+offset)*2+0] = (usePtr ? src[width] : c) >> 4;
421 memcpy(dst + offset, src, width);
423 memset(dst + offset, c, width);
640 uint32_t dst_offset; /* offset from dst buffer in pixels */
992 /* Read tile offset */
1201 int offset = tag == TIFF_YRES ? 2 : 0;
1202 s->res[offset++] = num;
1203 s->res[offset] = den;
1608 s->geotags[i].offset = ff_tget_short(&s->gb, s->le);
1626 || s->geotags[i].offset + s->geotags[i].count > count) {
1631 char *ap = doubles2str(&dp[s->geotags[i].offset], s->geotags[i].count, ", ");
1648 || s->geotags[i].offset + s->geotags[i].count > count) {
1653 bytestream2_seek(&s->gb, pos + s->geotags[i].offset, SEEK_SET);
1785 av_log(avctx, AV_LOG_ERROR, "IFD offset is greater than image size\n");
1833 // set offset to the next IFD
1836 // set offset to the SubIFD
1846 avpriv_request_sample(s->avctx, "non increasing IFD offset");
1851 av_log(avctx, AV_LOG_ERROR, "IFD offset is greater than image size\n");
1999 av_log(avctx, AV_LOG_ERROR, "Invalid strip size/offset\n");