Searched refs:col (Results 1 – 7 of 7) sorted by relevance
| /subsys/fb/ |
| A D | cfb_shell.c | 69 err = cfb_print(dev, str, col, row * ppt); in cmd_cfb_print() 89 int col, row; in cmd_print() local 91 col = strtol(argv[1], NULL, 10); in cmd_print() 103 err = cmd_cfb_print(sh, col, row, argv[3]); in cmd_print() 215 int col, row; in cmd_scroll_vert() local 218 col = strtol(argv[1], NULL, 10); in cmd_scroll_vert() 233 err = cmd_cfb_print(sh, col, row, argv[3]); in cmd_scroll_vert() 251 int col, row; in cmd_scroll_horz() local 254 col = strtol(argv[1], NULL, 10); in cmd_scroll_horz() 266 col++; in cmd_scroll_horz() [all …]
|
| /subsys/input/ |
| A D | input_keymap.c | 28 uint32_t col; member 42 data->col = evt->value; in keymap_cb() 57 data->col >= cfg->col_size) { in keymap_cb() 58 LOG_WRN("keymap event out of range: row=%u col=%u", data->row, data->col); in keymap_cb() 62 offset = (data->row * cfg->col_size) + data->col; in keymap_cb() 65 LOG_DBG("keymap event undefined: row=%u col=%u", data->row, data->col); in keymap_cb() 69 LOG_DBG("input event: %3u %3u %d", data->row, data->col, data->pressed); in keymap_cb()
|
| A D | input_utils.c | 170 static uint32_t row, col; in kbd_matrix_state_log() local 183 col = evt->value; in kbd_matrix_state_log() 197 if (col > (CONFIG_INPUT_SHELL_KBD_MATRIX_STATE_MAX_COLS - 1)) { in kbd_matrix_state_log() 198 LOG_ERR("column index too large for the state buffer: %d", col); in kbd_matrix_state_log() 202 if (col > (cfg->col_size - 1)) { in kbd_matrix_state_log() 203 LOG_ERR("invalid column index: %d", col); in kbd_matrix_state_log() 212 WRITE_BIT(kbd_matrix_state[col], row, val); in kbd_matrix_state_log() 214 WRITE_BIT(kbd_matrix_key_mask[col], row, 1); in kbd_matrix_state_log()
|
| /subsys/sip_svc/ |
| A D | sip_svc_id_mgr.c | 85 uint32_t col; in sip_svc_id_mgr_alloc() local 99 col = id % sizeof(uint32_t); in sip_svc_id_mgr_alloc() 100 id_pool->id_mask[row] |= (1 << col); in sip_svc_id_mgr_alloc() 119 uint32_t col; in sip_svc_id_mgr_free() local 130 col = id % sizeof(uint32_t); in sip_svc_id_mgr_free() 133 if (!(id_pool->id_mask[row] & (1 << col))) { in sip_svc_id_mgr_free() 138 id_pool->id_mask[row] &= ~(1 << col); in sip_svc_id_mgr_free()
|
| /subsys/shell/ |
| A D | shell_ops.c | 487 (sh->ctx->vt100_ctx.col.bgcol == bgcolor)) { in vt100_bgcolor_set() 491 sh->ctx->vt100_ctx.col.bgcol = bgcolor; in vt100_bgcolor_set() 506 if (sh->ctx->vt100_ctx.col.col == color) { in z_shell_vt100_color_set() 510 sh->ctx->vt100_ctx.col.col = color; in z_shell_vt100_color_set() 526 z_shell_vt100_color_set(sh, color->col); in z_shell_vt100_colors_restore() 535 (color != sh->ctx->vt100_ctx.col.col)) { in z_shell_vfprintf() 536 struct shell_vt100_colors col; in z_shell_vfprintf() local 538 z_shell_vt100_colors_store(sh, &col); in z_shell_vfprintf() 543 z_shell_vt100_colors_restore(sh, &col); in z_shell_vfprintf()
|
| A D | shell_log_backend.c | 66 struct shell_vt100_colors col; in z_shell_log_backend_process() local 69 z_shell_vt100_colors_store(sh, &col); in z_shell_log_backend_process() 76 z_shell_vt100_colors_restore(sh, &col); in z_shell_log_backend_process()
|
| A D | shell_ops.h | 360 memcpy(color, &sh->ctx->vt100_ctx.col, sizeof(*color)); in z_shell_vt100_colors_store()
|
Completed in 24 milliseconds