Searched refs:col_cnt (Results 1 – 3 of 3) sorted by relevance
94 if(col >= table->col_cnt) lv_table_set_col_cnt(obj, col + 1); in lv_table_set_cell_value()97 uint32_t cell = row * table->col_cnt + col; in lv_table_set_cell_value()131 if(col >= table->col_cnt) { in lv_table_set_cell_value_fmt()140 uint32_t cell = row * table->col_cnt + col; in lv_table_set_cell_value_fmt()223 uint16_t old_cell_cnt = old_row_cnt * table->col_cnt; in lv_table_set_row_cnt()224 uint32_t new_cell_cnt = table->col_cnt * table->row_cnt; in lv_table_set_row_cnt()237 …table->cell_data = lv_mem_realloc(table->cell_data, table->row_cnt * table->col_cnt * sizeof(lv_ta… in lv_table_set_row_cnt()243 uint32_t old_cell_cnt = old_row_cnt * table->col_cnt; in lv_table_set_row_cnt()244 uint32_t new_cell_cnt = table->col_cnt * table->row_cnt; in lv_table_set_row_cnt()251 void lv_table_set_col_cnt(lv_obj_t * obj, uint16_t col_cnt) in lv_table_set_col_cnt() argument[all …]
61 uint16_t col_cnt; member127 void lv_table_set_col_cnt(lv_obj_t * obj, uint16_t col_cnt);
30 …s and columns use `lv_table_set_row_cnt(table, row_cnt)` and `lv_table_set_col_cnt(table, col_cnt)`