Home
last modified time | relevance | path

Searched refs:cache (Results 1 – 20 of 20) sorted by relevance

/lk-master/lib/bcache/
A Dbcache.c49 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 Dfu540-c000.dtsi29 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 Dgithub-ci.yml78 - 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 Dcache-ops.S17 .macro cache_range_op, cache op
21 \cache \op, x3
A Drules.mk19 $(LOCAL_DIR)/cache-ops.S \
22 $(LOCAL_DIR)/arm/cache.c \
/lk-master/arch/m68k/
A Drules.mk14 $(LOCAL_DIR)/cache.c \
15 $(LOCAL_DIR)/cache-ops.S \
/lk-master/lib/fs/ext2/
A Dext2.c168 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 Dio.c18 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 Dext2_priv.h21 bcache_t cache; member
/lk-master/lib/fs/fat32/
A Dfat.c152 fat->cache = bcache_create(fat->dev, fat->bytes_per_sector, 4); in fat32_mount()
162 bcache_destroy(fat->cache); in fat32_unmount()
A Dfat_fs.h15 bcache_t cache; member
A Dfile.c33 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 Drules.mk231 $(LOCAL_DIR)/arm/cache-ops.S \
232 $(LOCAL_DIR)/arm/cache.c \
298 $(LOCAL_DIR)/arm-m/cache.c \
/lk-master/arch/or1k/
A Drules.mk11 $(LOCAL_DIR)/cache-ops.c \
/lk-master/platform/zynq/
A Drules.mk14 dev/cache/pl310 \
/lk-master/arch/microblaze/
A Drules.mk13 $(LOCAL_DIR)/cache-ops.S \
/lk-master/arch/mips/
A Drules.mk15 $(LOCAL_DIR)/cache-ops.S \
/lk-master/arch/x86/
A Drules.mk52 $(LOCAL_DIR)/cache.c \
/lk-master/external/platform/pico/rp2_common/pico_standard_link/
A Dmemmap_no_flash.ld39 cache-as-SRAM if both are used).
/lk-master/external/platform/nrfx/doc/
A Dnrfx.doxyfile411 # 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 23 milliseconds