Searched refs:cache (Results 1 – 5 of 5) sorted by relevance
163 nrfy_uarte_buffer_t cache; member481 p_cb->tx.cache.p_buffer = p_config->tx_cache.p_buffer; in nrfx_uarte_init()484 p_cb->tx.cache.length = 0; in nrfx_uarte_init()488 p_cb->tx.cache.length = p_config->tx_cache.length - 1; in nrfx_uarte_init()509 p_cb->rx.p_cache->cache[0].p_buffer = in nrfx_uarte_init()511 p_cb->rx.p_cache->cache[1].p_buffer = in nrfx_uarte_init()754 if (p_cb->tx.cache.p_buffer == NULL) in poll_out()779 p_cb->tx.cache.p_buffer[p_cb->tx.cache.length] = *p_byte; in poll_out()780 p_buf = &p_cb->tx.cache.p_buffer[p_cb->tx.cache.length]; in poll_out()820 uint32_t chunk_len = NRFX_MIN(p_cb->tx.cache.length, p_cb->tx.curr.length - p_cb->tx.off); in tx_prepare_start()[all …]
206 nrfy_uarte_buffer_t cache[2]; ///< Cache buffers. member
461 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This462 # cache is used to resolve symbols given their name and scope. Since this can be464 # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small465 # doxygen will become slower. If the cache is too large, memory is wasted. The466 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range467 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536468 # symbols. At the end of a run doxygen will report the cache usage and suggest469 # the optimal cache size from a speed point of view.
463 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This464 # cache is used to resolve symbols given their name and scope. Since this can be466 # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small467 # doxygen will become slower. If the cache is too large, memory is wasted. The468 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range469 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536470 # symbols. At the end of a run doxygen will report the cache usage and suggest471 # the optimal cache size from a speed point of view.
86 - Fixed potential data corruption when cache bounce buffer and RX FIFO buffer were shared in the UA…