Searched refs:Cache (Results 1 - 25 of 74) sorted by relevance

123

/external/compiler-rt/lib/tsan/output_tests/
H A Dstatic_init2.cc5 struct Cache { struct
7 explicit Cache(int x) function in struct:Cache
12 void foo(Cache *my) {
13 static Cache *c = my ? my : new Cache(rand());
19 foo(new Cache(rand()));
H A Dstatic_init3.cc6 struct Cache { struct
10 Cache g_cache;
12 Cache *CreateCache() {
17 _Atomic(Cache*) queue;
20 static Cache *c = CreateCache();
26 Cache *c = 0;
H A Dstatic_init5.cc6 struct Cache { struct
8 explicit Cache(int x) function in struct:Cache
14 return new Cache((int)(long)p);
17 Cache *CreateCache() {
22 return (Cache*)res;
26 static Cache *c = CreateCache();
H A Dstatic_init4.cc6 struct Cache { struct
8 explicit Cache(int x) function in struct:Cache
15 Cache *CreateCache() {
17 return new Cache(rand());
21 static Cache *c = CreateCache();
/external/llvm/lib/VMCore/
H A DLeaksContext.h33 Cache(0), Name(name) { }
36 Cache = 0;
51 if (Cache) {
52 assert(Cache != o && "Object already in set!");
53 Ts.insert(Cache);
55 Cache = o;
59 if (o == Cache)
60 Cache = 0; // Cache hit
66 addGarbage(0); // Flush the Cache
88 const T* Cache; member in struct:llvm::LeakDetectorImpl
[all...]
/external/webkit/Source/WebCore/svg/properties/
H A DSVGAnimatedProperty.h49 typedef HashMap<SVGAnimatedPropertyDescription, RefPtr<SVGAnimatedProperty>, SVGAnimatedPropertyDescriptionHash, SVGAnimatedPropertyDescriptionHashTraits> Cache; typedef in class:WebCore::SVGAnimatedProperty
54 Cache* cache = animatedPropertyCache();
55 const Cache::const_iterator end = cache->end();
56 for (Cache::const_iterator it = cache->begin(); it != end; ++it) {
92 static Cache* animatedPropertyCache()
94 static Cache* s_cache = new Cache;
/external/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp589 static void AssertSorted(MemoryDependenceAnalysis::NonLocalDepInfo &Cache, argument
591 if (Count == -1) Count = Cache.size();
595 assert(!(Cache[i] < Cache[i-1]) && "Cache isn't sorted!");
616 NonLocalDepInfo &Cache = CacheP.first; local
624 if (!Cache.empty()) {
629 return Cache;
634 for (NonLocalDepInfo::iterator I = Cache.begin(), E = Cache
778 GetNonLocalInfoForBlock(const AliasAnalysis::Location &Loc, bool isLoad, BasicBlock *BB, NonLocalDepInfo *Cache, unsigned NumSortedEntries) argument
847 SortNonLocalDepInfoCache(MemoryDependenceAnalysis::NonLocalDepInfo &Cache, unsigned NumSortedEntries) argument
958 NonLocalDepInfo *Cache = &CacheInfo->NonLocalDeps; local
[all...]
/external/openssl/crypto/des/times/
H A Daix.cc6 Data/Instr Cache : 16 K
7 L2 Cache : 256 K
/external/webkit/LayoutTests/http/tests/appcache/resources/
H A Dversioned-manifest.php24 header("Cache-Control: no-cache, must-revalidate");
34 print("uncacheable-resource.php\n"); // with Cache-control: no-store
/external/clang/include/clang/Basic/
H A DFileSystemStatCache.h53 FileSystemStatCache *Cache);
58 void setNextStatCache(FileSystemStatCache *Cache) { argument
59 NextStatCache.reset(Cache);
/external/clang/lib/Basic/
H A DFileSystemStatCache.cpp43 int *FileDescriptor, FileSystemStatCache *Cache) {
48 if (Cache)
49 R = Cache->getStat(Path, StatBuf, FileDescriptor);
117 // Cache file 'stat' results and directories with absolutely paths.
42 get(const char *Path, struct stat &StatBuf, int *FileDescriptor, FileSystemStatCache *Cache) argument
/external/guava/guava/src/com/google/common/cache/
H A DForwardingCache.java39 public abstract class ForwardingCache<K, V> extends ForwardingObject implements Cache<K, V> {
45 protected abstract Cache<K, V> delegate();
138 * constructed {@link Cache} as the delegete.
144 private final Cache<K, V> delegate;
146 protected SimpleForwardingCache(Cache<K, V> delegate) {
151 protected final Cache<K, V> delegate() {
H A DCache.java33 * A semi-persistent mapping from keys to values. Cache entries are manually added using
37 * <p><b>Note:</b> in release 12.0, all methods moved from {@code Cache} to {@link LoadingCache}
38 * will be deleted from {@code Cache}. As part of this transition {@code Cache} will no longer
51 public interface Cache<K, V> extends Function<K, V> { interface in inherits:Function
148 * removed from {@code Cache} in Guava release 12.0. Note that
168 * removed from {@code Cache} in Guava release 12.0. Note that
183 * removed from {@code Cache} in Guava release 12.0. Note that
H A DLoadingCache.java46 public interface LoadingCache<K, V> extends Cache<K, V>, Function<K, V> {
58 * {@code Cache.asMap().putIfAbsent} after loading has completed; if another value was associated
84 * {@code Cache.asMap().putIfAbsent} after loading has completed; if another value was associated
/external/guava/guava-tests/test/com/google/common/cache/
H A DForwardingCacheTest.java37 private Cache<String, Boolean> forward;
38 private Cache<String, Boolean> mock;
48 mock = createMock(Cache.class);
50 @Override protected Cache<String, Boolean> delegate() {
126 protected Cache<K, V> delegate() {
H A DCacheTesting.java51 * A collection of utilities for {@link Cache} testing.
58 * Poke into the Cache internals to simulate garbage collection of the value associated with the
64 static <K, V> void simulateValueReclamation(Cache<K, V> cache, K key) {
78 * Poke into the Cache internals to simulate garbage collection of the given key. This assumes
83 static <K, V> void simulateKeyReclamation(Cache<K, V> cache, K key) {
93 static <K, V> ReferenceEntry<K, V> getReferenceEntry(Cache<K, V> cache, K key) {
102 static <K, V> void forceExpandSegment(Cache<K, V> cache, K key) {
110 * Gets the {@link LocalCache} used by the given {@link Cache}, if any, or throws an
111 * IllegalArgumentException if this is a Cache type that doesn't have a LocalCache.
113 static <K, V> LocalCache<K, V> toLocalCache(Cache<
[all...]
/external/llvm/lib/Support/
H A DSourceMgr.cpp39 if (LineNoCacheTy *Cache = getCache(LineNoCache))
40 delete Cache;
101 if (LineNoCacheTy *Cache = getCache(LineNoCache))
102 if (Cache->LastQueryBufferID == BufferID &&
103 Cache->LastQuery <= Loc.getPointer()) {
104 Ptr = Cache->LastQuery;
105 LineNo = Cache->LineNoOfQuery;
118 LineNoCacheTy &Cache = *getCache(LineNoCache); local
119 Cache.LastQueryBufferID = BufferID;
120 Cache
[all...]
/external/webkit/Source/WebCore/platform/text/
H A DAtomicStringKeyedMRUCache.h67 typedef Vector<Entry, capacity> Cache; typedef in class:WebCore::AtomicStringKeyedMRUCache
68 Cache m_cache;
/external/llvm/lib/CodeGen/
H A DMachineLoopRanges.cpp45 DeleteContainerSeconds(Cache);
46 Cache.clear();
50 MachineLoopRange *&Range = Cache[Loop];
H A DInterferenceCache.h44 /// Tag - Cache tag is changed when any of the underlying LiveIntervalUnions
192 void setPhysReg(InterferenceCache &Cache, unsigned PhysReg) { argument
197 setEntry(Cache.get(PhysReg));
/external/oprofile/events/mips/25K/
H A Devents48 # I-Cache Efficiency:
50 event:0x18 counters:0,1 um:zero minimum:500 name:INSNS_FETCHED_FROM_ICACHE : Total number of instructions fetched from the I-Cache
52 event:0x1a counters:0,1 um:zero minimum:500 name:ICACHE_MISSES : I-Cache miss
55 # D-Cache Efficiency:
57 event:0x1b counters:0,1 um:zero minimum:500 name:DCACHE_MISSES : D-Cache miss
58 event:0x1c counters:0,1 um:zero minimum:500 name:DCACHE_WRITEBACKS : D-Cache number of write-backs
59 event:0x1d counters:0,1 um:zero minimum:500 name:CACHEABLE_DCACHE_REQUEST : number of cacheable requests to D-Cache
62 # Level 2 Cache Efficiency:
64 event:0x1e counters:0,1 um:zero minimum:500 name:L2_MISSES : L2 Cache miss
65 event:0x1f counters:0,1 um:zero minimum:500 name:L2_WBACKS : L2 Cache numbe
[all...]
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptCachedFrameData.h89 #error You need to consider whether you want Page Cache and either add a stub or a real implementation.
/external/doclava/src/com/google/doclava/
H A DConverter.java221 private static Cache mClasses = new Cache() {
331 private static Cache mMethods = new Cache() {
417 private static Cache mFields = new Cache() {
435 private static Cache mPackagees = new Cache() {
447 private static Cache mTypes = new Cache() {
596 private abstract static class Cache { class in class:Converter
[all...]
/external/freetype/include/freetype/
H A Dftmoderr.h109 FT_MODERRDEF( Cache, 0x400, "cache module" )
/external/llvm/include/llvm/CodeGen/
H A DMachineLoopRanges.h92 CacheMap Cache; member in class:llvm::MachineLoopRanges

Completed in 1383 milliseconds

123