Home | History | Annotate | Download | only in source

Lines Matching full:dst_width

24                  int dst_width, int x, int dx) {                               \
25 int n = dst_width & ~MASK; \
30 dst_width & MASK, x + n * dx, dx); \
48 uint8* dst_ptr, int dst_width) { \
49 int r = (int)((unsigned int)dst_width % (MASK + 1)); \
50 int n = dst_width - r; \
59 // Since dst_width is (width + 1) / 2, this function scales one less pixel
63 uint8* dst_ptr, int dst_width) { \
64 int r = (int)((unsigned int)(dst_width - 1) % (MASK + 1)); \
65 int n = dst_width - r; \
169 uint8* dst_ptr, int dst_width) { \
170 int r = (int)((unsigned int)dst_width % (MASK + 1)); \
171 int n = dst_width - r; \