Lines Matching defs:cnt
455 void av_memcpy_backptr(uint8_t *dst, int back, int cnt)
462 memset(dst, *src, cnt);
464 fill16(dst, cnt);
466 fill24(dst, cnt);
468 fill32(dst, cnt);
470 if (cnt >= 16) {
472 while (cnt > blocklen) {
475 cnt -= blocklen;
478 memcpy(dst, src, cnt);
481 if (cnt >= 8) {
486 cnt -= 8;
488 if (cnt >= 4) {
492 cnt -= 4;
494 if (cnt >= 2) {
498 cnt -= 2;
500 if (cnt)