Home
last modified time | relevance | path

Searched refs:newCache (Results 1 – 25 of 660) sorted by relevance

12345678910>>...27

/dports/java/berkeley-db/je-6.2.31/src/com/sleepycat/je/tree/
H A DINLongRep.java53 final INLongRep newCache =
56 parent.updateMemorySize(getMemorySize(), newCache.getMemorySize());
58 return newCache.set(idx, val, parent, minLength);
144 DefaultRep newCache = in set() local
148 newCache.getMemorySize()); in set()
154 newCache = newCache.set(idx, val, parent, minLength); in set()
158 newCache = newCache.set(i, get(i), parent, minLength); in set()
162 return newCache; in set()
/dports/irc/smuxi/smuxi-1.1/lib/ServiceStack.Text/src/ServiceStack.Text/Common/
H A DWriteLists.cs38 Dictionary<Type, WriteObjectDelegate> snapshot, newCache; in GetListWriteFn()
43 newCache[elementType] = writeFn; in GetListWriteFn()
63 Dictionary<Type, WriteObjectDelegate> snapshot, newCache; in GetIListWriteFn()
68 newCache[elementType] = writeFn; in GetIListWriteFn()
87 Dictionary<Type, WriteObjectDelegate> snapshot, newCache; in GetGenericWriteArray()
92 newCache[elementType] = writeFn; in GetGenericWriteArray()
111 Dictionary<Type, WriteObjectDelegate> snapshot, newCache; in GetGenericWriteEnumerable()
116 newCache[elementType] = writeFn; in GetGenericWriteEnumerable()
135 Dictionary<Type, WriteObjectDelegate> snapshot, newCache; in GetWriteListValueType()
140 newCache[elementType] = writeFn; in GetWriteListValueType()
[all …]
H A DDeserializeArray.cs38 Dictionary<Type, ParseArrayOfElementsDelegate> snapshot, newCache; in GetParseFn()
42 newCache = new Dictionary<Type, ParseArrayOfElementsDelegate>(ParseDelegateCache); in GetParseFn()
43 newCache[type] = parseFn; in GetParseFn()
46 Interlocked.CompareExchange(ref ParseDelegateCache, newCache, snapshot), snapshot)); in GetParseFn()
113 Dictionary<Type, ParseStringDelegate> snapshot, newCache; in GetParseFn()
117 newCache = new Dictionary<Type, ParseStringDelegate>(ParseDelegateCache); in GetParseFn()
118 newCache[type] = parseFn; in GetParseFn()
121 Interlocked.CompareExchange(ref ParseDelegateCache, newCache, snapshot), snapshot)); in GetParseFn()
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/javax/swing/plaf/basic/
H A DBasicDirectoryModel.java221 Vector newCache = new Vector(newDirectories); in run() local
222 newCache.addAll(newFiles); in run()
224 int newSize = newCache.size(); in run()
234 if (! newCache.get(i).equals(contents.get(i))) in run()
253 newCache = null; in run()
264 if (! newCache.get(i).equals(contents.get(i))) in run()
270 if (newCache.get(j).equals(contents.get(i))) in run()
280 && newCache.subList(end, newSize) in run()
287 List added = newCache.subList(start, end); in run()
291 newCache = null; in run()
[all …]
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/javax/swing/plaf/basic/
H A DBasicDirectoryModel.java221 Vector newCache = new Vector(newDirectories); in run() local
222 newCache.addAll(newFiles); in run()
224 int newSize = newCache.size(); in run()
234 if (! newCache.get(i).equals(contents.get(i))) in run()
253 newCache = null; in run()
264 if (! newCache.get(i).equals(contents.get(i))) in run()
270 if (newCache.get(j).equals(contents.get(i))) in run()
280 && newCache.subList(end, newSize) in run()
287 List added = newCache.subList(start, end); in run()
291 newCache = null; in run()
[all …]
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/javax/swing/plaf/basic/
H A DBasicDirectoryModel.java221 Vector newCache = new Vector(newDirectories); in run() local
222 newCache.addAll(newFiles); in run()
224 int newSize = newCache.size(); in run()
234 if (! newCache.get(i).equals(contents.get(i))) in run()
253 newCache = null; in run()
264 if (! newCache.get(i).equals(contents.get(i))) in run()
270 if (newCache.get(j).equals(contents.get(i))) in run()
280 && newCache.subList(end, newSize) in run()
287 List added = newCache.subList(start, end); in run()
291 newCache = null; in run()
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/javax/swing/plaf/basic/
H A DBasicDirectoryModel.java221 Vector newCache = new Vector(newDirectories); in run() local
222 newCache.addAll(newFiles); in run()
224 int newSize = newCache.size(); in run()
234 if (! newCache.get(i).equals(contents.get(i))) in run()
253 newCache = null; in run()
264 if (! newCache.get(i).equals(contents.get(i))) in run()
270 if (newCache.get(j).equals(contents.get(i))) in run()
280 && newCache.subList(end, newSize) in run()
287 List added = newCache.subList(start, end); in run()
291 newCache = null; in run()
[all …]
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/javax/swing/plaf/basic/
H A DBasicDirectoryModel.java221 Vector newCache = new Vector(newDirectories); in run() local
222 newCache.addAll(newFiles); in run()
224 int newSize = newCache.size(); in run()
234 if (! newCache.get(i).equals(contents.get(i))) in run()
253 newCache = null; in run()
264 if (! newCache.get(i).equals(contents.get(i))) in run()
270 if (newCache.get(j).equals(contents.get(i))) in run()
280 && newCache.subList(end, newSize) in run()
287 List added = newCache.subList(start, end); in run()
291 newCache = null; in run()
[all …]
/dports/irc/smuxi/smuxi-1.1/lib/ServiceStack.Text/src/ServiceStack.Text/Json/
H A DJsonWriter.Generic.cs40 Dictionary<Type, WriteObjectDelegate> snapshot, newCache; in GetWriteFn()
44 newCache = new Dictionary<Type, WriteObjectDelegate>(WriteFnCache); in GetWriteFn()
45 newCache[type] = writeFn; in GetWriteFn()
48 Interlocked.CompareExchange(ref WriteFnCache, newCache, snapshot), snapshot)); in GetWriteFn()
73 Dictionary<Type, TypeInfo> snapshot, newCache; in GetTypeInfo()
77 newCache = new Dictionary<Type, TypeInfo>(JsonTypeInfoCache); in GetTypeInfo()
78 newCache[type] = writeFn; in GetTypeInfo()
81 Interlocked.CompareExchange(ref JsonTypeInfoCache, newCache, snapshot), snapshot)); in GetTypeInfo()
H A DJsonReader.Generic.cs38 Dictionary<Type, ParseFactoryDelegate> snapshot, newCache; in GetParseFn()
42 newCache = new Dictionary<Type, ParseFactoryDelegate>(ParseFnCache); in GetParseFn()
43 newCache[type] = parseFactoryFn; in GetParseFn()
46 Interlocked.CompareExchange(ref ParseFnCache, newCache, snapshot), snapshot)); in GetParseFn()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/utils/
H A DIntToDoubleFunctionCache.java58 final double[] newCache = new double[newCapacity + 1]; in expandCache() local
59 System.arraycopy(cache, 0, newCache, 0, cache.length); in expandCache()
60 for (int i = cache.length; i < newCache.length; i++) { in expandCache()
61 newCache[i] = compute(i); in expandCache()
63 cache = newCache; in expandCache()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/Interop/Windows/BCrypt/
H A DBCryptAlgorithmCache.cs41 Entry[] newCache = new Entry[cache.Length + 1]; in GetCachedBCryptAlgorithmHandle()
43 Array.Copy(cache, 0, newCache, 0, cache.Length); in GetCachedBCryptAlgorithmHandle()
44 newCache[newCache.Length - 1] = newEntry; in GetCachedBCryptAlgorithmHandle()
48 _cache = newCache; in GetCachedBCryptAlgorithmHandle()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.forms/src/org/eclipse/ui/forms/widgets/
H A DLayoutCache.java78 SizeCache[] newCache = new SizeCache[controls.length]; in rebuildCache() local
83 newCache[idx] = caches[idx]; in rebuildCache()
84 newCache[idx].setControl(controls[idx]); in rebuildCache()
86 newCache[idx] = new SizeCache(controls[idx]); in rebuildCache()
90 caches = newCache; in rebuildCache()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/layout/
H A DLayoutCache.java78 SizeCache[] newCache = new SizeCache[controls.length]; in rebuildCache() local
83 newCache[idx] = caches[idx]; in rebuildCache()
84 newCache[idx].setControl(controls[idx]); in rebuildCache()
86 newCache[idx] = new SizeCache(controls[idx]); in rebuildCache()
90 caches = newCache; in rebuildCache()
/dports/sysutils/vector/vector-0.10.0/cargo-crates/krb5-src-0.2.4+1.18.2/krb5/src/lib/krb5/ccache/ccapi/
H A Dstdcc.c327 newCache = (krb5_ccache) malloc (sizeof (*newCache)); in krb5_stdccv3_generate_new()
366 *id = newCache; in krb5_stdccv3_generate_new()
367 newCache = NULL; in krb5_stdccv3_generate_new()
374 if (newCache) { free (newCache); } in krb5_stdccv3_generate_new()
935 newCache = (krb5_ccache) malloc (sizeof (*newCache)); in krb5_stdccv3_ptcursor_next()
978 if (newCache) { free (newCache); } in krb5_stdccv3_ptcursor_next()
1169 *id = newCache; in krb5_stdcc_generate_new()
1174 if (newCache) in krb5_stdcc_generate_new()
1175 free(newCache); in krb5_stdcc_generate_new()
1225 *id = newCache; in krb5_stdcc_resolve()
[all …]
/dports/security/krb5/krb5-1.19.2/src/lib/krb5/ccache/ccapi/
H A Dstdcc.c327 newCache = (krb5_ccache) malloc (sizeof (*newCache)); in krb5_stdccv3_generate_new()
366 *id = newCache; in krb5_stdccv3_generate_new()
367 newCache = NULL; in krb5_stdccv3_generate_new()
374 if (newCache) { free (newCache); } in krb5_stdccv3_generate_new()
935 newCache = (krb5_ccache) malloc (sizeof (*newCache)); in krb5_stdccv3_ptcursor_next()
978 if (newCache) { free (newCache); } in krb5_stdccv3_ptcursor_next()
1169 *id = newCache; in krb5_stdcc_generate_new()
1174 if (newCache) in krb5_stdcc_generate_new()
1175 free(newCache); in krb5_stdcc_generate_new()
1225 *id = newCache; in krb5_stdcc_resolve()
[all …]
/dports/irc/smuxi/smuxi-1.1/lib/ServiceStack.Text/src/ServiceStack.Text/
H A DReflectionExtensions.cs39 Dictionary<Type, object> snapshot, newCache; in GetDefaultValue()
43 newCache = new Dictionary<Type, object>(DefaultValueTypes); in GetDefaultValue()
44 newCache[type] = defaultValue; in GetDefaultValue()
47 Interlocked.CompareExchange(ref DefaultValueTypes, newCache, snapshot), snapshot)); in GetDefaultValue()
268 Dictionary<Type, EmptyCtorDelegate> snapshot, newCache; in GetConstructorMethod()
272 newCache = new Dictionary<Type, EmptyCtorDelegate>(ConstructorMethods); in GetConstructorMethod()
273 newCache[type] = emptyCtorFn; in GetConstructorMethod()
291 Dictionary<string, EmptyCtorDelegate> snapshot, newCache; in GetConstructorMethod()
295 newCache = new Dictionary<string, EmptyCtorDelegate>(TypeNamesMap); in GetConstructorMethod()
296 newCache[typeName] = emptyCtorFn; in GetConstructorMethod()
[all …]
H A DTranslateListWithElements.cs37 Dictionary<Type, ConvertInstanceDelegate> snapshot, newCache; in TranslateToGenericICollectionCache()
41 newCache = new Dictionary<Type, ConvertInstanceDelegate>(TranslateICollectionCache); in TranslateToGenericICollectionCache()
42 newCache[elementType] = translateToFn; in TranslateToGenericICollectionCache()
45 … Interlocked.CompareExchange(ref TranslateICollectionCache, newCache, snapshot), snapshot)); in TranslateToGenericICollectionCache()
65 Dictionary<ConvertibleTypeKey, ConvertInstanceDelegate> snapshot, newCache; in TranslateToConvertibleGenericICollectionCache()
69newCache = new Dictionary<ConvertibleTypeKey, ConvertInstanceDelegate>(TranslateConvertibleICollec… in TranslateToConvertibleGenericICollectionCache()
70 newCache[typeKey] = translateToFn; in TranslateToConvertibleGenericICollectionCache()
73 …Interlocked.CompareExchange(ref TranslateConvertibleICollectionCache, newCache, snapshot), snapsho… in TranslateToConvertibleGenericICollectionCache()
/dports/devel/dep/dep-0.5.4/gps/
H A Dsource_cache_test.go72 newCache func(*testing.T, string) sourceCache member
89 sc := test.newCache(t, cpath)
133 sc = test.newCache(t, cpath)
178 sc = test.newCache(t, cpath)
194 sc := test.newCache(t, cpath)
212 sc = test.newCache(t, cpath)
260 sc = test.newCache(t, cpath)
274 sc = test.newCache(t, cpath)
292 sc = test.newCache(t, cpath)
304 sc := test.newCache(t, cpath)
[all …]
/dports/sysutils/kubectl/kubernetes-1.22.2/pkg/kubelet/server/stats/
H A Dfs_resource_analyzer.go75 newCache := make(statCache)
80newCache[pod.GetUID()] = newVolumeStatCalculator(s.statsProvider, s.calcPeriod, pod, s.eventRecord…
82 newCache[pod.GetUID()] = value
88 if _, found := newCache[uid]; !found {
94 s.cachedVolumeStats.Store(newCache)
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.jface/src/org/eclipse/jface/viewers/
H A DAbstractTableViewer.java134 Object[] newCache = new Object[requiredCount]; in notVisibleAdded() local
140 newCache[index] = element; in notVisibleAdded()
141 cachedElements = newCache; in notVisibleAdded()
159 Object[] newCache = new Object[requiredCount]; in removeIndices() local
166 newCache[indexInNewCache++] = cachedElements[i]; in removeIndices()
169 cachedElements = newCache; in removeIndices()
205 Object[] newCache = new Object[count]; in adjustCacheSize() local
207 cachedElements = newCache; in adjustCacheSize()
209 Object[] newCache = new Object[count]; in adjustCacheSize() local
210 System.arraycopy(cachedElements, 0, newCache, 0, in adjustCacheSize()
[all …]
/dports/irc/smuxi/smuxi-1.1/lib/ServiceStack.Text/src/ServiceStack.Text/Jsv/
H A DJsvReader.Generic.cs38 Dictionary<Type, ParseFactoryDelegate> snapshot, newCache; in GetParseFn()
42 newCache = new Dictionary<Type, ParseFactoryDelegate>(ParseFnCache); in GetParseFn()
43 newCache[type] = parseFactoryFn; in GetParseFn()
46 Interlocked.CompareExchange(ref ParseFnCache, newCache, snapshot), snapshot)); in GetParseFn()
H A DJsvSerializer.Generic.cs35 Dictionary<Type, ParseStringDelegate> snapshot, newCache; in DeserializeFromString()
39 newCache = new Dictionary<Type, ParseStringDelegate>(DeserializerCache); in DeserializeFromString()
40 newCache[type] = parseFn; in DeserializeFromString()
43 Interlocked.CompareExchange(ref DeserializerCache, newCache, snapshot), snapshot)); in DeserializeFromString()
H A DJsvWriter.Generic.cs40 Dictionary<Type, WriteObjectDelegate> snapshot, newCache; in GetWriteFn()
44 newCache = new Dictionary<Type, WriteObjectDelegate>(WriteFnCache); in GetWriteFn()
45 newCache[type] = writeFn; in GetWriteFn()
48 Interlocked.CompareExchange(ref WriteFnCache, newCache, snapshot), snapshot)); in GetWriteFn()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/segmentio/encoding/proto/
H A Dproto.go164 func storeCachedCodec(newCache map[unsafe.Pointer]*codec) {
165 codecCache.Store(newCache)
187 newCache := make(map[unsafe.Pointer]*codec, len(oldCache)+2)
189 newCache[p] = c
192 newCache[pointer(t)] = c1
193 newCache[pointer(p)] = c2
194 storeCachedCodec(newCache)

12345678910>>...27