Searched refs:u (Results 1 – 3 of 3) sorted by relevance
9 equal_tm (struct tm const *t, struct tm const *u) in equal_tm() argument11 return (t->tm_sec == u->tm_sec && t->tm_min == u->tm_min in equal_tm()12 && t->tm_hour == u->tm_hour && t->tm_mday == u->tm_mday in equal_tm()13 && t->tm_mon == u->tm_mon && t->tm_year == u->tm_year in equal_tm()14 && t->tm_wday == u->tm_wday && t->tm_yday == u->tm_yday in equal_tm()15 && t->tm_isdst == u->tm_isdst && t->tm_gmtoff == u->tm_gmtoff in equal_tm()16 && t->tm_zone == u->tm_zone); in equal_tm()
85 struct tzstring_l *t, *u, *new; in __tzstring_len() local89 for (u = t = tzstring_list; t; u = t, t = t->next) in __tzstring_len()107 if (u) in __tzstring_len()108 u->next = new; in __tzstring_len()
862 char *u = ufmt; in libc_hidden_def() local873 *u++ = '%'; in libc_hidden_def()875 *u++ = modifier; in libc_hidden_def()876 *u++ = format_char; in libc_hidden_def()877 *u = '\0'; in libc_hidden_def()984 unsigned int u = number_value; in libc_hidden_def() local990 u = -u; in libc_hidden_def()993 *--bufp = u % 10 + L_('0'); in libc_hidden_def()994 while ((u /= 10) != 0); in libc_hidden_def()
Completed in 6 milliseconds