Home
last modified time | relevance | path

Searched refs:lru (Results 1 – 25 of 70) sorted by relevance

123

/external/mesa3d/src/gallium/auxiliary/util/
Du_cache.c86 struct util_cache_entry lru; member
115 make_empty_list(&cache->lru); in util_cache_create()
210 entry = cache->lru.prev; in util_cache_set()
213 util_cache_entry_destroy(cache, cache->lru.prev); in util_cache_set()
225 insert_at_head(&cache->lru, entry); in util_cache_set()
252 move_to_head(&cache->lru, entry); in util_cache_get()
277 assert(is_empty_list(&cache->lru)); in util_cache_clear()
365 assert (is_empty_list(&cache->lru)); in ensure_sanity()
368 struct util_cache_entry *header = cache->lru.next; in ensure_sanity()
371 assert (!is_empty_list(&cache->lru)); in ensure_sanity()
[all …]
/external/rust/crates/lru-cache/
DMETADATA1 name: "lru-cache"
6 value: "https://crates.io/crates/lru-cache"
10 value: "https://static.crates.io/crates/lru-cache/lru-cache-0.1.2.crate"
DCargo.toml.orig3 name = "lru-cache"
11 repository = "https://github.com/contain-rs/lru-cache"
12 homepage = "https://github.com/contain-rs/lru-cache"
13 documentation = "https://contain-rs.github.io/lru-cache/lru_cache"
DCargo.toml14 name = "lru-cache"
18 homepage = "https://github.com/contain-rs/lru-cache"
19 documentation = "https://contain-rs.github.io/lru-cache/lru_cache"
23 repository = "https://github.com/contain-rs/lru-cache"
DTEST_MAPPING5 "name": "lru-cache_test_src_lib"
10 "name": "lru-cache_test_src_lib"
DREADME.md14 Documentation is available at https://contain-rs.github.io/lru-cache/lru_cache.
/external/bcc/introspection/
Dbps_example.txt19 120 lru hash 0x0 4 8 10000 lru_hash_map
20 129 lru hash 0x0 4 8 43 lru_hash_lookup
22 121 lru hash 0x2 4
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/pagemap/mm_lru_insertion/
Dformat11 field:int lru; offset:24; size:4; signed:1;
14 print fmt: "page=%p pfn=%lu lru=%d flags=%s%s%s%s%s%s", REC->page, REC->pfn, REC->lru, REC->flags &…
/external/perfetto/src/traced/probes/ftrace/test/data/android_raven_AOSP.MASTER_5.10.43/events/pagemap/mm_lru_insertion/
Dformat11 field:int lru; offset:24; size:4; signed:1;
14 print fmt: "page=%p pfn=%lu lru=%d flags=%s%s%s%s%s%s", REC->page, REC->pfn, REC->lru, REC->flags &…
/external/perfetto/src/traced/probes/ftrace/test/data/android_raven_AOSP.MASTER_5.10.43/events/vmscan/mm_vmscan_lru_isolate/
Dformat16 field:int lru; offset:52; size:4; signed:1;
18lru=%s", REC->isolate_mode, REC->highest_zoneidx, REC->order, REC->nr_requested, REC->nr_scanned, …
/external/linux-kselftest/tools/testing/selftests/bpf/progs/
Dtimer.c47 } lru SEC(".maps");
79 lru_timer = bpf_map_lookup_elem(&lru, &lru_key); in timer_cb1()
135 bpf_map_update_elem(&lru, &lru_key, &init, 0); in BPF_PROG()
136 lru_timer = bpf_map_lookup_elem(&lru, &lru_key); in BPF_PROG()
139 bpf_timer_init(lru_timer, &lru, CLOCK_MONOTONIC); in BPF_PROG()
/external/cronet/net/tools/dump_cache/
Ddump_files.cc120 printf("head %d: 0x%x\n", i, header.lru.heads[i]); in DumpIndexHeader()
121 printf("tail %d: 0x%x\n", i, header.lru.tails[i]); in DumpIndexHeader()
122 printf("size %d: 0x%x\n", i, header.lru.sizes[i]); in DumpIndexHeader()
124 printf("transaction: 0x%x\n", header.lru.transaction); in DumpIndexHeader()
125 printf("operation: %d\n", header.lru.operation); in DumpIndexHeader()
126 printf("operation list: %d\n", header.lru.operation_list); in DumpIndexHeader()
493 int32_t size = header.lru.sizes[i]; in DumpLists()
499 disk_cache::CacheAddr addr = header.lru.tails[i]; in DumpLists()
516 printf("%d nodes found, %d reported\n", count, header.lru.sizes[i]); in DumpLists()
/external/cronet/net/disk_cache/blockfile/
Deviction.cc252 return (!test_mode_ && header_->lru.sizes[Rankings::DELETED] > max_length); in ShouldTrimDeleted()
263 if (header_->lru.filled) in ReportTrimTimes()
266 header_->lru.filled = 1; in ReportTrimTimes()
549 header_->lru.sizes[Rankings::DELETED]; in SelectListByLength()
551 if (header_->lru.sizes[0] > data_entries / 3) in SelectListByLength()
554 int list = (header_->lru.sizes[1] > data_entries / 3) ? 1 : 2; in SelectListByLength()
561 header_->lru.sizes[0] > data_entries / 10) in SelectListByLength()
Dbackend_impl.cc783 return &data_->header.lru; in GetLruData()
1028 data_->header.lru.sizes[0] * 100 / data_->header.num_entries); in FirstEviction()
1030 data_->header.lru.sizes[1] * 100 / data_->header.num_entries); in FirstEviction()
1032 data_->header.lru.sizes[2] * 100 / data_->header.num_entries); in FirstEviction()
1219 data_->header.num_entries - data_->header.lru.sizes[Rankings::DELETED]; in GetEntryCount()
1910 if (!data_->header.create_time || !data_->header.lru.filled) { in ReportStats()
1912 if (!data_->header.lru.filled) in ReportStats()
1965 data_->header.lru.sizes[0] * 100 / data_->header.num_entries); in ReportStats()
1967 data_->header.lru.sizes[1] * 100 / data_->header.num_entries); in ReportStats()
1969 data_->header.lru.sizes[2] * 100 / data_->header.num_entries); in ReportStats()
[all …]
Ddisk_format.h93 LruData lru; // Eviction control data. member
/external/elfutils/debuginfod/
Ddebuginfod.cxx1286 deque<fdcache_entry> lru; // @head: most recently used member in libarchive_fdcache
1298 for (auto i = lru.begin(); i < lru.end(); i++) in set_metrics()
1303 set_metric("fdcache_count", lru.size()); in set_metrics()
1313 for (auto i = lru.begin(); i < lru.end(); i++) in intern()
1318 lru.erase(i); in intern()
1339 lru.push_front(n); in intern()
1369 for (auto i = lru.begin(); i < lru.end(); i++) in lookup()
1374 lru.erase(i); // invalidates i, so no more iteration! in lookup()
1375 lru.push_front(n); in lookup()
1389 lru.push_front(n); in lookup()
[all …]
/external/openscreen/osp/go/cmd/
Dgo.sum9 github.com/hashicorp/golang-lru v0.5.0 h1:CL2msUPvZTLb5O648aiLNJw3hnBxN2+1Jq8rCOH9wdo=
10 github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
/external/rust/crates/linked-hash-map/
DTEST_MAPPING5 "path": "external/rust/crates/lru-cache"
/external/openscreen/osp/go/
Dgo.sum9 github.com/hashicorp/golang-lru v0.5.0 h1:CL2msUPvZTLb5O648aiLNJw3hnBxN2+1Jq8rCOH9wdo=
10 github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
Dgo.mod8 github.com/hashicorp/golang-lru v0.5.0 // indirect
/external/libdrm/intel/
Dintel_bufmgr_fake.c137 struct block lru; member
442 DRMLISTADDTAIL(block, &bufmgr_fake->lru); in alloc_block()
542 DRMLISTFOREACHSAFE(block, tmp, &bufmgr_fake->lru) { in evict_lru()
569 DRMLISTFOREACHSAFEREVERSE(block, tmp, &bufmgr_fake->lru) { in evict_mru()
612 DRMLISTADDTAIL(block, &bufmgr_fake->lru); in clear_fenced()
790 DRMLISTFOREACHSAFE(block, tmp, &bufmgr_fake->lru) { in drm_intel_bufmgr_fake_contended_lock_take()
1558 DRMLISTFOREACHSAFE(block, tmp, &bufmgr_fake->lru) { in drm_intel_bufmgr_fake_evict_all()
1597 DRMINITLISTHEAD(&bufmgr_fake->lru); in drm_intel_bufmgr_fake_init()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowActivityManager.java96 inState.lru = info.lru; in getMyMemoryState()
/external/mesa3d/src/panfrost/lib/
Dpan_device.h135 struct list_head lru; member
/external/mesa3d/src/gallium/drivers/freedreno/
Dfreedreno_gmem.h85 struct list_head lru; member
/external/jemalloc_new/include/jemalloc/internal/
Dextent_structs.h197 extent_list_t lru; member

123