Home
last modified time | relevance | path

Searched refs:storageSize (Results 1 – 25 of 492) sorted by relevance

12345678910>>...20

/dports/databases/hsqldb/hsqldb-2.3.4/hsqldb/src/org/hsqldb/persist/
H A DBlockObjectStore.java50 int storageSize; field in BlockObjectStore
55 Class objectClass, int storageSize, in BlockObjectStore() argument
62 this.storageSize = storageSize; in BlockObjectStore()
72 return cache.get(i, storageSize, this, false); in get()
80 return cache.get(i, storageSize, this, keep); in get()
93 if (size > storageSize) { in add()
97 object.setStorageSize(storageSize); in add()
115 if (size > storageSize) { in get()
119 object.setStorageSize(storageSize); in get()
H A DCache.java127 int storageSize = row.getStorageSize(); in put() local
129 if (preparePut(storageSize)) { in put()
146 int storageSize = row.getStorageSize(); in putUsingReserve() local
148 preparePut(storageSize); in putUsingReserve()
158 boolean preparePut(int storageSize) { in preparePut() argument
161 boolean exceedsSize = storageSize + cacheBytesLength > bytesCapacity; in preparePut()
167 exceedsSize = storageSize + cacheBytesLength > bytesCapacity; in preparePut()
176 exceedsSize = storageSize + cacheBytesLength > bytesCapacity; in preparePut()
185 exceedsSize = storageSize + cacheBytesLength > bytesCapacity; in preparePut()
440 void logSaveRowsEvent(int saveCount, long storageSize, long startTime) { in logSaveRowsEvent() argument
[all …]
H A DCachedObjectBase.java47 int storageSize; field in CachedObjectBase
66 storageSize = size; in setStorageSize()
70 return storageSize; in getStorageSize()
/dports/devel/okteta/okteta-0.26.6/core/piecetable/
H A Drevertablepiecetable.cpp54 …evertablePieceTable::replace(const AddressRange& removeRange, Size insertLength, Size* storageSize) in replace() argument
56 *storageSize = mChangeHistory.appliedChangesDataSize(); in replace()
59 mPieceTable.insert(removeRange.start(), insertLength, *storageSize); in replace()
61 …auto* change = new ReplacePieceTableChange(removeRange, insertLength, *storageSize, replacedPieces… in replace()
75 bool RevertablePieceTable::replaceOne(Address dataOffset, Size* storageSize) in replaceOne() argument
77 *storageSize = mChangeHistory.appliedChangesDataSize(); in replaceOne()
79 const Piece replacedPiece = mPieceTable.replaceOne(dataOffset, *storageSize); in replaceOne()
83 …new ReplacePieceTableChange(AddressRange::fromWidth(dataOffset, 1), 1, *storageSize, replacedPiece… in replaceOne()
H A Drevertablepiecetable.hpp27 bool insert(Address pos, Size length, Size* storageSize);
30 bool replace(const AddressRange& removeRange, Size insertLength, Size* storageSize);
31 bool replace(Address removeStart, Size removeLength, Size insertLength, Size* storageSize);
32 bool replaceOne(Address dataOffset, Size* storageSize);
113 …lePieceTable::replace(Address removeStart, Size removeLength, Size insertLength, Size* storageSize) in replace() argument
115 return replace(AddressRange::fromWidth(removeStart, removeLength), insertLength, storageSize); in replace()
/dports/graphics/geomview/geomview-1.9.5/src/bin/geomutil/vrml2oogl/lib/
H A DQvString.c++15 (string == staticStorage || newSize > storageSize)) { in expand()
25 storageSize = newSize; in expand()
62 str < string + (string != staticStorage ? storageSize : in operator =()
78 else if (size > storageSize) { in operator =()
84 storageSize = size; in operator =()
/dports/security/cryptlib/cryptlib-3.4.3/misc/
H A Dint_mem.c154 BUFFER( storageSize, storagePos )
156 int storageSize, storagePos; /* Current usage and total size of pool */ member
163 if( state->storageSize < 64 || \ in sanityCheck()
164 state->storageSize >= MAX_INTLENGTH_SHORT ) in sanityCheck()
170 state->storagePos > state->storageSize ) in sanityCheck()
197 state->storageSize = memPoolSize;
210 assert( isWritePtr( state->storage, state->storageSize ) ); in getMemPool()
219 if( state->storagePos + allocSize > state->storageSize ) in getMemPool()
246 assert( isWritePtr( state->storage, state->storageSize ) ); in freeMemPool()
254 state->storageSize ) ) in freeMemPool()
/dports/databases/hsqldb/hsqldb-2.3.4/hsqldb/src/org/hsqldb/
H A DRowAVLDisk.java106 int storageSize;
150 storageSize = in.getSize();
195 return storageSize;
241 storageSize = size;
326 out.writeSize(storageSize);
349 out.writeSize(storageSize);
H A DRowAVLDiskData.java59 int storageSize; field in RowAVLDiskData
86 storageSize = in.getSize(); in RowAVLDiskData()
152 out.writeSize(storageSize); in write()
178 return storageSize; in getStorageSize()
182 storageSize = size; in setStorageSize()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/framework/delibs/decpp/
H A DdeArrayBuffer.hpp91 const size_t storageSize = (numElements - 1) * Stride + sizeof(T); in ArrayBuffer() local
92 void* const ptr = detail::ArrayBuffer_AlignedMalloc(storageSize, Alignment); in ArrayBuffer()
115 const size_t storageSize = sizeof(T) * numElements; in ArrayBuffer() local
116 deMemcpy(tmp.m_ptr, ptr, (int)storageSize); in ArrayBuffer()
138 const size_t storageSize = (other.m_cap - 1) * Stride + sizeof(T); in ArrayBuffer() local
141 deMemcpy(tmp.m_ptr, other.m_ptr, (int)storageSize); in ArrayBuffer()
/dports/emulators/mess/mame-mame0226/src/osd/modules/render/bgfx/
H A Dtexture.cpp23 … bgfx::createTexture2D(width, height, false, 1, format, flags, bgfx::copy(data, info.storageSize)); in bgfx_texture()
29 const bgfx::Memory* memory = bgfx::alloc(info.storageSize); in bgfx_texture()
30 memset(memory->data, 0, info.storageSize); in bgfx_texture()
31 bgfx::updateTexture2D(m_texture, 0, 0, 0, 0, width, height, memory, info.storageSize / height); in bgfx_texture()
/dports/emulators/mame/mame-mame0226/src/osd/modules/render/bgfx/
H A Dtexture.cpp23 … bgfx::createTexture2D(width, height, false, 1, format, flags, bgfx::copy(data, info.storageSize)); in bgfx_texture()
29 const bgfx::Memory* memory = bgfx::alloc(info.storageSize); in bgfx_texture()
30 memset(memory->data, 0, info.storageSize); in bgfx_texture()
31 bgfx::updateTexture2D(m_texture, 0, 0, 0, 0, width, height, memory, info.storageSize / height); in bgfx_texture()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_audio_devices/midi_io/ump/
H A Djuce_UMPDispatcher.h85 explicit BytestreamToUMPDispatcher (PacketProtocol pp, int storageSize) in BytestreamToUMPDispatcher() argument
86 : concatenator (storageSize), in BytestreamToUMPDispatcher()
154 explicit ToBytestreamDispatcher (int storageSize) in ToBytestreamDispatcher() argument
155 : converter (storageSize) {} in ToBytestreamDispatcher()
/dports/databases/hsqldb/hsqldb-2.3.4/hsqldb/src/org/hsqldb/rowio/
H A DRowOutputBinary.java65 int storageSize;
116 storageSize = size;
121 if (count > storageSize) {
125 for (; count < storageSize; ) {
140 storageSize = size;
478 storageSize = 0;
486 storageSize = 0;
494 storageSize = 0;
/dports/lang/solidity/solidity_0.8.11/test/libsolidity/
H A DSolidityTypes.cpp85 BOOST_REQUIRE_EQUAL(u256(2), members.storageSize()); in BOOST_AUTO_TEST_CASE()
108 BOOST_REQUIRE_EQUAL(u256(4), members.storageSize()); in BOOST_AUTO_TEST_CASE()
121 BOOST_CHECK(ArrayType(DataLocation::Storage, TypeProvider::fixedBytes(1), 32).storageSize() == 1); in BOOST_AUTO_TEST_CASE()
122 BOOST_CHECK(ArrayType(DataLocation::Storage, TypeProvider::fixedBytes(1), 33).storageSize() == 2); in BOOST_AUTO_TEST_CASE()
123 BOOST_CHECK(ArrayType(DataLocation::Storage, TypeProvider::fixedBytes(2), 31).storageSize() == 2); in BOOST_AUTO_TEST_CASE()
124 BOOST_CHECK(ArrayType(DataLocation::Storage, TypeProvider::fixedBytes(7), 8).storageSize() == 2); in BOOST_AUTO_TEST_CASE()
125 BOOST_CHECK(ArrayType(DataLocation::Storage, TypeProvider::fixedBytes(7), 9).storageSize() == 3); in BOOST_AUTO_TEST_CASE()
126 BOOST_CHECK(ArrayType(DataLocation::Storage, TypeProvider::fixedBytes(31), 9).storageSize() == 9); in BOOST_AUTO_TEST_CASE()
127 BOOST_CHECK(ArrayType(DataLocation::Storage, TypeProvider::fixedBytes(32), 9).storageSize() == 9); in BOOST_AUTO_TEST_CASE()
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/core/
H A DSkBitmapController.h43 void* storage, size_t storageSize);
51 void* storage, size_t storageSize) = 0;
64 void* storage, size_t storageSize) override;
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/core/
H A DSkBitmapController.h43 void* storage, size_t storageSize);
51 void* storage, size_t storageSize) = 0;
64 void* storage, size_t storageSize) override;
/dports/lang/mono/mono-5.10.1.57/external/corert/src/System.Private.TypeLoader/src/Internal/Runtime/TypeLoader/
H A DTypeLoaderEnvironment.StaticsLookup.cs228 int storageSize; in TryGetThreadStaticsSizeForDynamicType()
229 if (_dynamicGenericsThreadStaticSizes.TryGetValue((uint)index, out storageSize)) in TryGetThreadStaticsSizeForDynamicType()
230 return storageSize; in TryGetThreadStaticsSizeForDynamicType()
246 …terDynamicThreadStaticsInfo(RuntimeTypeHandle runtimeTypeHandle, uint offsetValue, int storageSize) in RegisterDynamicThreadStaticsInfo() argument
249 Debug.Assert(offsetValue != 0 && storageSize > 0 && runtimeTypeHandle.IsDynamicType()); in RegisterDynamicThreadStaticsInfo()
256 …Assert(!_dynamicGenericsThreadStatics.TryGetValue(runtimeTypeHandle, out temp) && storageSize > 0); in RegisterDynamicThreadStaticsInfo()
259 _dynamicGenericsThreadStaticSizes.Add(offsetValue, storageSize); in RegisterDynamicThreadStaticsInfo()
/dports/graphics/digikam/digikam-7.4.0/core/libs/threadimageio/thumb/
H A Dthumbnailcreator.cpp107 int ThumbnailCreator::Private::storageSize() const in storageSize() function in Digikam::ThumbnailCreator::Private
179 return d->storageSize(); in storedSize()
223 if (d->storageSize() <= 0) in load()
356 if ((qimage.width() > d->storageSize()) || (qimage.height() > d->storageSize())) in scaleForStorage()
366 QImage scaledThumb = qimage.scaled(d->storageSize(), in scaleForStorage()
367 d->storageSize(), in scaleForStorage()
/dports/security/cryptlib/cryptlib-3.4.3/
H A Dcryptses.c374 int value, storageSize, status; in openSession() local
403 storageSize = sizeof( SSH_INFO ); in openSession()
407 storageSize = sizeof( SSL_INFO ); in openSession()
411 storageSize = sizeof( TSP_INFO ); in openSession()
415 storageSize = sizeof( CMP_INFO ); in openSession()
419 storageSize = sizeof( SCEP_INFO ); in openSession()
425 storageSize = 0; in openSession()
434 sizeof( SESSION_INFO ) + storageSize, in openSession()
445 if( storageSize > 0 ) in openSession()
478 sessionInfoPtr->storageSize = storageSize; in openSession()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/lib/IR/
H A DAttributeDetail.h123 size_t storageSize = llvm::divideCeil(elementWidth, CHAR_BIT); in getKey() local
124 assert(((data.size() / storageSize) == numElements) && in getKey()
128 auto firstElt = data.take_front(storageSize); in getKey()
133 for (size_t i = storageSize, e = data.size(); i != e; i += storageSize) in getKey()
134 if (memcmp(data.data(), &data[i], storageSize)) in getKey()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/lib/IR/
H A DAttributeDetail.h123 size_t storageSize = llvm::divideCeil(elementWidth, CHAR_BIT); in getKey() local
124 assert(((data.size() / storageSize) == numElements) && in getKey()
128 auto firstElt = data.take_front(storageSize); in getKey()
133 for (size_t i = storageSize, e = data.size(); i != e; i += storageSize) in getKey()
134 if (memcmp(data.data(), &data[i], storageSize)) in getKey()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/lib/IR/
H A DAttributeDetail.h123 size_t storageSize = llvm::divideCeil(elementWidth, CHAR_BIT); in getKey() local
124 assert(((data.size() / storageSize) == numElements) && in getKey()
128 auto firstElt = data.take_front(storageSize); in getKey()
133 for (size_t i = storageSize, e = data.size(); i != e; i += storageSize) in getKey()
134 if (memcmp(data.data(), &data[i], storageSize)) in getKey()
/dports/devel/llvm13/llvm-project-13.0.1.src/mlir/lib/IR/
H A DAttributeDetail.h123 size_t storageSize = llvm::divideCeil(elementWidth, CHAR_BIT); in getKey() local
124 assert(((data.size() / storageSize) == numElements) && in getKey()
128 auto firstElt = data.take_front(storageSize); in getKey()
133 for (size_t i = storageSize, e = data.size(); i != e; i += storageSize) in getKey()
134 if (memcmp(data.data(), &data[i], storageSize)) in getKey()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/JavaScriptCore/runtime/
H A DJSArray.cpp102 static inline size_t storageSize(unsigned vectorLength) in storageSize() function
148 Heap::heap(this)->reportExtraMemoryCost(storageSize(0)); in JSArray()
190 Heap::heap(this)->reportExtraMemoryCost(storageSize(initialCapacity)); in JSArray()
208 m_storage = static_cast<ArrayStorage*>(fastMalloc(storageSize(initialStorage))); in JSArray()
231 Heap::heap(this)->reportExtraMemoryCost(storageSize(initialStorage)); in JSArray()
478 … Heap::heap(this)->reportExtraMemoryCost(storageSize(newVectorLength) - storageSize(vectorLength)); in putSlowCase()
609 … Heap::heap(this)->reportExtraMemoryCost(storageSize(newVectorLength) - storageSize(vectorLength)); in increaseVectorLength()
634 memcpy(m_storage, storage, storageSize(0)); in increaseVectorPrefixLength()
642 … Heap::heap(this)->reportExtraMemoryCost(storageSize(newVectorLength) - storageSize(vectorLength)); in increaseVectorPrefixLength()
816 memmove(newBaseStorage, storage, storageSize(0)); in shiftCount()
[all …]

12345678910>>...20