Searched refs:blockSize (Results 1 - 5 of 5) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/
H A DStoredCollection.java76 * @throws IllegalArgumentException if the blockSize is less than two.
78 public void setIteratorBlockSize(int blockSize) { argument
80 if (blockSize < 2) {
82 ("blockSize is less than two: " + blockSize);
85 iteratorBlockSize = blockSize;
H A DBlockIterator.java75 BlockIterator(StoredCollection coll, boolean writeAllowed, int blockSize) { argument
80 keys = new byte[blockSize][];
81 priKeys = coll.isSecondary() ? (new byte[blockSize][]) : keys;
82 values = new byte[blockSize][];
84 nextIndex = blockSize;
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/tools/misc/lzma_src/C/
H A DLzFind.c30 UInt32 blockSize = p->keepSizeBefore + p->keepSizeAfter + keepSizeReserv; local
33 p->blockSize = blockSize;
36 if (p->bufferBase == 0 || p->blockSize != blockSize)
39 p->blockSize = blockSize;
40 p->bufferBase = (Byte *)alloc->Alloc(alloc, (size_t)blockSize);
64 size_t size = (p->bufferBase + p->blockSize - dest);
92 return ((size_t)(p->bufferBase + p->blockSize
[all...]
H A DLzFind.h32 UInt32 blockSize; member in struct:_CMatchFinder
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/expat-2.0.1/lib/
H A Dxmlparse.c6121 int blockSize = (int)(pool->end - pool->start)*2; local
6125 + blockSize * sizeof(XML_Char)));
6128 pool->blocks->size = blockSize;
6131 pool->end = pool->start + blockSize;
6135 int blockSize = (int)(pool->end - pool->start); local
6136 if (blockSize < INIT_BLOCK_SIZE)
6137 blockSize = INIT_BLOCK_SIZE;
6139 blockSize *= 2;
6141 + blockSize * sizeof(XML_Char));
6144 tem->size = blockSize;
[all...]

Completed in 120 milliseconds