• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/png/

Lines Matching refs:width_mmx

57  *        why subtract 8 from width_mmx in the pass 4/5 case?
58 * (only width_mmx case) (near line 1606)
224 * - eliminated incorrect use of width_mmx in pixel_bytes == 8 case
234 * why subtract 8 from width_mmx in the pass 4/5 case?
235 * (only width_mmx case) (near line 1606)
1830 int width_mmx = ((width >> 1) << 1) - 8; /* GRR: huh? */
1831 if (width_mmx < 0)
1832 width_mmx = 0;
1833 width -= width_mmx; /* 8 or 9 pix, 24 or 27 bytes */
1834 if (width_mmx)
1875 "0" (width_mmx), // ecx
1886 sptr -= width_mmx*3;
1887 dp -= width_mmx*6;
1909 int width_mmx = ((width >> 2) << 2);
1910 width -= width_mmx; /* 0-3 pixels => 0-3 bytes */
1911 if (width_mmx)
1950 "0" (width_mmx) /* ecx */
1959 sptr -= width_mmx;
1960 dp -= width_mmx*8;
1992 int width_mmx = ((width >> 2) << 2);
1993 width -= width_mmx; /* 0-3 pixels => 0-3 bytes */
1994 if (width_mmx)
2024 "0" (width_mmx) /* ecx */
2032 sptr -= width_mmx;
2033 dp -= width_mmx*4;
2047 int width_mmx = ((width >> 3) << 3);
2048 width -= width_mmx; /* 0-3 pixels => 0-3 bytes */
2049 if (width_mmx)
2078 "0" (width_mmx) /* ecx */
2086 sptr -= width_mmx;
2087 dp -= width_mmx*2;
2106 int width_mmx = ((width >> 1) << 1);
2107 width -= width_mmx; /* 0,1 pixels => 0,2 bytes */
2108 if (width_mmx)
2140 "0" (width_mmx) /* ecx */
2148 sptr -= (width_mmx*2 - 2); /* sign fixed */
2149 dp -= (width_mmx*16 - 2); /* sign fixed */
2165 int width_mmx = ((width >> 1) << 1) ;
2166 width -= width_mmx; /* 0,1 pixels => 0,2 bytes */
2167 if (width_mmx)
2197 "0" (width_mmx) /* ecx */
2205 sptr -= (width_mmx*2 - 2); /* sign fixed */
2206 dp -= (width_mmx*8 - 2); /* sign fixed */
2222 int width_mmx = ((width >> 1) << 1) ;
2223 width -= width_mmx; /* 0,1 pixels => 0,2 bytes */
2224 if (width_mmx)
2250 "0" (width_mmx) /* ecx */
2258 sptr -= (width_mmx*2 - 2); /* sign fixed */
2259 dp -= (width_mmx*4 - 2); /* sign fixed */
2280 int width_mmx = ((width >> 1) << 1);
2281 width -= width_mmx; /* 0,1 pixels => 0,4 bytes */
2282 if (width_mmx)
2317 "0" (width_mmx) /* ecx */
2325 sptr -= (width_mmx*4 - 4); /* sign fixed */
2326 dp -= (width_mmx*32 - 4); /* sign fixed */
2342 int width_mmx = ((width >> 1) << 1);
2343 width -= width_mmx; /* 0,1 pixels => 0,4 bytes */
2344 if (width_mmx)
2375 "0" (width_mmx) /* ecx */
2383 sptr -= (width_mmx*4 - 4); /* sign fixed */
2384 dp -= (width_mmx*16 - 4); /* sign fixed */
2400 int width_mmx = ((width >> 1) << 1) ;
2401 width -= width_mmx; /* 0,1 pixels => 0,4 bytes */
2402 if (width_mmx)
2431 "0" (width_mmx) /* ecx */
2439 sptr -= (width_mmx*4 - 4); /* sign fixed */
2440 dp -= (width_mmx*8 - 4); /* sign fixed */