Searched defs:n1 (Results 1 - 9 of 9) sorted by relevance
| /dovecot/src/lib-mail/ |
| H A D | message-binary-part.c | 24 uint64_t n1, n2, n3, n4; local 31 if (numpack_decode(&p, end, &n1) < 0 || 37 part->physical_pos = n1;
|
| /dovecot/src/lib-old-stats/ |
| H A D | stats-parser.c | 69 const uint64_t *n1 = src1, *n2 = src2; local 72 fields[i].name, *n2, *n1);
|
| /dovecot/src/lib-storage/index/ |
| H A D | index-sort.c | 199 static int sort_node_date_cmp(const struct mail_sort_node_date *n1, argument 204 if (n1->date < n2->date) 206 if (n1->date > n2->date) 211 n1->seq, n2->seq); 225 static int sort_node_size_cmp(const struct mail_sort_node_size *n1, argument 230 if (n1->size < n2->size) 232 if (n1->size > n2->size) 237 n1->seq, n2->seq); 251 static int sort_node_float_cmp(const struct mail_sort_node_float *n1, argument 256 if (n1 [all...] |
| H A D | index-sort-string.c | 94 static int sort_node_seq_cmp(const struct mail_sort_node *n1, argument 97 if (n1->seq < n2->seq) 99 if (n1->seq > n2->seq) 250 static int sort_node_zero_string_cmp(const struct mail_sort_node *n1, argument 256 ret = strcmp(ctx->sort_strings[n1->seq], ctx->sort_strings[n2->seq]); 262 n1->seq, n2->seq); 789 static int sort_node_cmp(const struct mail_sort_node *n1, argument 794 if (n1->sort_id < n2->sort_id) 796 if (n1->sort_id > n2->sort_id) 801 n1 [all...] |
| /dovecot/src/doveadm/dsync/ |
| H A D | dsync-mailbox-tree.c | 438 int dsync_mailbox_node_name_cmp(struct dsync_mailbox_node *const *n1, argument 441 return strcmp((*n1)->name, (*n2)->name);
|
| H A D | dsync-mailbox-tree-sync.c | 246 static bool node_names_equal(const struct dsync_mailbox_node *n1, argument 249 while (n1 != NULL && n2 != NULL) { 250 if (strcmp(n1->name, n2->name) != 0) 252 n1 = n1->parent; 255 return n1 == NULL && n2 == NULL;
|
| /dovecot/src/lib/ |
| H A D | module-dir.c | 272 static int module_name_cmp(const char *const *n1, const char *const *n2) argument 274 const char *s1 = *n1, *s2 = *n2;
|
| /dovecot/src/doveadm/ |
| H A D | doveadm-oldstats.c | 280 uint64_t n1, n2; local 282 n1 = sort_num_diff(*l1); 284 if (n1 < n2) 286 if (n1 > n2)
|
| /dovecot/src/lib-storage/list/ |
| H A D | mailbox-list-index.c | 267 static int mailbox_list_index_node_cmp(const struct mailbox_list_index_node *n1, argument 270 return n1->parent == n2->parent && 271 strcmp(n1->name, n2->name) == 0 ? 0 : -1;
|
Completed in 388 milliseconds