Lines Matching defs:width
117 /* draw the edges of width 'w' of an image of size width, height */
119 static void draw_edges_8_c(uint8_t *buf, int wrap, int width, int height,
128 memset(ptr + width, ptr[width - 1], w);
138 memcpy(buf - (i + 1) * wrap, buf, width + w + w);
142 memcpy(last_line + (i + 1) * wrap, last_line, width + w + w);
148 int width, int height)
158 for (w = width; w >= 4; w -= 4) {
181 int width, int height)
193 for (w = width; w > 0; w--) {
212 int width, int height)
217 for(w = width;w > 0; w--) {
227 src += 8 * src_wrap - 8 * width;
228 dst += dst_wrap - width;