Home | History | Annotate | Download | only in jpeg

Lines Matching refs:stride1

159     const int stride1 = (flags.stride != 0) ? flags.stride : w1 * c;
162 const uint8* p1 = &imgdata1[(i + crop_y) * stride1 + crop_x * c];
290 const int stride1 = 3 * in_w;
291 const std::unique_ptr<uint8[]> refdata1(new uint8[stride1 * in_h]);
294 const int offset = i * stride1 + 3 * j;
305 memcpy(&refdata2[i * stride2], &refdata1[i * stride1], 3 * in_w);
355 imgdata1.get(), refdata1.get(), in_w, in_h, stride1, stride1);
374 imgdata1.get(), imgdata2.get(), in_w, in_h, stride1, flags.stride);
395 imgdata1.get(), refdata1.get(), in_w, in_h, stride1, stride1);