Lines Matching defs:count
21 unsigned int i, j, count;
25 for (count = 0, name = headers; *name != NULL; name++)
26 count++;
29 sorted_headers = t_new(const char *, count);
30 memcpy(sorted_headers, headers, count * sizeof(*sorted_headers));
31 i_qsort(sorted_headers, count, sizeof(*sorted_headers), i_strcasecmp_p);
35 fields = t_new(struct mail_cache_field, count);
36 for (i = j = 0; i < count; i++) {
42 count = j;
43 mail_cache_register_fields(box->cache, fields, count);
50 ctx->count = count;
52 ctx->idx = p_new(pool, unsigned int, count);
55 dest_name = p_new(pool, const char *, count + 1);
56 for (i = 0; i < count; i++) {