Home | History | Annotate | Download | only in src

Lines Matching refs:tt

806 	struct tokeninfo const *tt;
812 for (tt = tokentab; tt->name; tt++) {
813 if (tt->reserved) {
814 p = ktenter(&keywords, tt->name, hash(tt->name));
817 p->val.i = tt->val;
828 struct tokeninfo const *tt;
857 for (tt = tokentab; tt->name; tt++)
858 if (tt->val == c)
860 if (tt->name)
861 s = tt->name;
1071 struct timeval tt;
1077 tt.tv_sec = tv->tv_sec * 10 + (*s++ - '0');
1078 if (tt.tv_sec / 10 != tv->tv_sec) {
1082 tv->tv_sec = tt.tv_sec;