Searched refs:size (Results 1 – 7 of 7) sorted by relevance
/hal_intel-3.7.0/bsp_sedi/drivers/ipc/ |
D | sedi_ipc.c | 225 int32_t sedi_ipc_write_msg(IN sedi_ipc_t ipc_device, IN uint8_t *msg, IN int32_t size) in sedi_ipc_write_msg() argument 238 DBG_CHECK((size <= IPC_DATA_LEN_MAX) && (size >= 0), SEDI_DRIVER_ERROR_PARAMETER); in sedi_ipc_write_msg() 244 for (i = 0; i < size; i = i + 4) { in sedi_ipc_write_msg() 251 for (i = 0; i < (size >> 2); i++) { in sedi_ipc_write_msg() 255 if (size % sizeof(uint32_t)) { in sedi_ipc_write_msg() 256 for (i = ((size >> 2) << 2); i < size; i++) { in sedi_ipc_write_msg() 259 regs->ish2agent_msg_agent[size >> 2] = tail; in sedi_ipc_write_msg() 336 int32_t sedi_ipc_read_msg(IN sedi_ipc_t ipc_device, OUT uint8_t *msg, IN int32_t size) in sedi_ipc_read_msg() argument 348 DBG_CHECK((size <= IPC_DATA_LEN_MAX) && (size >= 0), SEDI_DRIVER_ERROR_PARAMETER); in sedi_ipc_read_msg() 352 for (i = 0; i < (size >> 2); i++) { in sedi_ipc_read_msg() [all …]
|
/hal_intel-3.7.0/bsp_sedi/include/driver/ |
D | sedi_driver_ipc.h | 195 IN int32_t size); 213 IN int32_t size); 231 IN int32_t size); 249 IN int32_t size);
|
D | sedi_driver_uart.h | 250 int32_t size; /* Size of the buffer */ member 556 IN uint32_t size); 572 IN uint32_t size);
|
/hal_intel-3.7.0/bsp_sedi/drivers/i2c/ |
D | sedi_i2c_dw_apb_200a.c | 435 uint32_t size = context->buf_size - context->rx_cmd_index; in i2c_ask_data() local 464 if (size <= fifo_size) { in i2c_ask_data() 467 size = fifo_size; in i2c_ask_data() 470 while (size > 0) { in i2c_ask_data() 477 if ((size == 1) && last_data && (!(context->pending))) { in i2c_ask_data() 485 size--; in i2c_ask_data() 498 uint32_t size = context->buf_size - context->buf_index; in i2c_send() local 510 if (size <= tx_fifo_space) { in i2c_send() 513 size = tx_fifo_space; in i2c_send() 517 while (size > 1) { in i2c_send() [all …]
|
/hal_intel-3.7.0/bsp_sedi/drivers/spi/ |
D | sedi_spi_dw_apb.c | 343 uint32_t size = 0; in lld_spi_fill_fifo() local 363 size = (SPI_FIFO_DEPTH - spi->txflr) * frame_size; in lld_spi_fill_fifo() 366 size = (count > size) ? size : count; in lld_spi_fill_fifo() 368 count = size; in lld_spi_fill_fifo() 369 while (size) { in lld_spi_fill_fifo() 389 size -= frame_size; in lld_spi_fill_fifo() 398 uint32_t size = spi->rxflr * frame_size; in lld_spi_receive_fifo() local 402 size = (count > size) ? size : count; in lld_spi_receive_fifo() 404 count = size; in lld_spi_receive_fifo() 405 while (size) { in lld_spi_receive_fifo() [all …]
|
/hal_intel-3.7.0/bsp_sedi/drivers/usart/ |
D | sedi_dw_uart.c | 377 if (write_idx == unsol_rx->size) { in handle_unsol_rx_data() 387 unsol_read_ctxt[uart].curr_len = unsol_rx->size - read_idx + write_idx; in handle_unsol_rx_data() 1357 int sedi_uart_fifo_fill(IN sedi_uart_t uart, IN uint8_t *data, IN uint32_t size) in sedi_uart_fifo_fill() argument 1365 for (i = 0; ((i < size) && (!is_tx_fifo_full(uart))); i++) { in sedi_uart_fifo_fill() 1371 int sedi_uart_fifo_read(IN sedi_uart_t uart, OUT uint8_t *data, IN uint32_t size) in sedi_uart_fifo_read() argument 1379 for (i = 0; i < size && sedi_is_rx_data_available(uart); i++) { in sedi_uart_fifo_read() 1579 DBG_CHECK(unsol_rx->size != 0, SEDI_DRIVER_ERROR_PARAMETER); in sedi_uart_enable_unsol_rx() 1660 for (i = start_idx; i < unsol_rx->size; i++) { in sedi_uart_get_unsol_data() 1678 unsol_read_ctxt[uart].read_idx = (unsol_read_ctxt[uart].read_idx + len) % unsol_rx->size; in sedi_uart_get_unsol_data()
|
/hal_intel-3.7.0/docs/ |
D | bsp_sedi_doxyfile | 450 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This 455 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range 456 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 458 # the optimal cache size from a speed point of view. 1579 # Use this tag to change the font size of LaTeX formulas included as images in 1580 # the HTML documentation. When you change the font size after a successful 2066 # the XML output. Note that enabling this will significantly increase the size 2101 # increase the size of the DOCBOOK output. 2142 # size of the Perl module output will be much smaller and Perl will parse it 2336 # The DOT_FONTSIZE tag can be used to set the size (in points) of the font of [all …]
|