Home
last modified time | relevance | path

Searched refs:bytes (Results 1 – 25 of 105) sorted by relevance

12345

/drivers/misc/ethos_u/
A Dethos_u_common.c106 void ethosu_flush_dcache(uint32_t *p, size_t bytes) in ethosu_flush_dcache() argument
108 if (p && bytes) { in ethosu_flush_dcache()
109 sys_cache_data_flush_range((void *)p, bytes); in ethosu_flush_dcache()
113 void ethosu_invalidate_dcache(uint32_t *p, size_t bytes) in ethosu_invalidate_dcache() argument
115 if (p && bytes) { in ethosu_invalidate_dcache()
116 sys_cache_data_invd_range((void *)p, bytes); in ethosu_invalidate_dcache()
/drivers/wifi/esp_hosted/
A Desp_hosted_proto.pb157 bytes ssid = 1;
160 bytes bssid = 4;
165 bytes mac = 1;
177 bytes mac = 1;
205 bytes mac = 1;
217 bytes ssid = 1;
235 bytes mac = 2;
242 bytes ssid = 1;
243 bytes pwd = 2;
264 bytes mac = 2;
[all …]
A Desp_hosted_wifi.c235 ctrl_msg.event_station_disconnect_from_ESP_SoftAP.mac.bytes, in esp_hosted_event_task()
299 esp_hosted_mac_to_str(params->bssid, ctrl_msg.req_connect_ap.bssid.bytes); in esp_hosted_connect()
413 data->stats.bytes.sent += pkt_len; in esp_hosted_send()
453 data->stats.bytes.received += len; in esp_hosted_recv()
472 stats->bytes.received = data->stats.bytes.received; in esp_hosted_stats()
473 stats->bytes.sent = data->stats.bytes.sent; in esp_hosted_stats()
517 memcpy(status->ssid, ctrl_msg.resp_get_ap_config.ssid.bytes, status->ssid_len); in esp_hosted_status()
518 esp_hosted_str_to_mac(ctrl_msg.resp_get_ap_config.bssid.bytes, status->bssid); in esp_hosted_status()
552 memcpy(result.ssid, ap_list[i].ssid.bytes, result.ssid_length); in esp_hosted_scan()
557 esp_hosted_str_to_mac(ap_list[i].bssid.bytes, result.mac); in esp_hosted_scan()
[all …]
/drivers/entropy/
A Dentropy_smartbond.c216 for (; bytes < limit; ++bytes) { in rng_pool_put_bytes()
217 if (rng_pool_put(rngp, *bytes) < 0) { in rng_pool_put_bytes()
223 return bytes; in rng_pool_put_bytes()
278 uint16_t bytes; in entropy_smartbond_get_entropy() local
284 if (bytes == 0U) { in entropy_smartbond_get_entropy()
290 len -= bytes; in entropy_smartbond_get_entropy()
291 buf += bytes; in entropy_smartbond_get_entropy()
329 uint8_t bytes[4]; in entropy_smartbond_get_entropy_isr() local
330 const uint8_t *ptr = bytes; in entropy_smartbond_get_entropy_isr()
331 const uint8_t *const limit = bytes + 4; in entropy_smartbond_get_entropy_isr()
[all …]
A DKconfig.smartbond22 Buffer length in bytes used to store entropy bytes generated by the
30 Low water-mark threshold in bytes to trigger entropy generation for
31 thread mode consumers. As soon as the number of available bytes in the
40 Buffer length in bytes used to store entropy bytes generated by the
48 Low water-mark threshold in bytes to trigger entropy generation for
49 ISR consumers. As soon as the number of available bytes in the
A DKconfig.nrf539 Buffer length in bytes used to store entropy bytes generated by the
47 Low water-mark threshold in bytes to trigger entropy generation for
48 thread mode consumers. As soon as the number of available bytes in the
57 Buffer length in bytes used to store entropy bytes generated by the
65 Low water-mark threshold in bytes to trigger entropy generation for
66 ISR consumers. As soon as the number of available bytes in the
A DKconfig.stm3224 Buffer length in bytes used to store entropy bytes generated by the
32 Low water-mark threshold in bytes to trigger entropy generation for
33 thread mode consumers. As soon as the number of available bytes in the
42 Buffer length in bytes used to store entropy bytes generated by the
50 Low water-mark threshold in bytes to trigger entropy generation for
51 ISR consumers. As soon as the number of available bytes in the
A Dentropy_nrf5.c232 uint16_t bytes; in entropy_nrf5_get_entropy() local
235 bytes = rng_pool_get((struct rng_pool *)(entropy_nrf5_data.thr), in entropy_nrf5_get_entropy()
239 if (bytes == 0U) { in entropy_nrf5_get_entropy()
245 len -= bytes; in entropy_nrf5_get_entropy()
246 buf += bytes; in entropy_nrf5_get_entropy()
/drivers/ipm/
A DKconfig.imx28 bool "4 bytes"
31 and a maximum size of 4 bytes each.
34 bool "8 bytes"
37 and a maximum size of 8 bytes each.
40 bool "16 bytes"
43 and a maximum size of 16 bytes.
A DKconfig.ivshmem7 int "Stack size in bytes of IVSHMEM IPM Event loop task"
10 Adjust the stack size, in bytes of the ivshmem event loop task.
/drivers/crypto/
A DKconfig.it8xxx212 It requires 256 + 256 bytes in the RAM's first 4k-bytes to calculate
23 It requires 1024 + 256 bytes in the RAM's first 4k-bytes to calculate
/drivers/flash/
A DKconfig.cadence_qspi_nor29 int "Access QSPI address memory size in bytes"
32 Set the address memory size in bytes when
36 int "Set QSPI to read / write how many bytes per device"
42 int "Set QSPI to read / write how many bytes per block"
/drivers/i2c/
A DKconfig.it51xxx14 Three I2C targets on design A, B and C. Support 16 bytes dedicated
28 The I2C controller supports two 32-bytes FIFOs,
38 int "It is allowed to configure the dedicated FIFO size up to 256 bytes."
42 int "It is allowed to configure the shared FIFO size up to 256 bytes."
A DKconfig.it8xxx224 The I2C controller supports two 32-bytes FIFOs,
55 int "It is allowed to configure the size up to 2K bytes."
60 up to 2k bytes.
67 int "It is allowed to configure the size up to 2044 bytes."
/drivers/sensor/ams/tsl2561/
A Dtsl2561.c138 uint8_t bytes[2]; in tsl2561_sample_fetch() local
158 ret = tsl2561_reg_read(dev, TSL2561_REG_DATA0LOW, bytes, 2U); in tsl2561_sample_fetch()
163 data->ch0 = bytes[1] << 8 | bytes[0]; in tsl2561_sample_fetch()
165 ret = tsl2561_reg_read(dev, TSL2561_REG_DATA1LOW, bytes, 2U); in tsl2561_sample_fetch()
170 data->ch1 = bytes[1] << 8 | bytes[0]; in tsl2561_sample_fetch()
/drivers/gpio/
A DKconfig.wch_ch32v00x16 700 bytes of flash and 60 bytes of RAM.
/drivers/mspi/
A Dmspi_ambiq.h17 #define MSPI_AMBIQ_HEAP_DEFINE(name, bytes) \ argument
19 kheap_##name[MAX(bytes, MSPI_AMBIQ_HEAP_MIN_SIZE)]; \
24 .init_bytes = MAX(bytes, MSPI_AMBIQ_HEAP_MIN_SIZE), \
/drivers/serial/
A DKconfig.ns1655048 bool "UART 16550 (16-bytes FIFO)"
50 This enables support for 16-bytes FIFO if UART controller is 16550.
53 bool "UART 16750 (64-bytes FIFO and auto flow control)"
55 This enables support for 64-bytes FIFO and automatic hardware
59 bool "UART 16950 (128-bytes FIFO and auto flow control)"
61 This enables support for 128-bytes FIFO and automatic hardware flow control.
/drivers/dma/
A Ddma_ifx_cat1.c202 uint32_t bytes, uint32_t offset) in _initialize_descriptor() argument
213 if (((offset + bytes) == block_config->block_size) && in _initialize_descriptor()
253 if (bytes >= DMA_LOOP_X_COUNT_MAX) { in _initialize_descriptor()
263 descriptor_config.xCount = bytes; in _initialize_descriptor()
339 uint32_t bytes; in ifx_cat1_dma_configure() local
360 bytes = block_pending_bytes; in ifx_cat1_dma_configure()
366 bytes = DMA_LOOP_X_COUNT_MAX * DMA_LOOP_Y_COUNT_MAX; in ifx_cat1_dma_configure()
368 bytes = DMA_LOOP_Y_COUNT_MAX * in ifx_cat1_dma_configure()
371 block_pending_bytes -= bytes; in ifx_cat1_dma_configure()
375 /* block_num */ i, bytes, offset); in ifx_cat1_dma_configure()
[all …]
A Ddma_nxp_edma.h362 uint32_t bytes) in edma_chan_cyclic_consume() argument
364 if (bytes > chan->stat.pending_length) { in edma_chan_cyclic_consume()
369 (chan->stat.read_position + bytes) % chan->bsize; in edma_chan_cyclic_consume()
401 uint32_t bytes) in edma_chan_cyclic_produce() argument
403 if (bytes > chan->stat.free) { in edma_chan_cyclic_produce()
408 (chan->stat.write_position + bytes) % chan->bsize; in edma_chan_cyclic_produce()
/drivers/mbox/
A DKconfig.ivshmem16 int "Stack size in bytes of IVSHMEM MBOX Event loop task"
19 Adjust the stack size, in bytes of the ivshmem event loop task.
/drivers/sdhc/
A DKconfig.mcux_sdif29 int "Size of DMA descriptor buffer in bytes"
32 Size of MCUX SDIF DMA descriptor buffer in bytes
A DKconfig.imx36 int "Size of DMA descriptor buffer in bytes"
39 Size of USDHC ADMA descriptor buffer in bytes
/drivers/sip_svc/
A DKconfig.sip_smc_agilex18 the maximum size of response buffer size is 4096 and minimum is 4 bytes.
19 Also it should be multiple of 4 bytes.
/drivers/hwinfo/
A DKconfig.cc13xx_cc26xx30 Use 8-bytes length IEEE 802.15.4 extended address as device ID value.
35 Use 6-bytes length BLE MAC address as device ID value.

Completed in 44 milliseconds

12345