| /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/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...] |
| syms.c | 44 update_sym(Cache *cache, Cache *_cache, Addr edata, Half endx, Addr addr) 58 strs = (char *)cache[shdr->sh_link].c_data->d_buf; 84 syminfo(Cache *_cache, Alist **nodirect)
|
| relocate.c | 40 * cache the processing decisions deduced, and these will be applied during 54 count_reloc(Cache *cache, Cache *_cache, Rt_map *lmp, int flags, Addr addr, 63 Cache *__cache; 84 __cache = &cache[shdr->sh_link]; 87 __cache = &cache[shdr->sh_link]; 328 * an application cache. 418 update_reloc(Cache *ocache, Cache *icache, Cache *_icache, const char *name [all...] |
| dynamic.c | 41 update_dynamic(Cache *cache, Cache *_cache, Rt_map *lmp, int flags, 47 Cache *__cache; 54 __cache = &cache[_cache->c_shdr->sh_link];
|
| /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...] |
| med_hash.c | 63 Cache **cp, 74 if ((*cp = (Cache *) Malloc(sizeof (**cp))) == NULL) { 75 (void) fprintf(stderr, "Malloc(Cache **cp)"); 118 add_cache(Cache *cp, Item *itemp) 170 lookup_cache(Cache *cp, void *datap, int datalen) 189 first_item(Cache *cp, int *bidx, int *iidx) 214 next_item(Cache *cp, int *bidx, int *iidx) 249 des_cache(Cache **cpp) 251 Cache *cp = *cpp; 282 del_cache(Cache *cp, Item *itemp [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);
|
| ncgrpw.c | 56 static Cache *pwnam_cache = (Cache *) NULL; 57 static Cache *grnam_cache = (Cache *) NULL; 58 static Cache *pwuid_cache = (Cache *) NULL; 59 static Cache *grgid_cache = (Cache *) NULL; 76 * If there's a grnam cache, then update it with this new 121 /* Attempt to initialize the grname cache. * [all...] |
| nhash.c | 76 init_cache(Cache **cp, int hsz, int bsz, 79 if ((*cp = (Cache *) malloc(sizeof (**cp))) == NULL) { 80 (void) fprintf(stderr, pkg_gt("malloc(Cache **cp)")); 109 add_cache(Cache *cp, Item *itemp) 161 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);
|
| elfdump.c | 103 Cache *cache; /* Pointer to cache entry for VERSYM */ member in struct:__anon4 118 Cache *cache; /* Cache of all section headers */ member in struct:__anon5 120 Word shnum; /* # of sections in cache */ 121 Cache *seccache; /* Cache of symbol table section hdr */ 194 string(Cache *refsec, Word ndx, Cache *strsec, const char *file, Word name 3869 Cache *cache, *_cache; local 4211 Cache *cache; local [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/uts/intel/sys/acpi/ |
| acpiosxf.h | 288 * Memory/Object Cache 299 ACPI_CACHE_T *Cache); 303 ACPI_CACHE_T *Cache); 307 ACPI_CACHE_T *Cache); 311 ACPI_CACHE_T *Cache,
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWiir/ |
| depend | 50 P SUNWscmu Sun StorageTek Availability Suite Storage Cache Management (usr)
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWrdcr/ |
| depend | 50 P SUNWscmu Sun StorageTek Availability Suite Storage Cache Management (usr)
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWscmu/ |
| depend | 50 P SUNWscmr Sun StorageTek Availability Suite Storage Cache Management (root)
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWspsvr/ |
| depend | 50 P SUNWscmu Sun StorageTek Availability Suite Storage Cache Management (usr)
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWspsvu/ |
| depend | 50 P SUNWscmu Sun StorageTek Availability Suite Storage Cache Management (usr)
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWiiu/ |
| depend | 53 P SUNWscmu Sun StorageTek Availability Suite Storage Cache Management (usr)
|
| /onnv/onnv-gate/usr/src/pkgdefs/SUNWrdcu/ |
| depend | 51 P SUNWscmu Sun StorageTek Availability Suite Storage Cache Management (usr)
|
| /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ |
| utf8_heavy.pl | 9 my %Cache; 36 my $file; ## file to load data from, and also part of the %Cache key. 147 ## If we have, return the cached results. The cache key is the 150 if ($Cache{$file} and ref($Cache{$file}) eq $class) 153 return $Cache{$class, $file}; 234 $Cache{$class, $file} = $SWASH;
|
| Benchmark.t | 527 # To check the cache we are poking where we don't belong, inside the namespace. 528 # The way benchmark is written We can't actually check whehter the cache is 532 my @before_keys = keys %Benchmark::Cache; 536 my @after5_keys = keys %Benchmark::Cache; 540 ok (!eq_array ([keys %Benchmark::Cache], \@after5_keys), "10 differs from 5"); 544 is_deeply ([keys %Benchmark::Cache], \@after5_keys, 548 is_deeply ([keys %Benchmark::Cache], \@before_keys, 549 "back to square 1 when we clear the cache again?");
|
| /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...] |