Searched refs:m1 (Results 1 - 10 of 10) sorted by relevance

/dovecot/src/lib/
H A Dtest-mempool.c17 uint32max_array_t *m1 = p_new(&test_pool, uint32max_array_t, 4294967297ULL); local
18 test_assert(m1 == POINTER_CAST(18446744073709551615ULL));
25 test_assert(p_realloc_type(&test_pool, m1, uint32max_array_t, 4294967296ULL, 4294967297ULL) == POINTER_CAST(18446744073709551615ULL));
30 test_assert(p_realloc_type(&test_pool, m1, uint32max_array_t, 4294967297ULL, 4294967296ULL) == POINTER_CAST(18446744069414584320ULL));
34 uint32max_array_t *m1 = p_new(&test_pool, uint32max_array_t, 65537); local
35 test_assert(m1 == POINTER_CAST(4294967295U));
42 test_assert(p_realloc_type(&test_pool, m1, uint32max_array_t, 65536, 65537) == POINTER_CAST(4294967295U));
47 test_assert(p_realloc_type(&test_pool, m1, uint32max_array_t, 65537, 65536) == POINTER_CAST(4294901760U));
58 static uint32max_array_t *m1; local
66 m1
[all...]
/dovecot/src/imap/
H A Dcmd-thread.c112 const uint32_t *m1, *m2; local
119 m1 = array_idx(&t1->msgs, 0);
121 if (*m1 < *m2)
123 if (*m1 > *m2)
/dovecot/src/lib-index/
H A Dmail-index-transaction-sort-appends.c17 const struct uid_map *m1 = p1, *m2 = p2; local
19 return m1->uid < m2->uid ? -1 :
20 (m1->uid > m2->uid ? 1 : 0);
/dovecot/src/lib-storage/index/dbox-multi/
H A Dmdbox-storage-rebuild.c103 mdbox_rebuild_msg_offset_cmp(struct mdbox_rebuild_msg *const *m1, argument
106 if ((*m1)->file_id < (*m2)->file_id)
108 if ((*m1)->file_id > (*m2)->file_id)
111 if ((*m1)->offset < (*m2)->offset)
113 if ((*m1)->offset > (*m2)->offset)
116 if ((*m1)->rec_size < (*m2)->rec_size)
118 if ((*m1)->rec_size > (*m2)->rec_size)
123 static int mdbox_rebuild_msg_uid_cmp(struct mdbox_rebuild_msg *const *m1, argument
126 if ((*m1)->map_uid < (*m2)->map_uid)
128 if ((*m1)
[all...]
H A Dmdbox-purge.c53 static int mdbox_map_file_msg_offset_cmp(const struct mdbox_map_file_msg *m1, argument
56 if (m1->offset < m2->offset)
58 else if (m1->offset > m2->offset)
/dovecot/src/plugins/fts/
H A Dfts-api.c334 static int fts_score_map_sort(const struct fts_score_map *m1, argument
337 if (m1->uid < m2->uid)
339 if (m1->uid > m2->uid)
H A Dfts-search.c93 mailbox_cmp_fts_backend(struct mailbox *const *m1, struct mailbox *const *m2) argument
97 b1 = fts_mailbox_backend(*m1);
/dovecot/src/lib-storage/
H A Dmail-search.c651 const struct mail_search_modseq *m1 = arg1->value.modseq; local
654 return m1->modseq == m2->modseq &&
655 m1->type == m2->type;
/dovecot/src/plugins/virtual/
H A Dvirtual-sync.c95 const struct virtual_sync_mail *m1 = p1, *m2 = p2; local
97 if (m1->vrec.mailbox_id < m2->vrec.mailbox_id)
99 if (m1->vrec.mailbox_id > m2->vrec.mailbox_id)
102 if (m1->vrec.real_uid < m2->vrec.real_uid)
104 if (m1->vrec.real_uid > m2->vrec.real_uid)
1611 static int virtual_sync_mail_mailbox_cmp(const struct virtual_sync_mail *m1, argument
1614 if (m1->vrec.mailbox_id < m2->vrec.mailbox_id)
1616 if (m1->vrec.mailbox_id > m2->vrec.mailbox_id)
/dovecot/src/doveadm/dsync/
H A Ddsync-mailbox-import.c700 importer_mail_cmp(const struct importer_mail *m1, argument
705 if (m1->guid == NULL)
710 ret = strcmp(m1->guid, m2->guid);
714 if (m1->uid < m2->uid)
716 if (m1->uid > m2->uid)
790 struct importer_mail m1, m2; local
795 i_zero(&m1);
797 m1.guid = importer->mails_have_guids ?
799 m1.uid = importer->cur_mail->uid;
811 (dsync_mail_hdr_hash_is_empty(m1
[all...]

Completed in 1280 milliseconds