Lines Matching refs:fset
562 int fset = 0, fclr = 0, thing = 0, func = 0, local = 0, pflag = 0; in c_typeset() local
569 fset |= EXPORT; in c_typeset()
573 fset |= RDONLY; in c_typeset()
650 fset &= ~flag; in c_typeset()
653 fset |= flag; in c_typeset()
674 if (func && ((fset|fclr) & ~(TRACE|UCASEV_AL|EXPORT))) { in c_typeset()
683 if (fset & LCASEV) /* LCASEV has priority over UCASEV_AL */ in c_typeset()
684 fset &= ~UCASEV_AL; in c_typeset()
685 if (fset & LJUST) /* LJUST has priority over RJUST */ in c_typeset()
686 fset &= ~RJUST; in c_typeset()
687 if ((fset & (ZEROFIL|LJUST)) == ZEROFIL) { /* -Z implies -ZR */ in c_typeset()
688 fset |= RJUST; in c_typeset()
694 if (fset & (LJUST | RJUST | ZEROFIL | UCASEV_AL | LCASEV | in c_typeset()
696 fclr |= ~fset & (LJUST | RJUST | ZEROFIL | UCASEV_AL | in c_typeset()
707 fset |= LOCAL; in c_typeset()
711 (fset&UCASEV_AL) ? true : false); in c_typeset()
717 if (fset | fclr) { in c_typeset()
718 f->flag |= fset; in c_typeset()
725 } else if (!typeset(wp[i], fset, fclr, field, base)) { in c_typeset()
734 flag = fset | fclr; /* no difference at this point.. */ in c_typeset()