Lines Matching defs:ptr
44 uint8_t *ptr;
236 ptr = p->data[0] + (avctx->height - 1) * p->linesize[0];
239 ptr = p->data[0];
294 ptr[j*8+0] = buf[j] >> 7;
295 ptr[j*8+1] = (buf[j] >> 6) & 1;
296 ptr[j*8+2] = (buf[j] >> 5) & 1;
297 ptr[j*8+3] = (buf[j] >> 4) & 1;
298 ptr[j*8+4] = (buf[j] >> 3) & 1;
299 ptr[j*8+5] = (buf[j] >> 2) & 1;
300 ptr[j*8+6] = (buf[j] >> 1) & 1;
301 ptr[j*8+7] = buf[j] & 1;
304 ptr[avctx->width - (avctx->width & 7) + j] = buf[avctx->width >> 3] >> (7 - j) & 1;
307 ptr += linesize;
314 memcpy(ptr, buf, n);
316 ptr += linesize;
323 ptr[j*2+0] = (buf[j] >> 4) & 0xF;
324 ptr[j*2+1] = buf[j] & 0xF;
327 ptr += linesize;
333 uint16_t *dst = (uint16_t *) ptr;
339 ptr += linesize;
350 uint8_t *ptr = p->data[0] + p->linesize[0]*i + 3;
352 if (ptr[4*j])