| /onnv/onnv-gate/usr/src/uts/intel/io/acpica/utilities/ |
| utcache.c | 3 * Module Name: utcache - local cache allocation routines 130 * PARAMETERS: CacheName - Ascii name for the cache 132 * MaxDepth - Maximum depth of the cache (in objects) 133 * ReturnCache - Where the new cache object is returned 137 * DESCRIPTION: Create a cache object 148 ACPI_MEMORY_LIST *Cache; 159 /* Create the cache object */ 161 Cache = AcpiOsAllocate (sizeof (ACPI_MEMORY_LIST)); 162 if (!Cache) 167 /* Populate the cache object and return it * [all...] |
| uttrack.c | 164 * PARAMETERS: CacheName - Ascii name for the cache 166 * ReturnCache - Where the new cache object is returned 180 ACPI_MEMORY_LIST *Cache; 183 Cache = AcpiOsAllocate (sizeof (ACPI_MEMORY_LIST)); 184 if (!Cache) 189 ACPI_MEMSET (Cache, 0, sizeof (ACPI_MEMORY_LIST)); 191 Cache->ListName = ListName; 192 Cache->ObjectSize = ObjectSize; 194 *ReturnCache = Cache; 666 /* Ignore allocated objects that are in a cache */ [all...] |
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/ |
| ParseUtils.pm | 621 # Pod::Cache 626 package Pod::Cache; 628 =head2 Pod::Cache 630 B<Pod::Cache> holds information about a set of POD documents, 636 =item Pod::Cache-E<gt>new() 638 Create a new cache object. This object can hold an arbitrary number of 639 POD documents of class Pod::Cache::Item. 651 =item $cache-E<gt>item() 653 Add a new item to the cache. Without arguments, this method returns a 654 list of all cache elements [all...] |
| /onnv/onnv-gate/usr/src/cmd/fm/modules/common/eversholt/ |
| iexpr.c | 26 * iexpr.c -- instanced expression cache module 28 * this module provides a cache of fully instantized expressions. 51 /* the cache is a hash table of these structs */ 56 } *Cache[IEXPRSZ]; 64 Niexpr = stats_new_counter("iexpr.niexpr", "iexpr cache entries", 1); 230 * iexpr -- find instanced expr in cache, or add it if necessary 236 struct iexpr *bucketp = Cache[idx]; 239 /* search cache */ 248 /* allocate new cache entry */ 253 Cache[idx] = cp [all...] |
| /onnv/onnv-gate/usr/src/cmd/lvm/rpc.metamedd/ |
| med_hash.h | 63 } Cache; 69 extern int init_cache(Cache **cp, int hsz, int bsz, 73 extern int add_cache(Cache *cp, Item *itemp); 74 extern Item *lookup_cache(Cache *cp, void *datap, int datalen); 75 extern Item *first_item(Cache *cp, int *bidx, int *iidx); 76 extern Item *next_item(Cache *cp, int *bidx, int *iidx); 77 extern void des_cache(Cache **cpp); 78 extern int del_cache(Cache *cp, Item *itemp); 79 extern void cache_stat(Cache *cp, char *tag); 80 extern void pr_cache(Cache *cp, char *tag [all...] |
| /onnv/onnv-gate/usr/src/cmd/sgs/librtld/common/ |
| _librtld.h | 42 * Define a cache structure that is used to retain all elf section information. 44 typedef struct cache { struct 51 } Cache; 89 extern int count_reloc(Cache *, Cache *, Rt_map *, int, Addr, Xword *, 92 extern int syminfo(Cache *, Alist **); 94 extern int update_dynamic(Cache *, Cache *, Rt_map *, int, Addr, Off, 96 extern void update_reloc(Cache *, Cache *, Cache *, const char * [all...] |
| /onnv/onnv-gate/usr/src/lib/libpkg/common/ |
| nhash.h | 60 } Cache; 66 extern int init_cache(Cache **cp, int hsz, int bsz, 68 extern int add_cache(Cache *cp, Item *itemp); 69 extern Item *lookup_cache(Cache *cp, void *datap, int datalen);
|
| /onnv/onnv-gate/usr/src/cmd/sgs/elfdump/common/ |
| _elfdump.h | 104 typedef struct cache { struct 110 } Cache; 119 extern const Cache cache_init; 231 Cache **, size_t *); 233 Cache **, size_t *); 235 extern void fake_shdr_cache_free32(Cache *, size_t); 236 extern void fake_shdr_cache_free64(Cache *, size_t);
|
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Tie/ |
| File.pm | 41 # default is the larger of the default cache size and the 59 $opts{cache} = Tie::File::Cache->new($opts{memory}); 161 # check the record cache 162 { my $cached = $self->{cache}->lookup($n); 189 $self->{cache}->insert($n, $rec) if defined $rec && not $self->{flushing}; 208 # Note we have to do this before we alter the cache 209 # 20020324 Wait, but this DOES alter the cache. TODO BUG? 223 $self->{cache}->update($n, $rec); 228 $self->{cache}->remove($n) [all...] |
| /onnv/onnv-gate/usr/src/cmd/sgs/pvs/common/ |
| pvs.c | 78 typedef struct cache { struct 82 } Cache; 473 sym_local(Cache *cache, Cache *csym, const char *file) 481 strs = (char *)cache[shdr.sh_link].c_data->d_buf; 553 gvers_need(Cache *cache, Cache *need, const Gver_sym_data *vsdata, 578 strs = (char *)cache[shdr.sh_link].c_data->d_buf 1010 Cache *cache, *_cache; local [all...] |
| /onnv/onnv-gate/usr/src/uts/intel/sys/acpi/ |
| acobject.h | 549 union acpi_operand_object *Next; /* Link for object cache and internal lists*/ 586 ACPI_OBJECT_CACHE_LIST Cache;
|