Home | History | Annotate | Download | only in x86

Lines Matching refs:wd

83 *    Copies the array of width 'wd' and height 'ht' from the  location pointed
104 * @param[in] wd
112 * Assumption : ht%4 == 0, wd%4 == 0
124 WORD32 wd)
130 ASSERT(wd % 4 == 0); /* checking assumption*/
134 if(0 == (wd & 15)) /* wd multiple of 16 case */
138 for(col = 0; col < wd; col += 16)
156 pu1_src += 4 * src_strd - wd; /* pointer update */
157 pu1_dst += 4 * dst_strd - wd; /* pointer update */
161 else if(0 == (wd & 7)) /* multiple of 8 case */
165 for(col = 0; col < wd; col += 8)
183 pu1_src += 4 * src_strd - wd; /* pointer update */
184 pu1_dst += 4 * dst_strd - wd; /* pointer update */
187 else /* wd = multiple of 4 case */
192 for(col = 0; col < wd; col += 4)
215 pu1_src += 4 * src_strd - wd; /* pointer update */
216 pu1_dst += 4 * dst_strd - wd; /* pointer update */
252 * @param[in] wd
268 WORD32 wd)
282 ASSERT(wd % 4 == 0); /* checking assumption*/
314 if(0 == (wd & 7)) /* wd = multiple of 8 case */
325 for(col = 0; col < wd; col += 8)
406 else /* wd = multiple of 4 case */
416 for(col = 0; col < wd; col += 4)
508 if(0 == (wd & 7)) /* multiple of 8 case */
519 for(col = 0; col < wd; col += 8)
564 else /* wd = multiple of 4 case */
574 for(col = 0; col < wd; col += 4)
664 for(col = 0; col < wd; col += 4)
745 * @param[in] wd
761 WORD32 wd)
808 if(wd % 8 == 0)
809 { /* wd = multiple of 8 case */
814 for(col = 0; col < wd; col += 8)
1115 else /* wd = multiple of 8 case */
1121 for(col = 0; col < wd; col += 4)
1468 * Copies the array of width 'wd' and height 'ht' from the location pointed
1490 * @param[in] wd
1507 WORD32 wd)
1512 ASSERT(wd % 2 == 0); /* checking assumption*/
1517 if(wd % 8 == 0) /* wd = multiple of 8 case */
1522 for(col = 0; col < wd; col += 8)
1551 else /* wd = multiple of 4 case */
1556 for(col = 0; col < wd; col += 4)
1617 * @param[in] wd
1633 WORD32 wd)
1647 ASSERT(wd % 4 == 0); /* checking assumption*/
1674 if(0 == (wd & 7)) /* wd = multiple of 8 case */
1686 for(col = 0; col < wd; col += 8)
1756 else /* wd = multiple of 4 case */
1766 for(col = 0; col < wd; col += 4)
1839 if(0 == (wd & 7)) /* multiple of 8 case */
1848 for(col = 0; col < wd; col += 8)
1889 else /* wd = multiple of 4 case */
1900 for(col = 0; col < wd; col += 4)
1971 for(col = 0; col < wd; col += 4)
2043 * @param[in] wd
2059 WORD32 wd)
2092 if((wd % 8) == 0)
2093 { /* wd = multiple of 8 case */
2098 for(col = 0; col < wd; col += 8)
2339 else /* wd = multiple of 8 case */
2345 for(col = 0; col < wd; col += 4)
2616 * @param[in] wd
2632 WORD32 wd)
2672 for(col = 0; col < wd; col += 4)
3093 * @param[in] wd
3109 WORD32 wd)
3146 for(col = 0; col < wd; col += 4)
3447 * Copies the array of width 'wd' and height 'ht' from the location pointed
3468 * @param[in] wd
3485 WORD32 wd)
3490 ASSERT(wd % 2 == 0); /* checking assumption*/
3496 if(wd % 8 == 0)
3501 for(col = 0; col < 2 * wd; col += 16)
3523 else if(wd % 4 == 0)
3528 for(col = 0; col < 2 * wd; col += 8)
3553 for(col = 0; col < 2 * wd; col += 4)
3604 * @param[in] wd
3620 WORD32 wd)
3637 ASSERT(wd % 2 == 0); /* checking assumption*/
3654 if(wd % 2 == 0 && wd % 4 != 0)
3665 for(col = 0; col < 2 * wd; col += 4)
3750 for(col = 0; col < 2 * wd; col += 8)
3852 * @param[in] wd
3868 WORD32 wd)
3905 if(wd % 8 == 0)
3906 { /* wd = multiple of 8 case */
3911 for(col = 0; col < 2 * wd; col += 16)
4027 else if(wd % 4 == 0)
4028 { /* wd = multiple of 8 case */
4034 for(col = 0; col < 2 * wd; col += 8)
4108 { /* wd = multiple of 4 case */
4114 for(col = 0; col < 2 * wd; col += 4)
4204 * Copies the array of width 'wd' and height 'ht' from the location pointed
4226 * @param[in] wd
4243 WORD32 wd)
4248 ASSERT(wd % 2 == 0); /* checking assumption*/
4254 if(wd == 2) /* for wd =2 */
4259 for(col = 0; col < 2 * wd; col += 4)
4286 else if(wd % 2 == 0 && wd % 4 != 0)
4291 int count = (2 * wd) / 8;
4340 for(col = 0; col < 2 * wd / 8; col++)
4399 * @param[in] wd
4415 WORD32 wd)
4432 ASSERT(wd % 2 == 0); /* checking assumption*/
4446 if(wd % 2 == 0 && wd % 4 != 0)
4456 for(col = 0; col < 2 * wd; col += 4)
4522 for(col = 0; col < 2 * wd; col += 4)
4571 for(col = 0; col < 2 * wd; col += 8)
4637 for(col = 0; col < 2 * wd; col += 8)
4703 * @param[in] wd
4719 WORD32 wd)
4751 if(wd % 8 == 0)
4752 { /* wd = multiple of 8 case */
4757 for(col = 0; col < 2 * wd; col += 16)
4849 else if(wd % 4 == 0)
4850 { /* wd = multiple of 8 case */
4858 for(col = 0; col < 2 * wd; col += 8)
4912 { /* wd = multiple of 4 case */
4918 for(col = 0; col < 2 * wd; col += 4)
5007 * @param[in] wd
5023 WORD32 wd)
5052 if(wd % 4 == 0)
5053 { /* wd = multiple of 8 case */
5058 for(col = 0; col < 2 * wd; col += 8)
5199 { /* wd = multiple of 4 case */
5205 for(col = 0; col < 2 * wd; col += 4)
5332 * @param[in] wd
5348 WORD32 wd)
5373 if(wd % 4 == 0)
5374 { /* wd = multiple of 8 case */
5379 for(col = 0; col < 2 * wd; col += 8)
5482 { /* wd = multiple of 4 case */
5488 for(col = 0; col < 2 * wd; col += 4)