| /components/dfs/ |
| A D | Kconfig | 231 bool "Enable page cache" 236 menu "page cache config" 238 int "page cache max total pages." 250 int "page cache hash size." 254 int "page cache gc work trigger min percentage, default 90%." 258 int "page cache gc to min percentage, default 70%."
|
| /components/drivers/usb/cherryusb/platform/uf2/ |
| A D | bootuf2.c | 53 uint8_t *const cache; member 111 .cache = bootuf2_disk_cache, 216 err = bootuf2_flash_write(ctx->cached_address, ctx->cache, ctx->cached_bytes); in bootuf2_flash_flush() 241 memcpy(ctx->cache + ctx->cached_bytes, uf2->Data, uf2->PayloadSize); in bootuf2_flash_write_internal()
|
| /components/mm/ |
| A D | Kconfig | 9 You could also exploit this as a tunning for cache coloring.
|
| /components/drivers/pic/ |
| A D | pic-gicv3-its.c | 1116 rt_uint64_t val, type, entry_size, share, cache; in its_table_init() local 1120 cache = GITS_BASER_RaWaWb; in its_table_init() 1188 cache = GITS_BASER_nCnB; in its_table_init() 1193 cache = GITS_BASER_nC; in its_table_init() 1201 cache | share | GITS_BASER_VALID); in its_table_init() 1223 cache = tbl->val & GITS_BASER_INNER_MASK_ALL; in its_table_init()
|
| /components/net/lwip/lwip-2.1.2/src/apps/altcp_tls/ |
| A D | altcp_tls_mbedtls.c | 107 struct mbedtls_ssl_cache_context cache; member 742 …mbedtls_ssl_conf_session_cache(&conf->conf, &conf->cache, mbedtls_ssl_cache_get, mbedtls_ssl_cache… in altcp_tls_create_config() 743 mbedtls_ssl_cache_set_timeout(&conf->cache, 30); in altcp_tls_create_config() 744 mbedtls_ssl_cache_set_max_entries(&conf->cache, 30); in altcp_tls_create_config()
|
| /components/lwp/ |
| A D | lwp_syscall.h | 110 sysret_t sys_cacheflush(void *addr, int len, int cache);
|
| A D | lwp_syscall.c | 9424 rt_weak sysret_t sys_cacheflush(void *addr, int size, int cache) in sys_cacheflush() argument 9433 if ((cache & DCACHE)) in sys_cacheflush() 9438 if ((cache & ICACHE)) in sys_cacheflush()
|
| /components/net/lwip/lwip-1.4.1/doc/ |
| A D | snmp_agent.txt | 179 when new entries are made or removed form the ARP cache.
|
| /components/dfs/dfs_v1/filesystems/elmfat/ |
| A D | 00history.txt | 119 Fixed wrong cache control in f_lseek().
|
| /components/net/lwip/lwip-2.0.3/doc/doxygen/ |
| A D | lwip.Doxyfile | 404 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This 405 # cache is used to resolve symbols given their name and scope. Since this can be 407 # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small 408 # doxygen will become slower. If the cache is too large, memory is wasted. The 409 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range 410 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 411 # symbols. At the end of a run doxygen will report the cache usage and suggest 412 # the optimal cache size from a speed point of view.
|
| /components/net/lwip/lwip-2.1.2/doc/doxygen/ |
| A D | lwip.Doxyfile | 413 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This 414 # cache is used to resolve symbols given their name and scope. Since this can be 416 # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small 417 # doxygen will become slower. If the cache is too large, memory is wasted. The 418 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range 419 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 420 # symbols. At the end of a run doxygen will report the cache usage and suggest 421 # the optimal cache size from a speed point of view.
|
| A D | lwip.Doxyfile.cmake.in | 413 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This 414 # cache is used to resolve symbols given their name and scope. Since this can be 416 # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small 417 # doxygen will become slower. If the cache is too large, memory is wasted. The 418 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range 419 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 420 # symbols. At the end of a run doxygen will report the cache usage and suggest 421 # the optimal cache size from a speed point of view.
|
| /components/dfs/dfs_v2/filesystems/elmfat/ |
| A D | 00history.txt | 119 Fixed wrong cache control in f_lseek().
|
| /components/dfs/dfs_v2/src/ |
| A D | dfs_pcache.c | 943 MSH_CMD_EXPORT_ALIAS(dfs_pcache_dump, dfs_cache, dump dfs page cache);
|
| /components/net/lwip/lwip-2.1.2/ |
| A D | CHANGELOG | 111 * netifapi: Add thread safe ARP cache APIs (task #14724) 1033 * dns.c: fixed bug #42987 lwIP is vulnerable to DNS cache poisoning due to 1359 * netif.c, etharp.h/.c: fixed bug #34684: Clear the arp table cache when 3173 * etharp.c: Introduced fast one-entry-cache to speed up ARP lookup when sending 3519 to cache ARP table indices with each pcb instead of single-entry cache for 4045 querying an address will see it appear in the cache (DHCP could 4164 * Pass-by ARP requests do now update the cache.
|
| /components/net/lwip/lwip-1.4.1/ |
| A D | CHANGELOG | 150 * netif.c, etharp.h/.c: fixed bug #34684: Clear the arp table cache when 1964 * etharp.c: Introduced fast one-entry-cache to speed up ARP lookup when sending 2310 to cache ARP table indices with each pcb instead of single-entry cache for 2836 querying an address will see it appear in the cache (DHCP could 2955 * Pass-by ARP requests do now update the cache.
|
| /components/net/lwip/lwip-2.0.3/ |
| A D | CHANGELOG | 780 * dns.c: fixed bug #42987 lwIP is vulnerable to DNS cache poisoning due to 1106 * netif.c, etharp.h/.c: fixed bug #34684: Clear the arp table cache when 2920 * etharp.c: Introduced fast one-entry-cache to speed up ARP lookup when sending 3266 to cache ARP table indices with each pcb instead of single-entry cache for 3792 querying an address will see it appear in the cache (DHCP could 3911 * Pass-by ARP requests do now update the cache.
|