| /src/external/gpl3/gcc/dist/libobjc/ |
| hash.c | 35 #define FULLNESS(cache) \ 36 ((((cache)->size * 75) / 100) <= (cache)->used) 37 #define EXPANSION(cache) \ 38 ((cache)->size * 2) 44 cache_ptr cache; local 50 /* Allocate the cache structure. calloc insures its initialization 52 cache = (cache_ptr) objc_calloc (1, sizeof (struct cache)); 53 assert (cache); [all...] |
| /src/external/gpl3/gcc.old/dist/libobjc/ |
| hash.c | 35 #define FULLNESS(cache) \ 36 ((((cache)->size * 75) / 100) <= (cache)->used) 37 #define EXPANSION(cache) \ 38 ((cache)->size * 2) 44 cache_ptr cache; local 50 /* Allocate the cache structure. calloc insures its initialization 52 cache = (cache_ptr) objc_calloc (1, sizeof (struct cache)); 53 assert (cache); [all...] |
| /src/external/lgpl3/mpfr/dist/src/ |
| cache.c | 1 /* mpfr_cache -- cache interface for multiple-precision constants in MPFR. 27 implement a cache mechanism for that constant */ 29 mpfr_init_cache (mpfr_cache_t cache, int (*func)(mpfr_ptr, mpfr_rnd_t)) 31 MPFR_PREC (cache->x) = 0; /* Invalid prec to detect that the cache is not 33 cache->func = func; 38 mpfr_clear_cache (mpfr_cache_t cache) 40 if (MPFR_UNLIKELY (MPFR_PREC (cache->x) != 0)) 42 /* Get the cache in read-write mode */ 43 MPFR_LOCK_WRITE(cache->lock) [all...] |
| /src/usr.bin/make/unit-tests/ |
| varname-dot-objdir.exp | 1 : purge-cache was reached.
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_read_disk_set_standard_lookup.c | 71 } cache[name_cache_size]; member in struct:name_cache 82 * a simple cache to accelerate such lookups---into the archive_read_disk 101 "Can't allocate uname/gname lookup cache"); 123 struct name_cache *cache = (struct name_cache *)data; local 126 if (cache != NULL) { 127 for (i = 0; i < cache->size; i++) { 128 if (cache->cache[i].name != NULL && 129 cache->cache[i].name != NO_NAME [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/ |
| cache.h | 1 /* $NetBSD: cache.h,v 1.1 2024/02/18 20:57:35 christos Exp $ */ 23 /*! \file dns/cache.h 25 * Defines dns_cache_t, the cache object. 28 *\li A cache object contains DNS data of a single class. 30 * views, each with a different class and its own cache. 67 * Create a new DNS cache. 69 * dns_cache_create2() will create a named cache. 71 * dns_cache_create3() will create a named cache using two separate memory 72 * contexts, one for cache data which can be cleaned and a separate one for 77 * specifies an empty cache name and a single memory context [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| cache.c | 1 /* $NetBSD: cache.c,v 1.1 2024/02/18 20:57:30 christos Exp $ */ 31 #include <dns/cache.h> 56 #define VALID_CACHE(cache) ISC_MAGIC_VALID(cache, CACHE_MAGIC) 77 * cache cleaning. 98 * Accesses to a cache cleaner object are synchronized through 99 * task/event serialization, or locked from the cache object. 110 dns_cache_t *cache; member in struct:cache_cleaner 120 bool overmem; /*% The cache is in an overmem state. 126 * The actual cache object 192 dns_cache_t *cache; local 414 dns_cache_t *cache; local 904 dns_cache_t *cache = arg; local 1035 dns_cache_t *cache = event->ev_arg; local [all...] |
| /src/external/mpl/bind/dist/lib/dns/include/dns/ |
| cache.h | 1 /* $NetBSD: cache.h,v 1.9 2025/01/26 16:25:26 christos Exp $ */ 22 /*! \file dns/cache.h 24 * Defines dns_cache_t, the cache object. 27 *\li A cache object contains DNS data of a single class. 29 * views, each with a different class and its own cache. 80 * Create a new DNS cache. 82 * dns_cache_create() will create a named cache (based on dns_rbtdb). 96 *\li '*cachep' is attached to the newly created cache 105 dns_cache_attachdb(dns_cache_t *cache, dns_db_t **dbp); 107 * Attach *dbp to the cache's database [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| tree-streamer.cc | 102 /* Helper for streamer_tree_cache_insert_1. Add T to CACHE->NODES at 106 streamer_tree_cache_add_to_node_array (struct streamer_tree_cache_d *cache, 110 if (cache->nodes.exists ()) 112 if (cache->nodes.length () == ix) 113 cache->nodes.safe_push (t); 115 cache->nodes[ix] = t; 117 if (cache->hashes.exists ()) 119 if (cache->hashes.length () == ix) 120 cache->hashes.safe_push (hash); 122 cache->hashes[ix] = hash 401 struct streamer_tree_cache_d *cache; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| tree-streamer.cc | 102 /* Helper for streamer_tree_cache_insert_1. Add T to CACHE->NODES at 106 streamer_tree_cache_add_to_node_array (struct streamer_tree_cache_d *cache, 110 if (cache->nodes.exists ()) 112 if (cache->nodes.length () == ix) 113 cache->nodes.safe_push (t); 115 cache->nodes[ix] = t; 117 if (cache->hashes.exists ()) 119 if (cache->hashes.length () == ix) 120 cache->hashes.safe_push (hash); 122 cache->hashes[ix] = hash 401 struct streamer_tree_cache_d *cache; local [all...] |
| /src/external/gpl3/gdb/dist/sim/frv/ |
| cache.c | 1 /* frv cache model. 28 #include "cache.h" 33 frv_cache_init (SIM_CPU *cpu, FRV_CACHE *cache) 45 if (cache->configured_sets == 0) 46 cache->configured_sets = 512; 47 if (cache->configured_ways == 0) 48 cache->configured_ways = 2; 49 if (cache->line_size == 0) 50 cache->line_size = 32; 51 if (cache->memory_latency == 0 [all...] |
| /src/external/gpl3/gdb.old/dist/sim/frv/ |
| cache.c | 1 /* frv cache model. 28 #include "cache.h" 33 frv_cache_init (SIM_CPU *cpu, FRV_CACHE *cache) 45 if (cache->configured_sets == 0) 46 cache->configured_sets = 512; 47 if (cache->configured_ways == 0) 48 cache->configured_ways = 2; 49 if (cache->line_size == 0) 50 cache->line_size = 32; 51 if (cache->memory_latency == 0 [all...] |
| /src/external/gpl3/gdb/dist/gdb/dwarf2/ |
| frame-tailcall.c | 70 const struct tailcall_cache *cache = (const struct tailcall_cache *) arg; local 72 return htab_hash_pointer (cache->next_bottom_frame); 93 struct tailcall_cache *cache = XCNEW (struct tailcall_cache); local 96 cache->next_bottom_frame = next_bottom_frame.get (); 97 cache->refc = 1; 99 slot = htab_find_slot (cache_htab, cache, INSERT); 101 *slot = cache; 103 return cache; 106 /* Create new reference to CACHE. */ 109 cache_ref (struct tailcall_cache *cache) 149 struct tailcall_cache *cache; local 215 struct tailcall_cache *cache = (struct tailcall_cache *) *this_cache; local 270 struct tailcall_cache *cache = (struct tailcall_cache *) *tailcall_cachep; local 299 struct tailcall_cache *cache = (struct tailcall_cache *) *this_cache; local 322 struct tailcall_cache *cache; local 374 struct tailcall_cache *cache; local 451 struct tailcall_cache *cache = (struct tailcall_cache *) this_cache; local 463 struct tailcall_cache *cache = (struct tailcall_cache *) *this_prologue_cache; local [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/dwarf2/ |
| frame-tailcall.c | 71 const struct tailcall_cache *cache = (const struct tailcall_cache *) arg; local 73 return htab_hash_pointer (cache->next_bottom_frame); 94 struct tailcall_cache *cache = XCNEW (struct tailcall_cache); local 97 cache->next_bottom_frame = next_bottom_frame.get (); 98 cache->refc = 1; 100 slot = htab_find_slot (cache_htab, cache, INSERT); 102 *slot = cache; 104 return cache; 107 /* Create new reference to CACHE. */ 110 cache_ref (struct tailcall_cache *cache) 150 struct tailcall_cache *cache; local 216 struct tailcall_cache *cache = (struct tailcall_cache *) *this_cache; local 271 struct tailcall_cache *cache = (struct tailcall_cache *) *tailcall_cachep; local 300 struct tailcall_cache *cache = (struct tailcall_cache *) *this_cache; local 323 struct tailcall_cache *cache; local 375 struct tailcall_cache *cache; local 452 struct tailcall_cache *cache = (struct tailcall_cache *) this_cache; local 464 struct tailcall_cache *cache = (struct tailcall_cache *) *this_prologue_cache; local [all...] |
| /src/external/apache2/llvm/autoconf/ |
| run-autoconf | 4 rm -rf autom4te.cache autoconf/autom4te.cache include/llvm/Config/config.h.in~
|
| /src/crypto/external/apache2/openssl/dist/crypto/x509/ |
| pcy_cache.c | 22 * Set cache entry according to CertificatePolicies extension. Note: this 30 X509_POLICY_CACHE *cache = x->policy_cache; local 36 cache->data = sk_X509_POLICY_DATA_new(policy_data_cmp); 37 if (cache->data == NULL) { 52 if (cache->anyPolicy) { 56 cache->anyPolicy = data; 57 } else if (sk_X509_POLICY_DATA_find(cache->data, data) >= 0) { 60 } else if (!sk_X509_POLICY_DATA_push(cache->data, data)) { 67 sk_X509_POLICY_DATA_sort(cache->data); 77 sk_X509_POLICY_DATA_pop_free(cache->data, ossl_policy_data_free) 85 X509_POLICY_CACHE *cache; local [all...] |
| /src/crypto/external/bsd/openssl/dist/crypto/x509/ |
| pcy_cache.c | 22 * Set cache entry according to CertificatePolicies extension. Note: this 30 X509_POLICY_CACHE *cache = x->policy_cache; local 36 cache->data = sk_X509_POLICY_DATA_new(policy_data_cmp); 37 if (cache->data == NULL) { 52 if (cache->anyPolicy) { 56 cache->anyPolicy = data; 57 } else if (sk_X509_POLICY_DATA_find(cache->data, data) >=0 ) { 60 } else if (!sk_X509_POLICY_DATA_push(cache->data, data)) { 75 sk_X509_POLICY_DATA_pop_free(cache->data, ossl_policy_data_free); 76 cache->data = NULL 83 X509_POLICY_CACHE *cache; local [all...] |
| /src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/ |
| pcy_cache.c | 22 * Set cache entry according to CertificatePolicies extension. Note: this 30 X509_POLICY_CACHE *cache = x->policy_cache; local 36 cache->data = sk_X509_POLICY_DATA_new(policy_data_cmp); 37 if (cache->data == NULL) { 52 if (cache->anyPolicy) { 56 cache->anyPolicy = data; 57 } else if (sk_X509_POLICY_DATA_find(cache->data, data) >=0 ) { 60 } else if (!sk_X509_POLICY_DATA_push(cache->data, data)) { 75 sk_X509_POLICY_DATA_pop_free(cache->data, policy_data_free); 76 cache->data = NULL 83 X509_POLICY_CACHE *cache; local [all...] |
| /src/external/ibm-public/postfix/dist/src/util/ |
| ctable.c | 7 /* cache manager 17 /* const void *ctable_locate(cache, key) 18 /* CTABLE *cache; 21 /* const void *ctable_refresh(cache, key) 22 /* CTABLE *cache; 25 /* const void *ctable_newcontext(cache, context) 26 /* CTABLE *cache; 29 /* void ctable_free(cache) 30 /* CTABLE *cache; 32 /* void ctable_walk(cache, action 124 CTABLE *cache = (CTABLE *) mymalloc(sizeof(CTABLE)); local 293 CTABLE *cache; local [all...] |
| /src/external/gpl3/gdb/dist/gdb/ |
| sentinel-frame.c | 34 struct frame_unwind_cache *cache = local 37 cache->regcache = regcache; 38 return cache; 41 /* Here the register value is taken direct from the register cache. */ 48 struct frame_unwind_cache *cache local 55 value = cache->regcache->cooked_read_value (regnum); 75 struct frame_unwind_cache *cache local 78 return cache->regcache->arch ();
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| sentinel-frame.c | 34 struct frame_unwind_cache *cache = local 37 cache->regcache = regcache; 38 return cache; 41 /* Here the register value is taken direct from the register cache. */ 48 struct frame_unwind_cache *cache local 55 value = cache->regcache->cooked_read_value (regnum); 75 struct frame_unwind_cache *cache local 78 return cache->regcache->arch ();
|
| /src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/arm/ |
| juno-r1.dts | 93 i-cache-size = <0xc000>; 94 i-cache-line-size = <64>; 95 i-cache-sets = <256>; 96 d-cache-size = <0x8000>; 97 d-cache-line-size = <64>; 98 d-cache-sets = <256>; 99 next-level-cache = <&A57_L2>; 110 i-cache-size = <0xc000>; 111 i-cache-line-size = <64>; 112 i-cache-sets = <256> [all...] |
| juno-r2.dts | 93 i-cache-size = <0xc000>; 94 i-cache-line-size = <64>; 95 i-cache-sets = <256>; 96 d-cache-size = <0x8000>; 97 d-cache-line-size = <64>; 98 d-cache-sets = <256>; 99 next-level-cache = <&A72_L2>; 111 i-cache-size = <0xc000>; 112 i-cache-line-size = <64>; 113 i-cache-sets = <256> [all...] |
| juno.dts | 92 i-cache-size = <0xc000>; 93 i-cache-line-size = <64>; 94 i-cache-sets = <256>; 95 d-cache-size = <0x8000>; 96 d-cache-line-size = <64>; 97 d-cache-sets = <256>; 98 next-level-cache = <&A57_L2>; 110 i-cache-size = <0xc000>; 111 i-cache-line-size = <64>; 112 i-cache-sets = <256> [all...] |
| /src/external/cddl/osnet/lib/libumem/ |
| umem.c | 110 umem_cache_t *cache = malloc(sizeof(umem_cache_t)); local 111 if(cache == NULL) 114 cache->constructor = constructor; 115 cache->destructor = destructor; 116 cache->callback_data = callback_data; 117 cache->bufsize = bufsize; 119 return cache; 125 void *umem_cache_alloc(umem_cache_t *cache, int flags) 127 void *buf = malloc(cache->bufsize); 137 if(cache->constructor != NULL) [all...] |