Searched defs:h2 (Results 1 - 5 of 5) sorted by relevance

/dovecot/src/lib/
H A Dmurmurhash3.c127 uint64_t h2 = seed; local
144 h1 = ROTL64(h1,27); h1 += h2; h1 = h1*5+0x52dce729;
146 k2 *= c2; k2 = ROTL64(k2,33); k2 *= c1; h2 ^= k2;
148 h2 = ROTL64(h2,31); h2 += h1; h2 = h2*5+0x38495ab5;
174 k2 *= c2; k2 = ROTL64(k2,33); k2 *= c1; h2 ^= k2;
198 h1 ^= len; h2
222 uint32_t h2 = seed; local
[all...]
/dovecot/src/lib-storage/
H A Dmail-storage-hooks.c111 const struct mail_storage_module_hooks *h2)
113 const char *s1 = h1->module->path, *s2 = h2->module->path;
110 mail_storage_module_hooks_cmp(const struct mail_storage_module_hooks *h1, const struct mail_storage_module_hooks *h2) argument
/dovecot/src/lib-storage/index/imapc/
H A Dimapc-mail-fetch.c118 headers_merge(pool_t pool, const char *const *h1, const char *const *h2) argument
131 if (h2 != NULL) {
132 for (i = 0; h2[i] != NULL; i++) {
133 if (h1 == NULL || !str_array_icase_find(h1, h2[i])) {
134 value = p_strdup(pool, h2[i]);
/dovecot/src/director/
H A Dmail-host.c24 mail_host_cmp(struct mail_host *const *h1, struct mail_host *const *h2) argument
26 return net_ip_cmp(&(*h1)->ip, &(*h2)->ip);
30 mail_vhost_cmp(const struct mail_vhost *h1, const struct mail_vhost *h2) argument
32 if (h1->hash < h2->hash)
34 else if (h1->hash > h2->hash)
38 return net_ip_cmp(&h1->host->ip, &h2->host->ip);
/dovecot/src/imap/
H A Dimap-fetch.c28 const struct imap_fetch_handler *h2)
30 return strcmp(h1->name, h2->name);
27 imap_fetch_handler_cmp(const struct imap_fetch_handler *h1, const struct imap_fetch_handler *h2) argument

Completed in 24 milliseconds