/third_party/python/Lib/test/test_importlib/ |
D | test_spec.py | 70 self.cached = self.util.cache_from_source(self.path) 85 self.assertIs(spec.cached, None) 96 self.assertIs(spec.cached, None) 108 self.assertIs(spec.cached, None) 120 self.assertIs(spec.cached, None) 136 cached=None, 147 cached=self.cached, 158 cached=None, 181 # cached 184 before = self.spec.cached [all …]
|
/third_party/flutter/skia/src/core/ |
D | SkTLS.h | 23 * returns its cached data, otherwise it returns nullptr. The CreateProc is 30 * Return the cached data that was returned by the CreateProc. This proc 32 * cached (per-thread), using the CreateProc as a key to look it up. 34 * When this thread, or Delete is called, the cached data is removed, and 35 * if a DeleteProc was specified, it is passed the pointer to the cached 42 * the cached data associated with this CreateProc. If no associated cached
|
/third_party/ltp/testcases/kernel/syscalls/readahead/ |
D | readahead02.c | 113 SAFE_FILE_LINES_SCANF(MEMINFO_FNAME, "Cached: %lu", &ret); in get_cached_size() 149 * @cached: returns cached kB from /proc/meminfo 154 unsigned long *cached) in read_testfile() argument 176 *cached = get_cached_size(); in read_testfile() 200 *cached = get_cached_size(); in read_testfile() 217 unsigned long cached_high, cached_low, cached, cached_ra; in test_readahead() local 233 &cached); in test_readahead() 242 &cached); in test_readahead() 243 if (cached > cached_low) in test_readahead() 244 cached = cached - cached_low; in test_readahead() [all …]
|
/third_party/libunwind/doc/ |
D | unw_flush_cache.man | 16 \-\- flush cached info 37 routine flushes all cached info as it 42 In addition, all info cached for 46 list is not tied to a code\-range and its cached value (if any) is 61 information cached on behalf of address space as
|
D | unw_flush_cache.tex | 8 …David Mosberger-Tang}{Programming Library}{unw\_flush\_cache}unw\_flush\_cache -- flush cached info 19 The \Func{unw\_flush\_cache}() routine flushes all cached info as it 21 target address-space \Var{as}. In addition, all info cached for 24 list is not tied to a code-range and its cached value (if any) is 32 information cached on behalf of address space \Var{as} is flushed.
|
/third_party/libwebsockets/READMEs/ |
D | README.lws_cache.md | 10 a complete set of cached items, earlier levels may be empty or contain a partial 28 Time To Live (TTL) tracking is also performed automatically, so cached items 102 internally earlier cache levels can evict cached items just at their level, but 130 own that is also cached in L1. 142 The lookup results themselves are cached in L1, any new key that matches the 143 wildcard lookup in any cached results, or any deletion of items with keys 144 matching the cached wildcard lookup invalidate the affected cached lookup
|
/third_party/node/deps/npm/node_modules/http-cache-semantics/ |
D | README.md | 69 …is 0.1 (10%), e.g. if a file hasn't been modified for 100 days, it'll be cached for 100*0.1 = 10 d… 81 This is the most important method. Use this method to check whether the cached response is still fr… 89 Returns updated, filtered set of response headers to return to clients receiving the cached respons… 103 Chances are you'll want to store the `CachePolicy` object along with the cached response. `obj = po… 107 When a cached response has expired, it can be made fresh again by making a request to the origin se… 113 …ered set of request headers to send to the origin server to check if the cached response can be re… 125 …ders updated from `revalidationResponse`. You can always replace the old cached `CachePolicy` with… 127 … valid 304 Not Modified response has been received, and you can reuse the old cached response body. 135 // Change the request to ask the origin server if the cached response can be used 148 // And proceed returning cached response as usual
|
/third_party/python/Tools/peg_generator/pegen/ |
D | tokenizer.py | 32 cached = True 40 cached = False 44 self.report(cached, False) 75 def report(self, cached: bool, back: bool) -> None: 78 elif cached:
|
/third_party/ntfs-3g/libntfs-3g/ |
D | security.c | 1476 static int compare(const struct CACHED_SECURID *cached, in compare() argument 1484 csize = (cached->variable ? in compare() 1486 + (((struct POSIX_SECURITY*)cached->variable)->acccnt in compare() 1487 + ((struct POSIX_SECURITY*)cached->variable)->defcnt) in compare() 1496 return ((cached->uid != item->uid) in compare() 1497 || (cached->gid != item->gid) in compare() 1498 || (cached->dmode != item->dmode) in compare() 1502 && memcmp(&((struct POSIX_SECURITY*)cached->variable)->acl, in compare() 1505 return ((cached->uid != item->uid) in compare() 1506 || (cached->gid != item->gid) in compare() [all …]
|
/third_party/libwebsockets/include/libwebsockets/ |
D | lws-async-dns.h | 61 * The reference count on the cached object is incremented for every callback 62 * that was called with the cached addrinfo results. 64 * The cached object can't be evicted until the reference count reaches zero... 74 * lws_async_dns_freeaddrinfo() - decrement refcount on cached addrinfo results 79 * cached object may be reaped subject to LRU rules.
|
D | lws-cache-ttl.h | 45 * Cached objects may be destroyed any time you go around the event loop, when 48 * to cached objects after returning to the event loop. 60 * \param source: optional payload for the cached item, NULL means caller will 72 * Adding or removing cache items may cause invalidation of cached queries. 111 * These serialized results are themselves cached in L1 cache (only) and the 117 * The cached results list expiry is set to the earliest expiry of any listed 118 * item. Additionally any cached results are invalidated on addition or 145 * Adding or removing cache items may cause invalidation of cached queries. 165 * Adding or removing cache items may cause invalidation of cached queries
|
/third_party/ltp/testcases/cve/ |
D | meltdown.c | 224 long cached, uncached, i; in set_cache_hit_threshold() local 226 for (cached = 0, i = 0; i < ESTIMATE_CYCLES; i++) in set_cache_hit_threshold() 227 cached += get_access_time(target_array); in set_cache_hit_threshold() 229 for (cached = 0, i = 0; i < ESTIMATE_CYCLES; i++) in set_cache_hit_threshold() 230 cached += get_access_time(target_array); in set_cache_hit_threshold() 237 cached /= ESTIMATE_CYCLES; in set_cache_hit_threshold() 240 cache_hit_threshold = mysqrt(cached * uncached); in set_cache_hit_threshold() 243 "access time: cached = %ld, uncached = %ld, threshold = %d", in set_cache_hit_threshold() 244 cached, uncached, cache_hit_threshold); in set_cache_hit_threshold()
|
/third_party/skia/src/gpu/ |
D | GrGpuResourcePriv.h | 20 * Sets a unique key for the resource. If the resource was previously cached as scratch it will 32 * If the resource is uncached make it cached. Has no effect on resources that are wrapped or 33 * already cached. 38 * If the resource is cached make it uncached. Has no effect on resources that are wrapped or 45 * budget and if not whether it is allowed to be cached.
|
/third_party/flutter/skia/src/gpu/ |
D | GrGpuResourcePriv.h | 22 * Sets a unique key for the resource. If the resource was previously cached as scratch it will 34 * If the resource is uncached make it cached. Has no effect on resources that are wrapped or 35 * already cached. 40 * If the resource is cached make it uncached. Has no effect on resources that are wrapped or 47 * budget and if not whether it is allowed to be cached.
|
/third_party/jsframework/runtime/main/util/ |
D | index.js | 12 * Create a cached version of a function. 13 * @param {Function} func - The function which to be created a cached version. 14 * @return {Function} The cached version of the function. 16 function cached(func) { function 29 export const camelize = cached(str => {
|
/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | grid_view_test.dart | 177 9, 10, 11, // col 3 (in cached area) 196 30, 31, 32, // col 10 (in cached area) 201 45, 46, 47, // col 15 (in cached area) 221 6, 7, 8, // col2 (in cached area) 226 21, 22, 23, // col 7 (in cached area) 271 12, 13, 14, 15, // row 3 (in cached area) 272 16, 17, 18, 19, // row 4 (in cached area) 307 12, 13, 14, 15, // row 3 (in cached area) 308 16, 17, 18, 19, // row 4 (in cached area) 346 12, 13, 14, 15, // row 3 (in cached area) [all …]
|
/third_party/flutter/skia/src/gpu/vk/ |
D | GrVkPipelineStateBuilder.cpp | 104 int GrVkPipelineStateBuilder::loadShadersFromCache(const SkData& cached, in loadShadersFromCache() argument 110 if (kSPIRV_Tag != GrPersistentCacheUtils::UnpackCachedShaders(&cached, shaders, in loadShadersFromCache() 208 sk_sp<SkData> cached; in finalize() local 212 cached = persistentCache->load(*key); in finalize() 219 if (cached && binaryCache) { in finalize() 220 numShaderStages = this->loadShadersFromCache(*cached, shaderModules, shaderStageInfo); in finalize() 235 if (cached) { in finalize() 237 cached.get(), cached_sksl, inputs, kGrShaderTypeCount)) { in finalize() 287 if (persistentCache && !cached) { in finalize()
|
/third_party/icu/vendor/double-conversion/upstream/double-conversion/ |
D | cached-powers.h | 37 // Not all powers of ten are cached. The decimal exponent of two neighboring 38 // cached numbers will differ by kDecimalExponentDistance. 44 // Returns a cached power-of-ten with a binary exponent in the range 51 // Returns a cached power of ten x ~= 10^k such that
|
/third_party/flutter/flutter/packages/flutter/lib/src/services/ |
D | asset_bundle.dart | 62 /// cached, and reading the data may bypass the cache. This is useful if the 63 /// caller is going to be doing its own caching. (It might not be cached if 89 /// If this is a caching asset bundle, and the given key describes a cached 130 /// The result is not cached. The parser is run each time the resource is 150 /// Data that is cached is cached for the lifetime of the asset bundle 153 /// Binary resources (from [load]) are not cached. 169 /// The result of parsing the string is cached (the string itself is not,
|
/third_party/node/deps/npm/node_modules/make-fetch-happen/ |
D | cache.js | 215 function matchDetails (req, cached) { argument 217 const cacheUrl = url.parse(cached.url) 218 const vary = cached.resHeaders.get('Vary') 225 return cached.reqHeaders.get(field) === req.headers.get(field) 232 if (cached.integrity) { 233 return ssri.parse(cached.integrity).match(cached.cacheIntegrity)
|
/third_party/openssl/doc/internal/man7/ |
D | EVP_PKEY.pod | 70 L<EVP_PKEY_get0_RSA(3)> is a cached copy of the key. Changes to the cached 121 the key data that the cached keys came from is the "origin", and since 194 cached copy of the provider key in legacy form. Once the cached copy is created 196 the cached legacy copy. Similarly changes made to the cached legacy copy are not
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | PhiValues.h | 13 // This information is computed lazily and cached. If new phis are added to the 51 /// This returns the cached value if PN has previously been processed, 55 /// Notify PhiValues that the cached information using V is no longer valid 57 /// Whenever a phi has its operands modified the cached values for that phi 60 /// the phi, which will then clear the relevant cached information. 91 /// that the cached information for that value can be cleared to avoid
|
/third_party/icu/icu4c/source/i18n/ |
D | double-conversion-cached-powers.h | 51 // Not all powers of ten are cached. The decimal exponent of two neighboring 52 // cached numbers will differ by kDecimalExponentDistance. 58 // Returns a cached power-of-ten with a binary exponent in the range 65 // Returns a cached power of ten x ~= 10^k such that
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | double-conversion-cached-powers.h | 51 // Not all powers of ten are cached. The decimal exponent of two neighboring 52 // cached numbers will differ by kDecimalExponentDistance. 58 // Returns a cached power-of-ten with a binary exponent in the range 65 // Returns a cached power of ten x ~= 10^k such that
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | double-conversion-cached-powers.h | 52 // Not all powers of ten are cached. The decimal exponent of two neighboring 53 // cached numbers will differ by kDecimalExponentDistance. 59 // Returns a cached power-of-ten with a binary exponent in the range 66 // Returns a cached power of ten x ~= 10^k such that
|