Home
last modified time | relevance | path

Searched refs:n_cells (Results 1 – 1 of 1) sorted by relevance

/systemd-251/src/shared/
Dformat-table.c133 size_t n_cells; member
215 assert(t->n_columns == t->n_cells); in table_new_internal()
238 for (size_t i = 0; i < t->n_cells; i++) in table_unref()
438 if (t->n_cells >= t->n_columns) in table_add_cell_full()
439 assert_se(p = t->data[t->n_cells - t->n_columns]); in table_add_cell_full()
470 if (!GREEDY_REALLOC(t->data, MAX(t->n_cells + 1, t->n_columns))) in table_add_cell_full()
474 *ret_cell = TABLE_INDEX_TO_CELL(t->n_cells); in table_add_cell_full()
476 t->data[t->n_cells++] = TAKE_PTR(d); in table_add_cell_full()
511 } while ((t->n_cells % t->n_columns) != until_column); in table_fill_empty()
524 if (i >= t->n_cells) in table_dup_cell()
[all …]