HomeSort by relevance Sort by last modified time
    Searched defs:CacheEntry (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
MappedBlockStream.h 60 typedef MutableArrayRef<uint8_t> CacheEntry;
62 mutable DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
LazyRandomTypeCollection.h 54 struct CacheEntry {
103 std::vector<CacheEntry> Records;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
LazyRandomTypeCollection.h 54 struct CacheEntry {
103 std::vector<CacheEntry> Records;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
LazyRandomTypeCollection.h 54 struct CacheEntry {
103 std::vector<CacheEntry> Records;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
LazyRandomTypeCollection.h 54 struct CacheEntry {
103 std::vector<CacheEntry> Records;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
LazyRandomTypeCollection.h 54 struct CacheEntry {
103 std::vector<CacheEntry> Records;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
LazyRandomTypeCollection.h 54 struct CacheEntry {
103 std::vector<CacheEntry> Records;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
LazyRandomTypeCollection.h 54 struct CacheEntry {
103 std::vector<CacheEntry> Records;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
LazyRandomTypeCollection.h 54 struct CacheEntry {
103 std::vector<CacheEntry> Records;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/ArpDxe/
ArpMain.c 142 ARP_CACHE_ENTRY *CacheEntry;
186 CacheEntry = ArpFindDeniedCacheEntry (
192 if (CacheEntry == NULL) {
196 CacheEntry = ArpFindNextCacheEntryInTable (
205 if ((CacheEntry != NULL) && !Overwrite) {
213 if ((CacheEntry == NULL) && (TargetSwAddress != NULL)) {
217 CacheEntry = ArpFindNextCacheEntryInTable (
226 if (CacheEntry != NULL) {
230 RemoveEntryList (&CacheEntry->List);
235 CacheEntry = ArpAllocCacheEntry (Instance);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Icmp.c 105 IP4_ROUTE_CACHE_ENTRY *CacheEntry;
140 CacheEntry = Ip4FindRouteCache (Ip4Instance->RouteTable, Dst, Src);
146 if ((CacheEntry != NULL) && (NTOHL (Head->Src) == CacheEntry->NextHop)) {
147 CacheEntry->NextHop = Gateway;
Ip4Output.c 228 IP4_ROUTE_CACHE_ENTRY *CacheEntry;
312 CacheEntry = Ip4Route (IpSb->DefaultRouteTable, Head->Dst, Head->Src);
314 CacheEntry = Ip4Route (IpInstance->RouteTable, Head->Dst, Head->Src);
319 if (CacheEntry == NULL) {
320 CacheEntry = Ip4Route (IpSb->DefaultRouteTable, Head->Dst, Head->Src);
324 if (CacheEntry == NULL) {
328 GateWay = CacheEntry->NextHop;
329 Ip4FreeRouteCacheEntry (CacheEntry);
  /frameworks/base/tools/aapt/
ResourceIdCache.cpp 21 struct CacheEntry {
26 CacheEntry() {}
27 CacheEntry(const android::String16& name, uint32_t resId) : hashedName(name), id(resId) { }
30 static std::map< uint32_t, CacheEntry > mIdMap;
64 std::map<uint32_t, CacheEntry>::iterator item = mIdMap.find(hashcode);
92 mIdMap[hashcode] = CacheEntry(hashedName, resId);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 98 typedef MutableArrayRef<uint8_t> CacheEntry;
100 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 95 typedef MutableArrayRef<uint8_t> CacheEntry;
105 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 95 typedef MutableArrayRef<uint8_t> CacheEntry;
105 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 98 typedef MutableArrayRef<uint8_t> CacheEntry;
100 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 95 typedef MutableArrayRef<uint8_t> CacheEntry;
105 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 95 typedef MutableArrayRef<uint8_t> CacheEntry;
105 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
LocaleObjectCache.java 20 private ConcurrentHashMap<K, CacheEntry<K, V>> _map;
28 _map = new ConcurrentHashMap<K, CacheEntry<K, V>>(initialCapacity, loadFactor, concurrencyLevel);
35 CacheEntry<K, V> entry = _map.get(key);
47 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue);
65 CacheEntry<K, V> entry;
66 while ((entry = (CacheEntry<K, V>)_queue.poll()) != null) {
77 private static class CacheEntry<K, V> extends SoftReference<V> {
80 CacheEntry(K key, V value, ReferenceQueue<V> queue) {
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
LocaleObjectCache.java 16 private ConcurrentHashMap<K, CacheEntry<K, V>> _map;
24 _map = new ConcurrentHashMap<K, CacheEntry<K, V>>(initialCapacity, loadFactor, concurrencyLevel);
31 CacheEntry<K, V> entry = _map.get(key);
43 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue);
61 CacheEntry<K, V> entry;
62 while ((entry = (CacheEntry<K, V>)_queue.poll()) != null) {
73 private static class CacheEntry<K, V> extends SoftReference<V> {
76 CacheEntry(K key, V value, ReferenceQueue<V> queue) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
LocaleObjectCache.java 16 private ConcurrentHashMap<K, CacheEntry<K, V>> _map;
24 _map = new ConcurrentHashMap<K, CacheEntry<K, V>>(initialCapacity, loadFactor, concurrencyLevel);
31 CacheEntry<K, V> entry = _map.get(key);
43 CacheEntry<K, V> newEntry = new CacheEntry<K, V>(key, newVal, _queue);
61 CacheEntry<K, V> entry;
62 while ((entry = (CacheEntry<K, V>)_queue.poll()) != null) {
73 private static class CacheEntry<K, V> extends SoftReference<V> {
76 CacheEntry(K key, V value, ReferenceQueue<V> queue) {
  /frameworks/base/libs/hwui/pipeline/skia/
VectorDrawableAtlas.h 118 struct CacheEntry {
119 CacheEntry(const SkRect& newVDrect, const SkRect& newRect,
141 std::list<CacheEntry>::iterator eraseIt;
157 std::list<CacheEntry> mRects;
207 static bool compareCacheEntry(const CacheEntry& first, const CacheEntry& second);
  /frameworks/native/opengl/libs/EGL/
BlobCache.h 151 // A CacheEntry is a single key/value pair in the cache.
152 class CacheEntry {
154 CacheEntry();
155 CacheEntry(const std::shared_ptr<Blob>& key, const std::shared_ptr<Blob>& value);
156 CacheEntry(const CacheEntry& ce);
158 bool operator<(const CacheEntry& rhs) const;
159 const CacheEntry& operator=(const CacheEntry&);
241 std::vector<CacheEntry> mCacheEntries
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/util/
AbstractCache.java 31 private final HashMap<K, CacheEntry<V>> mCacheMap;
34 mCacheMap = new HashMap<K, CacheEntry<V>>();
52 CacheEntry<V> cacheEntry = new CacheEntry<V>();
53 cacheEntry.value = value;
54 mCacheMap.put(key, cacheEntry);
70 CacheEntry<V> cacheEntry = mCacheMap.get(key);
71 if (cacheEntry != null)
    [all...]

Completed in 688 milliseconds

1 2 3 4 5