Lines Matching defs:entries
190 struct dba_array *entries;
193 entries = dba_array_get(page, ie);
195 if (entries == NULL)
198 dba_array_free(entries);
205 dba_array_FOREACH(entries, entry) {
211 dba_array_add(entries, (void *)str);
220 struct dba_array *entries;
227 entries = dba_array_get(page, DBP_NAME);
228 dba_array_FOREACH(entries, entry) {
234 dba_array_add(entries, prepend(name, maskbyte));
424 * - The number of entries in the table.
435 struct macro_entry **entries, *entry;
445 entries = mandoc_reallocarray(NULL, ne, sizeof(*entries));
449 /* Build a list of non-empty entries and sort it. */
459 entries[ne++] = entry;
461 qsort(entries, ne, sizeof(*entries), compare_entries);
463 /* Number of entries, and space for the pointer pairs. */
472 dba_str_write(entries[ie]->value);
480 dba_array_FOREACH(entries[ie]->pages, page)
496 free(entries);