Home
last modified time | relevance | path

Searched refs:dataCache (Results 1 – 25 of 267) sorted by relevance

1234567891011

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/Odbc/
H A DOdbcDataReader.cs32 private DbCache dataCache; field in System.Data.Odbc.OdbcDataReader
164 return ((null != this.dataCache) ? this.dataCache._count : 0);
317 this.dataCache = null; in Close()
344 if (null != this.dataCache) { in GetDataTypeName()
359 if (null != this.dataCache) { in GetFieldType()
370 if (null != this.dataCache) { in GetName()
497 return dataCache[i]; in GetValue()
598 return this.dataCache[i]; in internalGetByte()
613 return this.dataCache[i]; in internalGetChar()
1331 return this.dataCache[i]; in internalGetBytes()
[all …]
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/libdoomsday/src/filesys/
H A Dwad.cpp236 if (!d->dataCache.isNull()) in clearCachedLump()
238 d->dataCache->remove(lumpIndex, retCleared); in clearCachedLump()
250 if (!d->dataCache.isNull()) in clearLumpCache()
252 d->dataCache->clear(); in clearLumpCache()
268 if (d->dataCache.isNull()) in cacheLump()
270 d->dataCache.reset(new LumpCache(LumpIndex::size())); in cacheLump()
273 uint8_t const *data = d->dataCache->data(lumpIndex); in cacheLump()
280 d->dataCache->insert(lumpIndex, region); in cacheLump()
294 if (!d->dataCache.isNull()) in unlockLump()
296 d->dataCache->unlock(lumpIndex); in unlockLump()
[all …]
H A Dzip.cpp539 if (!d->dataCache.isNull()) in clearCachedLump()
541 d->dataCache->remove(lumpIndex, retCleared); in clearCachedLump()
553 if (!d->dataCache.isNull()) in clearLumpCache()
555 d->dataCache->clear(); in clearLumpCache()
571 if (d->dataCache.isNull()) in cacheLump()
573 d->dataCache.reset(new LumpCache(lumpCount())); in cacheLump()
576 uint8_t const *data = d->dataCache->data(lumpIndex); in cacheLump()
583 d->dataCache->insert(lumpIndex, region); in cacheLump()
596 if (!d->dataCache.isNull()) in unlockLump()
598 d->dataCache->unlock(lumpIndex); in unlockLump()
[all …]
/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/extbase/Classes/Reflection/
H A DReflectionService.php37 protected $dataCache; variable in TYPO3\\CMS\\Extbase\\Reflection\\ReflectionService
58 $this->dataCache = $cache;
60 if (($classSchemata = $this->dataCache->get($this->cacheIdentifier)) !== false) {
68 $this->dataCache->set($this->cacheIdentifier, $this->classSchemata);
121 $this->dataCache = new NullFrontend('extbase');
/dports/www/typo3-10/typo3_src-10.4.25/typo3/sysext/extbase/Classes/Reflection/
H A DReflectionService.php40 protected $dataCache; variable in TYPO3\\CMS\\Extbase\\Reflection\\ReflectionService
74 $this->dataCache = $cacheManager->getCache('extbase');
82 … if (($classSchemata = $this->dataCache->get(static::$cacheEntryIdentifier)) !== false) {
92 $this->dataCache->set(static::$cacheEntryIdentifier, $this->classSchemata);
145 $this->dataCache = null;
/dports/converters/wkhtmltopdf/qt-5db36ec/tools/qvfb/
H A Dqvfbmmap.cpp61 : QVFbViewProtocol(displayid, parent), hdr(0), dataCache(0), windowId(0) in QMMapViewProtocol()
122 dataCache = (unsigned char *)malloc(displaySize); in QMMapViewProtocol()
123 memset(dataCache, 0, displaySize); in QMMapViewProtocol()
146 free(dataCache); in ~QMMapViewProtocol()
192 return dataCache; in data()
199 memcpy(dataCache, ((char *)hdr) + hdr->dataoffset, displaySize); in flushChanges()
H A Dqvfbshmem.cpp132 : QVFbViewProtocol(displayid, parent), hdr(0), dataCache(0), lockId(-1), in QShMemViewProtocol()
199 dataCache = (unsigned char *)malloc(displaySize); in QShMemViewProtocol()
200 memset(dataCache, 0, displaySize); in QShMemViewProtocol()
228 free(dataCache); in ~QShMemViewProtocol()
269 return dataCache; in data()
293 memcpy(dataCache, ((char *)hdr) + hdr->dataoffset, displaySize); in flushChanges()
/dports/net-mgmt/icingaweb2-module-director/icingaweb2-module-director-1.6.2/library/Director/Web/Table/
H A DImportsourceHookTable.php19 protected $dataCache; variable in Icinga\\Module\\Director\\Web\\Table\\ImportsourceHookTable
99 if ($this->dataCache === null) {
100 $this->dataCache = parent::fetchQueryRows();
101 $this->source->applyModifiers($this->dataCache);
104 return $this->dataCache;
/dports/converters/wkhtmltopdf/qt-5db36ec/tests/auto/declarative/shared/
H A Dtesthttpserver.cpp175 dataCache.insert(socket, QByteArray()); in newConnection()
186 dataCache.remove(socket); in disconnected()
298 if (!dataCache.contains(socket)) in serveGET()
301 QByteArray total = dataCache[socket] + data; in serveGET()
302 dataCache[socket] = total; in serveGET()
318 dataCache.remove(socket); in serveGET()
/dports/www/ilias/ILIAS-5.4.25/Services/Contact/classes/
H A Dclass.ilMailMemberSearchDataProvider.php28 protected $dataCache; variable in ilMailMemberSearchDataProvider
50 $this->dataCache = $DIC['ilObjDataCache'];
97 $this->dataCache->preloadObjectCache($rolesToPreload);
102 $title = $this->dataCache->lookupTitle($roleId);
/dports/www/ilias6/ILIAS-6.14/Services/Contact/classes/
H A Dclass.ilMailMemberSearchDataProvider.php28 protected $dataCache; variable in ilMailMemberSearchDataProvider
50 $this->dataCache = $DIC['ilObjDataCache'];
97 $this->dataCache->preloadObjectCache($rolesToPreload);
102 $title = $this->dataCache->lookupTitle($roleId);
/dports/www/typo3-9/typo3_src-9.5.31/typo3/sysext/extbase/Classes/Reflection/
H A DReflectionService.php34 protected $dataCache; variable in TYPO3\\CMS\\Extbase\\Reflection\\ReflectionService
68 $this->dataCache = $cacheManager->getCache(static::CACHE_IDENTIFIER);
75 … if (($classSchemata = $this->dataCache->get(static::CACHE_ENTRY_IDENTIFIER)) !== false) {
85 $this->dataCache->set(static::CACHE_ENTRY_IDENTIFIER, $this->classSchemata);
391 $this->dataCache = null;
/dports/www/elgg/elgg-3.3.23/vendor/elgg/elgg/engine/lib/
H A Dcache.php298 _elgg_services()->dataCache->disable();
315 _elgg_services()->dataCache->clear();
333 _elgg_services()->dataCache->invalidate();
350 _elgg_services()->dataCache->purge();
381 _elgg_services()->dataCache->enable();
/dports/databases/hsqldb/hsqldb-2.3.4/hsqldb/src/org/hsqldb/persist/
H A DPersistentStoreCollectionDatabase.java107 DataFileCache dataCache = database.logger.getCache(); in setNewTableSpaces() local
109 if (dataCache == null) { in setNewTableSpaces()
126 dataCache.spaceManager.getTableSpace(table.getSpaceID()); in setNewTableSpaces()
/dports/www/elgg/elgg-3.3.23/vendor/elgg/elgg/engine/tests/phpunit/integration/Elgg/Integration/
H A DElggCoreGetEntitiesFromPrivateSettingsTest.php168 $this->assertNull(_elgg_services()->dataCache->private_settings->load($entity->guid));
189 …$this->assertEquals($settings, _elgg_services()->dataCache->private_settings->load($entity->guid));
200 $this->assertNull(_elgg_services()->dataCache->private_settings->load($entity->guid));
201 $this->assertNull(_elgg_services()->dataCache->entities->load($entity->guid));
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/angle/src/libANGLE/renderer/d3d/d3d11/
H A DClear11.cpp67 bool UpdateDataCache(RtvDsvClearInfo<T> *dataCache, in UpdateDataCache() argument
78 if (writeRGB && memcmp(&dataCache->r, &color.red, sizeof(T) * 3) != 0) in UpdateDataCache()
80 dataCache->r = color.red; in UpdateDataCache()
81 dataCache->g = color.green; in UpdateDataCache()
82 dataCache->b = color.blue; in UpdateDataCache()
87 if (writeAlpha && (dataCache->a != color.alpha)) in UpdateDataCache()
89 dataCache->a = color.alpha; in UpdateDataCache()
98 if (clampedZValue != dataCache->z) in UpdateDataCache()
100 dataCache->z = clampedZValue; in UpdateDataCache()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/src/libANGLE/renderer/d3d/d3d11/
H A DClear11.cpp67 bool UpdateDataCache(RtvDsvClearInfo<T> *dataCache, in UpdateDataCache() argument
78 if (writeRGB && memcmp(&dataCache->r, &color.red, sizeof(T) * 3) != 0) in UpdateDataCache()
80 dataCache->r = color.red; in UpdateDataCache()
81 dataCache->g = color.green; in UpdateDataCache()
82 dataCache->b = color.blue; in UpdateDataCache()
87 if (writeAlpha && (dataCache->a != color.alpha)) in UpdateDataCache()
89 dataCache->a = color.alpha; in UpdateDataCache()
98 if (clampedZValue != dataCache->z) in UpdateDataCache()
100 dataCache->z = clampedZValue; in UpdateDataCache()
/dports/www/firefox-esr/firefox-91.8.0/gfx/angle/checkout/src/libANGLE/renderer/d3d/d3d11/
H A DClear11.cpp67 bool UpdateDataCache(RtvDsvClearInfo<T> *dataCache, in UpdateDataCache() argument
78 if (writeRGB && memcmp(&dataCache->r, &color.red, sizeof(T) * 3) != 0) in UpdateDataCache()
80 dataCache->r = color.red; in UpdateDataCache()
81 dataCache->g = color.green; in UpdateDataCache()
82 dataCache->b = color.blue; in UpdateDataCache()
87 if (writeAlpha && (dataCache->a != color.alpha)) in UpdateDataCache()
89 dataCache->a = color.alpha; in UpdateDataCache()
98 if (clampedZValue != dataCache->z) in UpdateDataCache()
100 dataCache->z = clampedZValue; in UpdateDataCache()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/angle/checkout/src/libANGLE/renderer/d3d/d3d11/
H A DClear11.cpp67 bool UpdateDataCache(RtvDsvClearInfo<T> *dataCache, in UpdateDataCache() argument
78 if (writeRGB && memcmp(&dataCache->r, &color.red, sizeof(T) * 3) != 0) in UpdateDataCache()
80 dataCache->r = color.red; in UpdateDataCache()
81 dataCache->g = color.green; in UpdateDataCache()
82 dataCache->b = color.blue; in UpdateDataCache()
87 if (writeAlpha && (dataCache->a != color.alpha)) in UpdateDataCache()
89 dataCache->a = color.alpha; in UpdateDataCache()
98 if (clampedZValue != dataCache->z) in UpdateDataCache()
100 dataCache->z = clampedZValue; in UpdateDataCache()
/dports/www/firefox/firefox-99.0/gfx/angle/checkout/src/libANGLE/renderer/d3d/d3d11/
H A DClear11.cpp67 bool UpdateDataCache(RtvDsvClearInfo<T> *dataCache, in UpdateDataCache() argument
78 if (writeRGB && memcmp(&dataCache->r, &color.red, sizeof(T) * 3) != 0) in UpdateDataCache()
80 dataCache->r = color.red; in UpdateDataCache()
81 dataCache->g = color.green; in UpdateDataCache()
82 dataCache->b = color.blue; in UpdateDataCache()
87 if (writeAlpha && (dataCache->a != color.alpha)) in UpdateDataCache()
89 dataCache->a = color.alpha; in UpdateDataCache()
98 if (clampedZValue != dataCache->z) in UpdateDataCache()
100 dataCache->z = clampedZValue; in UpdateDataCache()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/angle/checkout/src/libANGLE/renderer/d3d/d3d11/
H A DClear11.cpp67 bool UpdateDataCache(RtvDsvClearInfo<T> *dataCache, in UpdateDataCache() argument
78 if (writeRGB && memcmp(&dataCache->r, &color.red, sizeof(T) * 3) != 0) in UpdateDataCache()
80 dataCache->r = color.red; in UpdateDataCache()
81 dataCache->g = color.green; in UpdateDataCache()
82 dataCache->b = color.blue; in UpdateDataCache()
87 if (writeAlpha && (dataCache->a != color.alpha)) in UpdateDataCache()
89 dataCache->a = color.alpha; in UpdateDataCache()
98 if (clampedZValue != dataCache->z) in UpdateDataCache()
100 dataCache->z = clampedZValue; in UpdateDataCache()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/asm/
H A DCompilationResultBuilder.java153 private final EconomicMap<Constant, Data> dataCache; field in CompilationResultBuilder
168 …ompilationResult compilationResult, Register nullRegister, EconomicMap<Constant, Data> dataCache) { in CompilationResultBuilder() argument
181 this.dataCache = dataCache; in CompilationResultBuilder()
319 Data data = dataCache.get(constant); in createDataItem()
322 dataCache.put(constant, data); in createDataItem()
559 if (dataCache != null) { in resetForEmittingCode()
560 dataCache.clear(); in resetForEmittingCode()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/asm/
H A DCompilationResultBuilder.java153 private final EconomicMap<Constant, Data> dataCache; field in CompilationResultBuilder
168 …ompilationResult compilationResult, Register nullRegister, EconomicMap<Constant, Data> dataCache) { in CompilationResultBuilder() argument
181 this.dataCache = dataCache; in CompilationResultBuilder()
319 Data data = dataCache.get(constant); in createDataItem()
322 dataCache.put(constant, data); in createDataItem()
559 if (dataCache != null) { in resetForEmittingCode()
560 dataCache.clear(); in resetForEmittingCode()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/asm/
H A DCompilationResultBuilder.java153 private final EconomicMap<Constant, Data> dataCache; field in CompilationResultBuilder
168 …ompilationResult compilationResult, Register nullRegister, EconomicMap<Constant, Data> dataCache) { in CompilationResultBuilder() argument
181 this.dataCache = dataCache; in CompilationResultBuilder()
319 Data data = dataCache.get(constant); in createDataItem()
322 dataCache.put(constant, data); in createDataItem()
559 if (dataCache != null) { in resetForEmittingCode()
560 dataCache.clear(); in resetForEmittingCode()
/dports/www/ilias/ILIAS-5.4.25/Services/TermsOfService/test/factories/
H A DilTermsOfServiceCriterionTypeFactoryTest.php15 $dataCache = $this
27 $criterionTypeFactory = new \ilTermsOfServiceCriterionTypeFactory($rbacReview, $dataCache);

1234567891011