Lines Matching refs:width

149                                                         int width,
156 width : width of decoded frame.
178 int width,
198 pp_w = (width >> 3);
232 jVal0 = *(ptr - width); /* C */
241 *(ptr - width) = (uint8)(jVal0); /* C */
244 jVal0 = *(ptr - (width << 1)); /* B */
245 jVal1 = *(ptr + width); /* E */
252 *(ptr - (width << 1)) = (uint8)jVal0; /* store B */
253 *(ptr + width) = (uint8)jVal1; /* store E */
259 *(ptr - (width << 1)) = (uint8)jVal0; /* store B */
260 *(ptr + width) = (uint8)jVal1; /* store E */
263 jVal0 = *(ptr - (width << 1) - width); /* A */
264 jVal1 = *(ptr + (width << 1)); /* F */
271 *(ptr - (width << 1) - width) = (uint8)(jVal0);
272 *(ptr + (width << 1)) = (uint8)(jVal1);
278 *(ptr - (width << 1) - width) = (uint8)(jVal0);
279 *(ptr + (width << 1)) = (uint8)(jVal1);
289 jVal0 = *(ptr - width); /* B */
298 *(ptr - width) = (uint8)(jVal0); /* B = (B+C)/2 */
301 jVal0 = *(ptr - (width << 1)); /* A */
302 jVal1 = *(ptr + width); /* D */
310 *(ptr - (width << 1)) = (uint8)jVal0; /* A */
311 *(ptr + width) = (uint8)jVal1; /* D */
317 *(ptr - (width << 1)) = (uint8)jVal0; /* A */
318 *(ptr + width) = (uint8)jVal1; /* D */
341 ptr_e = ptr + (width << 3);
399 while ((ptr += width) < ptr_e);
438 while ((ptr += width) < ptr_e);
455 int width,
475 pp_w = (width >> 3);
509 jVal0 = *(ptr - width); /* C */
518 *(ptr - width) = (uint8)(jVal0); /* C */
521 jVal0 = *(ptr - (width << 1)); /* B */
522 jVal1 = *(ptr + width); /* E */
529 *(ptr - (width << 1)) = (uint8)jVal0; /* store B */
530 *(ptr + width) = (uint8)jVal1; /* store E */
536 *(ptr - (width << 1)) = (uint8)jVal0; /* store B */
537 *(ptr + width) = (uint8)jVal1; /* store E */
540 jVal0 = *(ptr - (width << 1) - width); /* A */
541 jVal1 = *(ptr + (width << 1)); /* F */
548 *(ptr - (width << 1) - width) = (uint8)(jVal0);
549 *(ptr + (width << 1)) = (uint8)(jVal1);
555 *(ptr - (width << 1) - width) = (uint8)(jVal0);
556 *(ptr + (width << 1)) = (uint8)(jVal1);
580 ptr_e = ptr + (width << 3);
638 while ((ptr += width) < ptr_e);