Searched refs:cache (Results 101 - 125 of 437) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/gperf/
H A Dconfigure705 -cache-file | --cache-file | --cache-fil | --cache-fi \
706 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
708 -cache-file=* | --cache-file=* | --cache
[all...]
/freebsd-11-stable/sys/vm/
H A Duma_core.c47 * - Investigate cache size adjustments
123 /* The boot-time adjusted value for cache line alignment. */
136 /* Linked list of all cache-only zones in the system */
673 uma_cache_t cache; local
689 cache = &zone->uz_cpu[cpu];
690 bucket_drain(zone, cache->uc_allocbucket);
691 bucket_drain(zone, cache->uc_freebucket);
692 if (cache->uc_allocbucket != NULL)
693 bucket_free(zone, cache->uc_allocbucket, NULL);
694 if (cache
718 uma_cache_t cache; local
2123 uma_cache_t cache; local
2664 uma_cache_t cache; local
3328 cache_print(uma_cache_t cache) argument
3362 uma_cache_t cache; local
3393 uma_cache_t cache; local
3447 uma_cache_t cache; local
[all...]
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/
H A Dmlx5_ib_mr.c65 struct mlx5_mr_cache *cache = &dev->cache; local
67 if (order < cache->ent[0].order)
70 return order - cache->ent[0].order;
112 struct mlx5_mr_cache *cache = &dev->cache; local
114 struct mlx5_cache_ent *ent = &cache->ent[c];
136 cache->last_add = jiffies;
154 struct mlx5_mr_cache *cache = &dev->cache; local
215 struct mlx5_mr_cache *cache = &dev->cache; local
240 someone_adding(struct mlx5_mr_cache *cache) argument
255 struct mlx5_mr_cache *cache = &dev->cache; local
322 struct mlx5_mr_cache *cache = &dev->cache; local
363 struct mlx5_mr_cache *cache = &dev->cache; local
387 struct mlx5_mr_cache *cache = &dev->cache; local
421 struct mlx5_mr_cache *cache = &dev->cache; local
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dbcache.c67 struct obstack cache; member in struct:bcache
238 = obstack_alloc (&bcache->cache, BSTRING_SIZE (length));
276 obstack_init (&b->cache);
286 obstack_free (&bcache->cache, 0);
443 return obstack_memory_used (&bcache->cache);
/freebsd-11-stable/sys/sys/
H A Dkobj.h77 * The ops table is used as a cache of results from kobj_lookup_method().
83 kobj_method_t *cache[KOBJ_CACHE_SIZE]; member in struct:kobj_ops
220 * Lookup the method in the cache and if it isn't there look it up the
227 &OPS->cache[_desc->id & (KOBJ_CACHE_SIZE-1)]; \
241 &OPS->cache[_desc->id & (KOBJ_CACHE_SIZE-1)]; \
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_mac.cpp39 AllocatorCache cache; member in struct:__lsan::__anon998
65 ptr->cache = AllocatorCache();
94 AllocatorCache *GetAllocatorCache() { return &get_tls_val(true)->cache; }
/freebsd-11-stable/contrib/jemalloc/src/
H A Dchunk.c54 extent_tree_t *chunks_ad, bool cache, void *chunk, size_t size, bool zeroed,
203 extent_tree_t *chunks_szad, extent_tree_t *chunks_ad, bool cache,
262 arena_chunk_cache_maybe_remove(arena, node, cache);
268 arena_chunk_cache_maybe_insert(arena, node, cache);
279 chunks_ad, cache, ret, size + trailsize, zeroed,
289 chunks_szad, chunks_ad, cache, ret, size +
298 arena_chunk_cache_maybe_insert(arena, node, cache);
304 cache, ret, size, zeroed, committed);
507 extent_tree_t *chunks_szad, extent_tree_t *chunks_ad, bool cache,
514 assert(!cache || !zeroe
202 chunk_recycle(tsdn_t *tsdn, arena_t *arena, chunk_hooks_t *chunk_hooks, extent_tree_t *chunks_szad, extent_tree_t *chunks_ad, bool cache, void *new_addr, size_t size, size_t alignment, bool *zero, bool *commit, bool dalloc_node) argument
506 chunk_record(tsdn_t *tsdn, arena_t *arena, chunk_hooks_t *chunk_hooks, extent_tree_t *chunks_szad, extent_tree_t *chunks_ad, bool cache, void *chunk, size_t size, bool zeroed, bool committed) argument
[all...]
/freebsd-11-stable/contrib/amd/scripts/
H A Dtest-attrcache.in2 # Script to test the attribute cache behavior of the local OS client.
51 echo amd -x all -D all -r -l $logfile $a $mapfile -cache:=mapdefault,sync
52 amd -x all -D all -r -l $logfile $a $mapfile -cache:=mapdefault,sync
97 # flushed the attribute cache; if it did, then Amd will see the
/freebsd-11-stable/tools/regression/zfs/zpool/create/
H A Doption-f_inuse.t90 expect_ok ${ZPOOL} create ${name0} ${disk0} cache ${disk1}
97 expect "${exp}" ${ZPOOL} create ${name1} ${disk0} cache ${disk1}
99 expect_ok ${ZPOOL} create -f ${name1} ${disk0} cache ${disk1}
167 expect_ok ${ZPOOL} create ${name0} ${disk0} cache ${disk1}
175 add_msg="# TODO It shouldn't be possible to use offlined cache vdev."
176 expect "${exp}" ${ZPOOL} create ${name1} ${disk2} cache ${disk1}
178 expect_ok ${ZPOOL} create -f ${name1} ${disk2} cache ${disk1}
261 expect_ok ${ZPOOL} create ${name0} ${disk0} cache ${disk1}
269 expect "${exp}" ${ZPOOL} create ${name1} ${disk2} cache ${disk1}
278 expect "${exp}" ${ZPOOL} create -f ${name1} ${disk2} cache
[all...]
/freebsd-11-stable/lib/libc/nls/
H A Dmsgcat.c94 SLIST_INSERT_HEAD(&cache, np, \
116 SLIST_HEAD(listhead, catentry) cache =
117 SLIST_HEAD_INITIALIZER(cache);
150 /* Try to get it from the cache first */
152 SLIST_FOREACH(np, &cache, list) {
343 SLIST_REMOVE(&cache, np, catentry, list);
361 /* Remove from cache if not referenced any more */
363 SLIST_FOREACH(np, &cache, list) {
391 * One more try in cache; if it was not found by name,
395 SLIST_FOREACH(np, &cache, lis
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_allocator.cpp152 AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage()); local
153 allocated = allocator.Allocate(cache, size, alignment);
156 AllocatorCache *cache = &fallback_allocator_cache; local
157 allocated = allocator.Allocate(cache, size, alignment);
200 AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage()); local
201 allocator.Deallocate(cache, p);
204 AllocatorCache *cache = &fallback_allocator_cache; local
205 allocator.Deallocate(cache, p);
/freebsd-11-stable/contrib/byacc/
H A Dreader.c31 static char *cache; variable
104 cache = TREALLOC(char, cache, cache_size);
105 NO_SPACE(cache);
107 cache[cinc] = (char)c;
508 if ((key = bsearch(cache, keywords,
1222 s[i] = cache[i];
1233 if (c == '\\' || c == cache[0])
1281 bp = lookup(cache);
1322 if (is_reserved(cache))
[all...]
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_threadprivate.cpp609 @param cache pointer to cache
619 void ***cache) {
620 KC_TRACE(10, ("__kmpc_threadprivate_cached: T#%d called with cache: %p, "
622 global_tid, *cache, data, size));
624 if (TCR_PTR(*cache) == 0) {
627 if (TCR_PTR(*cache) == 0) {
629 // Compiler often passes in NULL cache, even if it's already been created
632 // Look for an existing cache
640 KC_TRACE(50, ("__kmpc_threadprivate_cached: T#%d allocated cache a
615 __kmpc_threadprivate_cached(ident_t *loc, kmp_int32 global_tid, void *data, size_t size, void ***cache) argument
786 void **cache = ptr->addr; local
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dcaching.c70 according to FS->CONFIG. *CACHE_NAMESPACE receives the cache prefix to
83 /* No cache namespace by default. I.e. all FS instances share the
85 * share / compete for the same cache memory but keys will not match
107 /* by default, cache fulltexts.
111 * won't be re-used rendering the cache less effective
119 /* by default, cache nodeprops.
166 /* the cache to dump the statistics for */
167 svn_cache__t *cache; member in struct:dump_cache_baton_t
171 cache referenced by the baton in BATON_VOID. */
183 svn_error_t *err = svn_cache__get_info(baton->cache,
244 init_callbacks(svn_cache__t *cache, svn_fs_t *fs, svn_cache__error_handler_t error_handler, apr_pool_t *pool) argument
800 init_txn_callbacks(svn_fs_t *fs, svn_cache__t **cache, apr_pool_t *pool) argument
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dtree-scalar-evolution.c2070 get_instantiated_value (htab_t cache, tree version)
2075 info = (struct scev_info_str *) htab_find (cache, &pattern);
2086 set_instantiated_value (htab_t cache, tree version, tree val)
2092 slot = htab_find_slot (cache, &pattern, INSERT);
2127 with respect to LOOP. CHREC is the chrec to instantiate. CACHE is the cache
2143 instantiate_parameters_1 (struct loop *loop, tree chrec, int flags, htab_t cache,
2171 /* We cache the value of instantiated variable to avoid exponential
2173 value in the cache in order to prevent infinite recursion -- we do
2180 res = get_instantiated_value (cache, chrec);
2189 set_instantiated_value (cache, chre
2065 get_instantiated_value(htab_t cache, tree version) argument
2081 set_instantiated_value(htab_t cache, tree version, tree val) argument
2138 instantiate_parameters_1(struct loop *loop, tree chrec, int flags, htab_t cache, int size_expr) argument
2411 htab_t cache = htab_create (10, hash_scev_info, eq_scev_info, del_scev_info); local
2445 htab_t cache = htab_create (10, hash_scev_info, eq_scev_info, del_scev_info); local
[all...]
/freebsd-11-stable/contrib/binutils/bfd/doc/
H A DMakefile.am6 bfdt.texi cache.texi coffcode.texi \
21 IPROTOS = cache.ip libbfd.ip reloc.ip init.ip archures.ip coffcode.ip
29 $(srcdir)/../cache.c $(srcdir)/../coffcode.h \
46 SRCIPROT = $(srcdir)/../cache.c $(srcdir)/../libbfd.c \
103 cache.texi: chew.c $(srcdir)/../cache.c $(srcdir)/doc.str
105 ./$(MKDOC) -f $(srcdir)/doc.str < $(srcdir)/../cache.c >cache.tmp
106 $(SHELL) $(srcdir)/../../move-if-change cache.tmp cache
[all...]
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dline-map.c40 set->cache = 0;
154 set->cache = set->used++;
270 mn = set->cache;
295 set->cache = mn;
/freebsd-11-stable/sys/sparc64/include/
H A Dpcpu.h34 #include <machine/cache.h>
/freebsd-11-stable/sys/contrib/ck/include/
H A Dck_hp.h67 void *cache[CK_HP_CACHE]; member in struct:ck_hp_record
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DUserIDResolver.h20 /// queries. The cache is internally protected by a mutex, so concurrent queries
46 Get(id_t id, Map &cache,
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.h61 void AllocatorSwallowThreadLocalCache(AllocatorCache *cache);
/freebsd-11-stable/usr.bin/svn/lib/libsvn_fs_x/
H A DMakefile27 rep-cache.c \
/freebsd-11-stable/usr.bin/svn/lib/libsvn_fs_fs/
H A DMakefile24 rep-cache.c \
/freebsd-11-stable/contrib/unbound/contrib/
H A Dunbound_munin_39 # unbound_munin_hits - base volume, cache hits, unwanted traffic
81 unbound_munin_hits - base volume, cache hits, unwanted traffic
114 ABBREV="-e s/total/t/ -e s/thread/t/ -e s/num/n/ -e s/query/q/ -e s/answer/a/ -e s/unwanted/u/ -e s/requestlist/ql/ -e s/type/t/ -e s/class/c/ -e s/opcode/o/ -e s/rcode/r/ -e s/edns/e/ -e s/mem/m/ -e s/cache/c/ -e s/mod/m/"
231 echo "graph_title Unbound DNS traffic and cache hits"
241 p_config "total.num.cachehits" "cache hits" "ABSOLUTE"
242 p_config "total.num.prefetch" "cache prefetch" "ABSOLUTE"
264 echo "graph_info The queries that did not hit the cache and need recursion service take up space in the requestlist. If there are too many queries, first queries get overwritten, and at last resort dropped."
271 p_config "mem.cache.rrset" "RRset cache memory" "GAUGE"
272 p_config "mem.cache
[all...]
/freebsd-11-stable/sys/cam/scsi/
H A Dscsi_enc_ses.c188 enc_cache_t *cache; member in struct:ses_iterator
410 ses_iter_init(enc_softc_t *enc, enc_cache_t *cache, struct ses_iterator *iter) argument
413 iter->cache = cache;
432 ses_cache = iter->cache->private;
439 if (iter->global_element_index >= (int)iter->cache->nelms - 1) {
479 return (&iter->cache->elm_map[iter->global_element_index]);
527 return (&iter->cache->elm_map[iter->global_element_index]);
556 ses_cache_free_elm_addlstatus(enc_softc_t *enc, enc_cache_t *cache) argument
564 ses_cache = cache
587 ses_cache_free_elm_descs(enc_softc_t *enc, enc_cache_t *cache) argument
617 ses_cache_free_status(enc_softc_t *enc, enc_cache_t *cache) argument
634 ses_cache_free_elm_map(enc_softc_t *enc, enc_cache_t *cache) argument
657 ses_cache_free(enc_softc_t *enc, enc_cache_t *cache) argument
[all...]

Completed in 168 milliseconds

1234567891011>>