Searched refs:c1 (Results 1 - 12 of 12) sorted by relevance

/dovecot/src/lib/
H A Dmurmurhash3.c53 uint32_t c1 = 0xcc9e2d51; local
64 k1 *= c1;
87 k1 *= c1; k1 = ROTL32(k1,15); k1 *= c2; h1 ^= k1;
129 const uint64_t c1 = BIG_CONSTANT(0x87c37b91114253d5); local
142 k1 *= c1; k1 = ROTL64(k1,31); k1 *= c2; h1 ^= k1;
146 k2 *= c2; k2 = ROTL64(k2,33); k2 *= c1; h2 ^= k2;
174 k2 *= c2; k2 = ROTL64(k2,33); k2 *= c1; h2 ^= k2;
192 k1 *= c1; k1 = ROTL64(k1,31); k1 *= c2; h1 ^= k1;
226 uint32_t c1 = 0x239b961b; local
243 k1 *= c1; k
[all...]
H A Dtest-array.c164 static int test_compare_ushort(const unsigned short *c1, const unsigned short *c2) argument
166 return *c1 > *c2 ? 1
167 : *c1 < *c2 ? -1
170 static int test_compare_ushort_fuzz(const unsigned short *c1, const unsigned short *c2, const int *pfuzz) argument
172 int d = (int)*c1 - (int)*c2;
235 static int test_compare_string(const char *const *c1, const char *const *c2) argument
237 return strcmp(*c1, *c2);
/dovecot/src/plugins/acl/
H A Dacl-backend-vfile-update.c63 bool c1, c2; local
66 c1 = acl_right_names_modify(aclobj->rights_pool, &right->rights,
75 c1 = TRUE;
77 return c1 || c2;
85 bool c1, c2; local
98 c1 = acl_right_names_modify(aclobj->rights_pool, &right.rights,
103 if (c1 || c2) {
/dovecot/src/lib-ssl-iostream/
H A Diostream-ssl-context-cache.c41 ssl_iostream_context_cache_cmp(const struct ssl_iostream_context_cache *c1, argument
44 if (c1->server != c2->server)
46 return ssl_iostream_settings_equals(&c1->set, &c2->set) ? 0 : -1;
/dovecot/src/auth/
H A Dcrypt-blowfish.c389 unsigned int tmp, c1, c2, c3, c4; local
392 BF_safe_atoi64(c1, *sptr++);
394 *dptr++ = (c1 << 2) | ((c2 & 0x30) >> 4);
413 unsigned int c1, c2; local
416 c1 = *sptr++;
417 *dptr++ = BF_itoa64[c1 >> 2];
418 c1 = (c1 & 0x03) << 4;
420 *dptr++ = BF_itoa64[c1];
425 c1 |
[all...]
/dovecot/src/lib-storage/index/maildir/
H A Dmaildir-filename-flags.c65 const unsigned char *c1 = p1, *c2 = p2; local
67 return *c1 - *c2;
/dovecot/src/lib-storage/index/
H A Dindex-sync-pvt.c249 mail_save_private_changes_mailnum_cmp(const struct mail_save_private_changes *c1, argument
252 if (c1->mailnum < c2->mailnum)
254 if (c1->mailnum > c2->mailnum)
H A Dindex-thread-finish.c111 static int mail_thread_child_node_cmp(const struct mail_thread_child_node *c1, argument
114 if (c1->sort_date < c2->sort_date)
116 if (c1->sort_date > c2->sort_date)
119 if (c1->uid < c2->uid)
121 if (c1->uid > c2->uid)
/dovecot/src/imap/
H A Dimap-commands.c213 static int command_cmp(const struct command *c1, const struct command *c2) argument
215 return strcasecmp(c1->name, c2->name);
/dovecot/src/imap-hibernate/
H A Dimap-client.c671 const struct imap_client *c1 = p1, *c2 = p2; local
674 t1 = c1->move_back_start +
675 (c1->input_pending ?
/dovecot/src/lib-smtp/
H A Dsmtp-server-command.c47 smtp_server_command_cmp(const struct smtp_server_command_reg *c1, argument
50 return strcasecmp(c1->name, c2->name);
/dovecot/src/doveadm/dsync/
H A Ddsync-mailbox-export.c435 static int dsync_mail_change_p_uid_cmp(struct dsync_mail_change *const *c1, argument
438 if ((*c1)->uid < (*c2)->uid)
440 if ((*c1)->uid > (*c2)->uid)

Completed in 28 milliseconds