Lines Matching defs:pOut_buf_cur
2585 mz_uint8 *pOut_buf_cur = pOut_buf_next, *const pOut_buf_end =
2644 while (pOut_buf_cur >= pOut_buf_end) {
2647 *pOut_buf_cur++ = (mz_uint8)dist;
2652 while (pOut_buf_cur >= pOut_buf_end) {
2662 n = MZ_MIN(MZ_MIN((size_t)(pOut_buf_end - pOut_buf_cur),
2665 TINFL_MEMCPY(pOut_buf_cur, pIn_buf_cur, n);
2667 pOut_buf_cur += n;
2786 ((pOut_buf_end - pOut_buf_cur) < 2)) {
2789 while (pOut_buf_cur >= pOut_buf_end) {
2792 *pOut_buf_cur++ = (mz_uint8)counter;
2851 pOut_buf_cur[0] = (mz_uint8)counter;
2853 pOut_buf_cur++;
2857 pOut_buf_cur[1] = (mz_uint8)sym2;
2858 pOut_buf_cur += 2;
2880 dist_from_out_buf_start = pOut_buf_cur - pOut_buf_start;
2889 if ((MZ_MAX(pOut_buf_cur, pSrc) + counter) > pOut_buf_end) {
2891 while (pOut_buf_cur >= pOut_buf_end) {
2894 *pOut_buf_cur++ =
2904 ((mz_uint32 *)pOut_buf_cur)[0] = ((const mz_uint32 *)pSrc)[0];
2905 ((mz_uint32 *)pOut_buf_cur)[1] = ((const mz_uint32 *)pSrc)[1];
2906 pOut_buf_cur += 8;
2910 pOut_buf_cur[0] = pSrc[0];
2911 if (counter > 1) pOut_buf_cur[1] = pSrc[1];
2912 pOut_buf_cur += counter;
2919 pOut_buf_cur[0] = pSrc[0];
2920 pOut_buf_cur[1] = pSrc[1];
2921 pOut_buf_cur[2] = pSrc[2];
2922 pOut_buf_cur += 3;
2926 pOut_buf_cur[0] = pSrc[0];
2927 if ((int)counter > 1) pOut_buf_cur[1] = pSrc[1];
2928 pOut_buf_cur += counter;
2955 *pOut_buf_size = pOut_buf_cur - pOut_buf_next;