Home
last modified time | relevance | path

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

/systemd-251/src/shared/
Dformat-table.c1987 uint64_t *column_weight, weight_sum; in table_print() local
2024 column_weight = newa0(uint64_t, display_columns); in table_print()
2098 column_weight[j] += d->weight; in table_print()
2108 weight_sum += column_weight[j]; in table_print()
2152 … width[j] = requested_width[j] + (extra * column_weight[j]) / weight_sum; in table_print()
2168 assert(weight_sum >= column_weight[j]); in table_print()
2169 weight_sum -= column_weight[j]; in table_print()
2197 … w = minimum_width[j] + (extra * column_weight[j]) / weight_sum; in table_print()
2219 assert(weight_sum >= column_weight[j]); in table_print()
2220 weight_sum -= column_weight[j]; in table_print()