Home
last modified time | relevance | path

Searched defs:CacheEntry (Results 1 – 25 of 598) sorted by relevance

12345678910>>...24

/aosp_15_r20/external/tensorflow/tensorflow/core/tpu/kernels/
H A Dtpu_compilation_cache_rpc_support.h36 struct CacheEntry { struct
37 CacheEntry() : size(0), last_use(-1) {} in CacheEntry() argument
38 virtual ~CacheEntry() { in ~CacheEntry() argument
58 explicit CacheWrapper(std::shared_ptr<CacheEntry> entry) in CacheWrapper() argument
/aosp_15_r20/external/pytorch/torch/csrc/dynamo/
H A Dcache_entry.h34 typedef struct CacheEntry CacheEntry; typedef
39 typedef struct VISIBILITY_HIDDEN CacheEntry { struct
52 // Reference to this CacheEntry's location in owner's linked list argument
53 std::list<CacheEntry>::iterator _owner_loc; argument
60 } CacheEntry; typedef
/aosp_15_r20/frameworks/base/tools/aapt/
H A DResourceIdCache.cpp21 struct CacheEntry { struct
26 CacheEntry() {} in CacheEntry() argument
27 CacheEntry(const android::String16& name, uint32_t resId) : hashedName(name), id(resId) { } in CacheEntry() function
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/DebugInfo/CodeView/
DLazyRandomTypeCollection.h51 struct CacheEntry { struct
52 CVType Type;
53 uint32_t Offset;
54 StringRef Name;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/DebugInfo/CodeView/
DLazyRandomTypeCollection.h51 struct CacheEntry { struct
52 CVType Type;
53 uint32_t Offset;
54 StringRef Name;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/DebugInfo/CodeView/
DLazyRandomTypeCollection.h51 struct CacheEntry { struct
52 CVType Type;
53 uint32_t Offset;
54 StringRef Name;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/DebugInfo/CodeView/
DLazyRandomTypeCollection.h51 struct CacheEntry { struct
52 CVType Type;
53 uint32_t Offset;
54 StringRef Name;
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.h53 struct CacheEntry { struct
54 CVType Type;
55 uint32_t Offset;
56 StringRef Name;
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/CodeView/
H A DLazyRandomTypeCollection.h51 struct CacheEntry { struct
52 CVType Type;
53 uint32_t Offset;
54 StringRef Name;
/aosp_15_r20/external/tensorflow/tensorflow/compiler/xla/python/
H A Djax_jit.cc323 struct CacheEntry { struct
330 absl::Notification compilation_complete;
332 std::shared_ptr<xla::PyExecutable> executable;
333 xla::PyTreeDef out_pytree_def;
337 std::vector<py::object> out_avals;
338 std::vector<bool> out_weak_types;
342 std::optional<std::vector<bool>> kept_var_bitvec;
343 std::optional<xla::ClientAndPtr<xla::PjRtDevice>> sticky_device;
350 bool fall_back_to_python = false;
355 std::vector<py::object> keepalive;
H A Dweakref_lru_cache.cc55 struct CacheEntry { struct in jax::WeakrefLRUCache
56 bool has_result = false;
57 pybind11::object result;
58 absl::Notification completed;
/aosp_15_r20/external/cronet/third_party/quic_trace/src/tools/render/
H A Dtext.h77 struct CacheEntry { struct
101 absl::node_hash_map<std::string, CacheEntry> cache_; argument
/aosp_15_r20/external/pytorch/torch/_dynamo/
H A Dconvert_frame.py437 cache_entry: Optional[CacheEntry],
587 cache_entry: Optional[CacheEntry],
1055 cache_entry: Optional[CacheEntry],
1184 cache_entry: Optional[CacheEntry],
1202 cache_entry: Optional[CacheEntry],
H A Dtypes.py8 _CacheEntry as CacheEntry, unknown
57 cache_entry: Optional[CacheEntry],
/aosp_15_r20/external/pytorch/aten/src/ATen/native/mps/
H A DOperationUtils.h207 struct CacheEntry { struct
208CacheEntry(const std::string& key, MPSCachedGraph *cachedGraph) : cachedGraph_(cachedGraph), key_(… in CacheEntry() argument
209 MPSCachedGraph* cachedGraph_ = nullptr;
210 std::string key_;
/aosp_15_r20/frameworks/native/opengl/libs/EGL/
H A DBlobCache.cpp345 BlobCache::CacheEntry::CacheEntry() {} in CacheEntry() function in android::BlobCache::CacheEntry
347 BlobCache::CacheEntry::CacheEntry(const std::shared_ptr<Blob>& key, in CacheEntry() function in android::BlobCache::CacheEntry
351 BlobCache::CacheEntry::CacheEntry(const CacheEntry& ce) : mKey(ce.mKey), mValue(ce.mValue) {} in CacheEntry() function in android::BlobCache::CacheEntry
/aosp_15_r20/packages/apps/Launcher3/src/com/android/launcher3/util/
DViewCache.java73 static class CacheEntry { class in ViewCache
80 public CacheEntry(int maxSize) { in CacheEntry() method in ViewCache.CacheEntry
/aosp_15_r20/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DWapPushCache.java164 private static class CacheEntry { class in WapPushCache
165 CacheEntry(long size, long expiry) { in CacheEntry() method in WapPushCache.CacheEntry
/aosp_15_r20/external/icu/icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/
H A DLocaleObjectCache.java73 private static class CacheEntry<K, V> extends SoftReference<V> { class in LocaleObjectCache
76 CacheEntry(K key, V value, ReferenceQueue<V> queue) { in CacheEntry() method in LocaleObjectCache.CacheEntry
/aosp_15_r20/external/guava/android/guava/src/com/google/common/graph/
H A DMapRetrievalCache.java103 private static final class CacheEntry<K, V> { class in MapRetrievalCache
107 CacheEntry(K key, V value) { in CacheEntry() method in MapRetrievalCache.CacheEntry
/aosp_15_r20/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
H A DLocaleObjectCache.java77 private static class CacheEntry<K, V> extends SoftReference<V> { class in LocaleObjectCache
80 CacheEntry(K key, V value, ReferenceQueue<V> queue) { in CacheEntry() method in LocaleObjectCache.CacheEntry
/aosp_15_r20/external/guava/guava/src/com/google/common/graph/
H A DMapRetrievalCache.java103 private static final class CacheEntry<K, V> { class in MapRetrievalCache
107 CacheEntry(K key, V value) { in CacheEntry() method in MapRetrievalCache.CacheEntry
/aosp_15_r20/packages/modules/NeuralNetworks/driver/cache/BlobCache/
DBlobCache.cpp454 BlobCache::CacheEntry::CacheEntry() : mRecency(0) {} in CacheEntry() function in android::BlobCache::CacheEntry
456 BlobCache::CacheEntry::CacheEntry(const std::shared_ptr<Blob>& key, in CacheEntry() function in android::BlobCache::CacheEntry
460 BlobCache::CacheEntry::CacheEntry(const CacheEntry& ce) in CacheEntry() function in android::BlobCache::CacheEntry
/aosp_15_r20/libcore/ojluni/src/main/java/sun/util/locale/
H A DLocaleObjectCache.java103 private static class CacheEntry<K, V> extends SoftReference<V> { class in LocaleObjectCache
106 CacheEntry(K key, V value, ReferenceQueue<V> queue) { in CacheEntry() method in LocaleObjectCache.CacheEntry
/aosp_15_r20/frameworks/base/services/core/java/com/android/server/wm/
H A DSnapshotCache.java115 static final class CacheEntry { class in SnapshotCache
120 CacheEntry(TaskSnapshot snapshot, ActivityRecord topApp) { in CacheEntry() method in SnapshotCache.CacheEntry

12345678910>>...24