Home | History | Annotate | Download | only in src

Lines Matching refs:pp_mod

29     uint8 *pp_mod)
114 if (((pp_mod[index]&0x02) != 0) && ((pp_mod[index-pp_w]&0x02) != 0))
117 /* Set HorzHflag (bit 4) in the pp_mod location */
118 pp_mod[index-pp_w] |= 0x10; /* 4/26/00 reuse pp_mod for HorzHflag*/
173 /* Clear HorzHflag (bit 4) in the pp_mod location */
174 pp_mod[index-pp_w] &= 0xef; /* reset 1110,1111 */
273 if (((pp_mod[index-1]&0x01) != 0) && ((pp_mod[index]&0x01) != 0))
276 /* Set VertHflag (bit 5) in the pp_mod location of previous block*/
277 pp_mod[index-1] |= 0x20; /* 4/26/00 reuse pp_mod for VertHflag*/
331 /* Clear VertHflag (bit 5) in the pp_mod location */
332 pp_mod[index-1] &= 0xdf; /* reset 1101,1111 */
416 /* Execute deringing if semaphore for deringing (bit-3 of pp_mod)
418 if ((pp_mod[index]&0x04) != 0)
425 cnthflag = ((pp_mod[index] & 0x10) +
426 (pp_mod[index-pp_w] & 0x10) +
427 ((pp_mod[index-1] >> 1) & 0x10) +
428 ((pp_mod[index] >> 1) & 0x10)) >> 4; /* 4/26/00*/
482 cnthflag = ((pp_mod[index-pp_w] & 0x10) +
483 (pp_mod[index] & 0x10) +
484 ((pp_mod[index-1] >> 1) & 0x10)) >> 4;
488 cnthflag = ((pp_mod[index] & 0x10) +
489 (pp_mod[index-pp_w] & 0x10) +
490 ((pp_mod[index] >> 1) & 0x10)) >> 4;
497 cnthflag = ((pp_mod[index-pp_w] & 0x10) +
498 ((pp_mod[index-1] >> 1) & 0x10) +
499 ((pp_mod[index] >> 1) & 0x10)) >> 4;
503 cnthflag = ((pp_mod[index] & 0x10) +
504 ((pp_mod[index-1] >> 1) & 0x10) +
505 ((pp_mod[index] >> 1) & 0x10)) >> 4;