Lines Matching refs:tmp_ptr
2050 pixel tmp[64 * 71], *tmp_ptr = tmp;
2061 tmp_ptr[x] = FILTER_8TAP(src, x, filterx, 1);
2063 tmp_ptr += 64;
2067 tmp_ptr = tmp + 64 * 3;
2073 dst[x] = (dst[x] + FILTER_8TAP(tmp_ptr, x, filtery, 64) + 1) >> 1;
2075 dst[x] = FILTER_8TAP(tmp_ptr, x, filtery, 64);
2078 tmp_ptr += 64;
2164 pixel tmp[64 * 65], *tmp_ptr = tmp;
2175 tmp_ptr[x] = FILTER_BILIN(src, x, mx, 1);
2177 tmp_ptr += 64;
2181 tmp_ptr = tmp;
2187 dst[x] = (dst[x] + FILTER_BILIN(tmp_ptr, x, my, 64) + 1) >> 1;
2189 dst[x] = FILTER_BILIN(tmp_ptr, x, my, 64);
2192 tmp_ptr += 64;
2338 pixel tmp[64 * 135], *tmp_ptr = tmp;
2350 tmp_ptr[x] = FILTER_8TAP(src, ioff, filters[imx], 1);
2356 tmp_ptr += 64;
2360 tmp_ptr = tmp + 64 * 3;
2367 dst[x] = (dst[x] + FILTER_8TAP(tmp_ptr, x, filter, 64) + 1) >> 1;
2369 dst[x] = FILTER_8TAP(tmp_ptr, x, filter, 64);
2373 tmp_ptr += (my >> 4) * 64;
2412 pixel tmp[64 * 129], *tmp_ptr = tmp;
2424 tmp_ptr[x] = FILTER_BILIN(src, ioff, imx, 1);
2430 tmp_ptr += 64;
2434 tmp_ptr = tmp;
2440 dst[x] = (dst[x] + FILTER_BILIN(tmp_ptr, x, my, 64) + 1) >> 1;
2442 dst[x] = FILTER_BILIN(tmp_ptr, x, my, 64);
2446 tmp_ptr += (my >> 4) * 64;