HomeSort by relevance Sort by last modified time
    Searched full:cache (Results 101 - 125 of 2595) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/quake/quake/src/QW/client/
d_surf.c 27 qboolean r_cache_thrash; // set if surface cache is thrashing
86 // Con_Printf ("%ik surface cache\n", size/1024);
135 Sys_Error ("D_SCAlloc: bad cache width %d\n", width);
138 Sys_Error ("D_SCAlloc: bad cache size %d\n", size);
147 Sys_Error ("D_SCAlloc: %i > cache size",size);
269 surfcache_t *cache; local
272 // if the surface is animating or flashing, flush the cache
281 // see if the cache holds apropriate data
283 cache = surface->cachespots[miplevel];
285 if (cache && !cache->dlight && surface->dlightframe != r_framecount
    [all...]
  /external/quake/quake/src/WinQuake/
d_surf.cpp 27 qboolean r_cache_thrash; // set if surface cache is thrashing
87 Con_Printf ("%ik surface cache\n", size/1024);
136 Sys_Error ("D_SCAlloc: bad cache width %d\n", width);
139 Sys_Error ("D_SCAlloc: bad cache size %d\n", size);
144 Sys_Error ("D_SCAlloc: %i > cache size",size);
266 surfcache_t *cache; local
269 // if the surface is animating or flashing, flush the cache
278 // see if the cache holds apropriate data
280 cache = surface->cachespots[miplevel];
282 if (cache && !cache->dlight && surface->dlightframe != r_framecount
    [all...]
  /external/opencore/oscl/oscl/osclio/src/
oscl_file_cache.cpp 47 //Called to open the cache for a newly opened file.
50 //should not be called with zero-size cache.
67 // allocate memory for cache
82 //initialise the cache variables
95 //flush any cache updates
98 //free the memory for cache buffer
108 * Reads data from the file cache buffer and copies into
148 //pull data out of the cache until we run out, then re-fill the cache
163 //pull out either all data in cache, or number of bytes required
    [all...]
oscl_file_cache.h 90 //Size of the cache buffer, set by the Open call.
93 //constant pointer to cache buffer
97 //cache
100 //current working position (virtual file pointer) in the cache.
101 //units: 0-based byte offset from beginning of cache
104 //end of valid data in the cache.
105 //units: 0-based byte offset from beginning of cache
108 //variables to track the range of data in the cache that
111 //units: 0-based byte offset from beginning of cache
  /external/iproute2/doc/
rtstat.sgml 10 Here is some code for monitoring the route cache. For systems handling high
11 network load, servers, routers, firewalls etc the route cache and its garbage
16 from route cache process into
18 in a vmstat or iostat manner. The ratio between cache hits and misses gives
  /external/kernel-headers/original/asm-x86/
cache.h 4 /* L1 cache line size */
  /external/skia/src/core/
SkDrawProcs.h 18 Proc init(const SkDraw* draw, SkBlitter* blitter, SkGlyphCache* cache);
  /external/sonivox/docs/
EAS_Library_Integration_Guide.odt 
  /external/webkit/LayoutTests/http/tests/appcache/
manifest-parsing.html 3 <p>Test application cache manifest parsing.</p>
39 // Load a resource that was in UNKNOWN section - in other words, that is not in cache.
40 if (canLoad("resources/not-in-cache.txt")) {
41 log("Loaded 'not-in-cache.txt'");
top-frame-1.html 3 <p>Test that a subframe without manifest doesn't pick an application cache from parent frame
4 (as long as no relevant cache contains its resource).</p>
5 <p>Techically, the check is that iframe subresources that are not in top frame cache are loaded
6 anyway, so it can also pass if the UA fails to reject loads for cache misses.</p>
  /external/webkit/LayoutTests/http/tests/appcache/resources/
subframe-2.html 8 // Loading should fail, because simple.txt is not in cache manifest.
  /external/webkit/LayoutTests/platform/android-jsc/http/tests/appcache/
local-content-expected.txt 2 Test that documents loaded from application cache don't get access to local resources accidentally.
  /external/webkit/LayoutTests/platform/android-v8/http/tests/appcache/
local-content-expected.txt 2 Test that documents loaded from application cache don't get access to local resources accidentally.
  /external/webkit/WebCore/loader/appcache/
ApplicationCacheGroup.h 78 bool cacheIsBeingUpdated(const ApplicationCache* cache) const { return cache == m_cacheBeingUpdated; }
100 // For normal resource loading, WebKit client is asked about each resource individually. Since application cache does not belong to any particular document,
101 // the existing client callback cannot be used, so assume that any client that enables application cache also wants it to use credential storage.
129 // This is the newest complete cache in the group.
132 // All complete caches in this cache group.
135 // The cache being updated (if any). Note that cache updating does not immediately create a new
144 // These are all the document loaders that are associated with a cache in this group.
147 // The URLs and types of pending cache entries
    [all...]
  /external/webkit/WebKit/chromium/public/
WebCache.h 38 // An interface to query and configure WebKit's resource cache.
51 // A struct mirroring WebCore::Cache::TypeStatistic.
59 // A struct mirroring WebCore::Cache::Statistics.
68 // Sets the capacities of the resource cache, evicting objects as necessary.
73 // Clears the cache (as much as possible; some resources may not be
77 // Gets the usage statistics from the resource cache.
80 // Get usage stats about the resource cache.
  /frameworks/base/core/tests/coretests/src/android/view/
BigCacheTest.java 29 * Builds the drawing cache of two Views, one smaller than the maximum cache size,
30 * one larger than the maximum cache size. The latter should always have a null
31 * drawing cache.
72 final Bitmap[] cache = new Bitmap[1]; local
78 cache[0] = view.getDrawingCache();
82 return cache[0];
  /external/v8/src/
compilation-cache.h 35 // The compilation cache keeps function boilerplates for compiled
41 // string. Returns an empty handle if the cache doesn't contain a
49 // given context. Returns an empty handle if the cache doesn't
56 // is in cache, otherwise an empty handle.
78 // Clear the cache - also used to initialize the cache at startup.
84 // Notify the cache that a mark-sweep garbage collection is about to
85 // take place. This is used to retire entries from the cache to
89 // Enable/disable compilation cache. Used by debugger to disable compilation
90 // cache during debugging to make sure new scripts are always compiled
    [all...]
  /external/bluetooth/glib/glib/
gcache.h 53 void g_cache_destroy (GCache *cache);
54 gpointer g_cache_insert (GCache *cache,
56 void g_cache_remove (GCache *cache,
58 void g_cache_key_foreach (GCache *cache,
62 void g_cache_value_foreach (GCache *cache,
  /external/skia/include/images/
SkImageRef_GlobalPool.h 36 /** Return the amount specified as the budget for the cache (in bytes).
40 /** Set a new budget value for the cache.
44 /** Return how much ram is currently in use by the global cache.
48 /** Free up (approximately) enough such that the amount used by the cache
52 chunky nature of the cache, the resulting usage may be < the requested
  /dalvik/libcore/luni/src/main/java/java/net/
AddressCache.java 26 * Implements caching for {@code InetAddress}. We use a unified cache for both positive and negative
27 * cache entries.
31 * When the cache contains more entries than this, we start dropping the oldest ones.
39 // Default time-to-live for positive cache entries. 600 seconds (10 minutes).
41 // Default time-to-live for negative cache entries. 10 seconds.
44 // Failed lookups are represented in the cache my mappings to this empty array.
47 // The actual cache.
51 // The addresses. May be the empty array for a negative cache entry.
89 // Do we have a valid cache entry?
105 String propertyName = isPositive ? "networkaddress.cache.ttl" : "networkaddress.cache.negative.ttl"
    [all...]
  /external/openssl/crypto/x509v3/
pcy_map.c 78 static X509_POLICY_REF *policy_map_find(X509_POLICY_CACHE *cache, ASN1_OBJECT *id)
84 idx = sk_X509_POLICY_REF_find(cache->maps, &tmp);
87 return sk_X509_POLICY_REF_value(cache->maps, idx);
90 /* Set policy mapping entries in cache.
99 X509_POLICY_CACHE *cache = x->policy_cache; local
107 cache->maps = sk_X509_POLICY_REF_new(ref_cmp);
120 if (policy_map_find(cache, map->subjectDomainPolicy) != NULL)
127 data = policy_cache_find_data(cache, map->issuerDomainPolicy);
129 if (!data && !cache->anyPolicy)
136 cache->anyPolicy->flag
    [all...]
  /dalvik/vm/
AtomicCache.h 17 * Mutex-free cache for key1+key2=value.
29 * One entry in the cache. We store two keys (e.g. the classes that are
42 * One cache.
44 * Thought: we might be able to save a few cycles by storing the cache
54 /* cache stats; note we don't guarantee atomic increments for these */
55 int trivial; /* cache access not required */
57 int hits; /* found entry in cache */
63 * Do a cache lookup. We need to be able to read and write entries
68 * to just ignore the cache and do the full computation.
135 * Compute the result and update the cache. We really want this
    [all...]
  /external/e2fsprogs/misc/
blkid.c 45 "\t-g\tgarbage collect the blkid cache\n"
50 "\t-w\twrite cache to different file (/dev/null = no write)\n"
126 blkid_cache cache = NULL; local
211 if (blkid_get_cache(&cache, read) < 0)
216 blkid_gc_cache(cache);
225 /* Load any additional devices not in the cache */
227 blkid_get_dev(cache, devices[i], BLKID_DEV_NORMAL);
229 if ((dev = blkid_find_dev_with_tag(cache, search_type,
239 blkid_probe_all(cache);
241 iter = blkid_dev_iterate_begin(cache);
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/provider/cert/
Cache.java 36 * objects they are returned from the cache, if not - newly generated
37 * objects can be saved in the cache.<br>
45 * determine whether object to be generated is in the cache or not.
65 * If it is so - the cached object is returned from the cache,
66 * if not - new object should be generated and saved in the cache.<br>
71 public class Cache {
92 // size of the cache
103 // to the object cached at cache[N]
110 private final Object[] cache; field in class:Cache
112 // This array is used to speed up the process of the search in the cache
    [all...]
  /frameworks/base/core/java/android/webkit/
CacheManager.java 40 * The class CacheManager provides the persistent cache of content that is
42 * utilizes the relevant cache headers to determine if the content should be
44 * this component and if they can not be resolved by the cache, the HTTP headers
46 * class also manages the cache size.
50 private static final String LOGTAG = "cache";
56 private static final String NO_CACHE = "no-cache";
58 private static final String MANIFEST_MIME = "text/cache-manifest";
63 // Limit the maximum cache file size to half of the normal capacity
73 // trim the cache on a timer base too. endCacheTransaction() is called on a
81 // Flag to clear the cache when the CacheManager is initialize
    [all...]

Completed in 100 milliseconds

1 2 3 45 6 7 8 91011>>