Lines Matching full:width
415 #define DUFFS_LOOP8(pixel_copy_increment, width) \
416 { int n = (width+7)/8; \
417 switch (width & 7) { \
431 #define DUFFS_LOOP4(pixel_copy_increment, width) \
432 { int n = (width+3)/4; \
433 switch (width & 3) { \
444 double_pixel_copy_increment, width) \
445 { int n, w = width; \
463 quatro_pixel_copy_increment, width) \
464 { int n, w = width; \
484 #define DUFFS_LOOP(pixel_copy_increment, width) \
485 DUFFS_LOOP8(pixel_copy_increment, width)
491 double_pixel_copy_increment, width) \
492 { int n = width; \
506 quatro_pixel_copy_increment, width) \
507 { int n = width; \
523 #define DUFFS_LOOP(pixel_copy_increment, width) \
525 for ( n=width; n > 0; --n ) { \
529 #define DUFFS_LOOP8(pixel_copy_increment, width) \
530 DUFFS_LOOP(pixel_copy_increment, width)
531 #define DUFFS_LOOP4(pixel_copy_increment, width) \
532 DUFFS_LOOP(pixel_copy_increment, width)