Searched defs:t1 (Results 1 - 7 of 7) sorted by relevance

/dovecot/src/plugins/trash/
H A Dtrash-plugin.c282 static int trash_mailbox_priority_cmp(const struct trash_mailbox *t1, argument
285 return t1->priority - t2->priority;
/dovecot/src/imap/
H A Dcmd-thread.c109 static int orderedsubject_thread_cmp(const struct orderedsubject_thread *t1, argument
114 if (t1->timestamp < t2->timestamp)
116 if (t1->timestamp > t2->timestamp)
119 m1 = array_idx(&t1->msgs, 0);
/dovecot/src/lib/
H A Dsha2.c184 uint32_t t1, t2; local
205 t1 = wv[7] + SHA256_F2(wv[4]) + CH(wv[4], wv[5], wv[6])
211 wv[4] = wv[3] + t1;
215 wv[0] = t1 + t2;
311 uint64_t t1, t2; local
331 t1 = wv[7] + SHA512_F2(wv[4]) + CH(wv[4], wv[5], wv[6])
337 wv[4] = wv[3] + t1;
341 wv[0] = t1 + t2;
H A Dsha3.c239 const unsigned t1 = (uint32_t) ctx->s[i]; local
241 ctx->sb[i * 8 + 0] = (uint8_t) (t1);
242 ctx->sb[i * 8 + 1] = (uint8_t) (t1 >> 8);
243 ctx->sb[i * 8 + 2] = (uint8_t) (t1 >> 16);
244 ctx->sb[i * 8 + 3] = (uint8_t) (t1 >> 24);
H A Dfile-dotlock.c706 static bool file_dotlock_has_mtime_changed(time_t t1, time_t t2) argument
710 if (t1 == t2)
713 /* with NFS t1 may have been looked up from local cache.
715 diff = t1 > t2 ? t1-t2 : t2-t1;
/dovecot/src/config/
H A Dconfig-parser.c253 time_t t1, t2; local
265 t1 = time(NULL);
277 if (t2 - t1 >= DNS_LOOKUP_WARN_SECS) {
279 value, (int)(t2-t1));
/dovecot/src/imap-hibernate/
H A Dimap-client.c672 time_t t1, t2; local
674 t1 = c1->move_back_start +
682 if (t1 < t2)
684 if (t1 > t2)

Completed in 222 milliseconds