Searched refs:cache (Results 1 – 20 of 20) sorted by relevance
/lk-master/lib/bcache/ |
A D | bcache.c | 49 struct bcache *cache; in bcache_create() local 53 cache->dev = dev; in bcache_create() 56 memset(&cache->stats, 0, sizeof(cache->stats)); in bcache_create() 68 list_add_head(&cache->free_list, &cache->blocks[i].node); in bcache_create() 71 return (bcache_t)cache; in bcache_create() 84 cache->stats.writes++; in flush_block() 104 free(cache); in bcache_destroy() 128 cache->stats.misses++; in find_block() 183 … err = bio_read(cache->dev, block->ptr, (off_t)blocknum * cache->block_size, cache->block_size); in find_or_fill_block() 311 finds = cache->stats.hits + cache->stats.misses; in bcache_dump() [all …]
|
/lk-master/target/sifive-unleashed/dt/ |
A D | fu540-c000.dtsi | 29 i-cache-sets = <128>; 30 i-cache-size = <16384>; 44 d-cache-sets = <64>; 45 d-cache-size = <32768>; 50 i-cache-sets = <64>; 69 d-cache-sets = <64>; 75 i-cache-sets = <64>; 94 d-cache-sets = <64>; 100 i-cache-sets = <64>; 119 d-cache-sets = <64>; [all …]
|
/lk-master/.github/workflows/ |
A D | github-ci.yml | 78 - name: cache 79 uses: actions/cache@v2.1.1 80 id: cache 82 # A list of files, directories, and wildcard patterns to cache and restore 84 # An explicit key for restoring and saving the cache
|
/lk-master/arch/arm64/ |
A D | cache-ops.S | 17 .macro cache_range_op, cache op 21 \cache \op, x3
|
A D | rules.mk | 19 $(LOCAL_DIR)/cache-ops.S \ 22 $(LOCAL_DIR)/arm/cache.c \
|
/lk-master/arch/m68k/ |
A D | rules.mk | 14 $(LOCAL_DIR)/cache.c \ 15 $(LOCAL_DIR)/cache-ops.S \
|
/lk-master/lib/fs/ext2/ |
A D | ext2.c | 168 ext2->cache = bcache_create(ext2->dev, EXT2_BLOCK_SIZE(ext2->sb), 4); in ext2_mount() 192 bcache_destroy(ext2->cache); in ext2_unmount() 226 err = bcache_get_block(ext2->cache, &cache_ptr, bnum); in ext2_load_inode() 234 bcache_put_block(ext2->cache, bnum); in ext2_load_inode()
|
A D | io.c | 18 return bcache_read_block(ext2->cache, buf, bnum); in ext2_read_block() 22 return bcache_get_block(ext2->cache, ptr, bnum); in ext2_get_block() 26 return bcache_put_block(ext2->cache, bnum); in ext2_put_block()
|
A D | ext2_priv.h | 21 bcache_t cache; member
|
/lk-master/lib/fs/fat32/ |
A D | fat.c | 152 fat->cache = bcache_create(fat->dev, fat->bytes_per_sector, 4); in fat32_mount() 162 bcache_destroy(fat->cache); in fat32_unmount()
|
A D | fat_fs.h | 15 bcache_t cache; member
|
A D | file.c | 33 int err = bcache_get_block(fat->cache, &cache_ptr, bnum); in fat32_next_cluster_in_chain() 50 bcache_put_block(fat->cache, bnum); in fat32_next_cluster_in_chain()
|
/lk-master/arch/arm/ |
A D | rules.mk | 231 $(LOCAL_DIR)/arm/cache-ops.S \ 232 $(LOCAL_DIR)/arm/cache.c \ 298 $(LOCAL_DIR)/arm-m/cache.c \
|
/lk-master/arch/or1k/ |
A D | rules.mk | 11 $(LOCAL_DIR)/cache-ops.c \
|
/lk-master/platform/zynq/ |
A D | rules.mk | 14 dev/cache/pl310 \
|
/lk-master/arch/microblaze/ |
A D | rules.mk | 13 $(LOCAL_DIR)/cache-ops.S \
|
/lk-master/arch/mips/ |
A D | rules.mk | 15 $(LOCAL_DIR)/cache-ops.S \
|
/lk-master/arch/x86/ |
A D | rules.mk | 52 $(LOCAL_DIR)/cache.c \
|
/lk-master/external/platform/pico/rp2_common/pico_standard_link/ |
A D | memmap_no_flash.ld | 39 cache-as-SRAM if both are used).
|
/lk-master/external/platform/nrfx/doc/ |
A D | nrfx.doxyfile | 411 # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This 412 # cache is used to resolve symbols given their name and scope. Since this can be 414 # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small 415 # doxygen will become slower. If the cache is too large, memory is wasted. The 416 # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range 417 # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 418 # symbols. At the end of a run doxygen will report the cache usage and suggest 419 # the optimal cache size from a speed point of view.
|
Completed in 14 milliseconds