Lines Matching +defs:t +defs:f
90 # define widthof(t) (sizeof(t) * BITS_PER_BYTE) argument
91 # define tbit(f, i, t) (((t *) xhash)[(f)] & \ argument
93 # define tbis(f, i, t) (((t *) xhash)[(f)] |= \ argument
95 # define cbit(f, i) tbit(f, i, unsigned char) argument
96 # define cbis(f, i) tbis(f, i, unsigned char) argument
97 # define sbit(f, i) tbit(f, i, unsigned short) argument
98 # define sbis(f, i) tbis(f, i, unsigned short) argument
99 # define ibit(f, i) tbit(f, i, unsigned int) argument
100 # define ibis(f, i) tbis(f, i, unsigned int) argument
101 # define lbit(f, i) tbit(f, i, unsigned long) argument
102 # define lbis(f, i) tbis(f, i, unsigned long) argument
104 # define bit(f, i) (hashwidth==sizeof(unsigned char) ? cbit(f,i) : \ argument
108 # define bis(f, i) (hashwidth==sizeof(unsigned char) ? cbis(f,i) : \ argument
146 doexec(struct command *t, int do_glob) in doexec()
356 char **t; in texec() local
357 char *f; in texec() local
561 execash(Char **t, struct command *kp) in execash()
618 xechoit(Char **t) in xechoit()