HomeSort by relevance Sort by last modified time
    Searched full:_blocksize (Results 1 - 15 of 15) sorted by null

  /external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/
InWindow.java 17 public int _blockSize; // Size of Allocated memory block
39 int size = (0 - _bufferOffset) + _blockSize - _streamPos;
63 if (_bufferBase == null || _blockSize != blockSize) {
65 _blockSize = blockSize;
66 _bufferBase = new byte[_blockSize];
68 _pointerToLastSafePosition = _blockSize - keepSizeAfter;
  /external/lzma/CS/7zip/Compress/LZ/
LzInWindow.cs 18 public UInt32 _blockSize; // Size of Allocated memory block
45 int size = (int)((0 - _bufferOffset) + _blockSize - _streamPos);
72 if (_bufferBase == null || _blockSize != blockSize)
75 _blockSize = blockSize;
76 _bufferBase = new Byte[_blockSize];
78 _pointerToLastSafePosition = _blockSize - keepSizeAfter;
  /external/lzma/Java/SevenZip/Compression/LZ/
InWindow.java 18 public int _blockSize; // Size of Allocated memory block
45 int size = (0 - _bufferOffset) + _blockSize - _streamPos;
72 if (_bufferBase == null || _blockSize != blockSize)
75 _blockSize = blockSize;
76 _bufferBase = new byte[_blockSize];
78 _pointerToLastSafePosition = _blockSize - keepSizeAfter;
  /external/opencv3/modules/features2d/src/
gftt.cpp 51 double _minDistance, int _blockSize,
54 blockSize(_blockSize), useHarrisDetector(_useHarrisDetector), k(_k)
119 double _minDistance, int _blockSize,
123 _minDistance, _blockSize, _useHarrisDetector, _k);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
dumbdbm.py 30 _BLOCKSIZE = 512
59 # begins at a _BLOCKSIZE-aligned byte offset, and is a raw
126 # Append val to the data file, starting at a _BLOCKSIZE-aligned
134 npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE
171 oldblocks = (siz + _BLOCKSIZE - 1) // _BLOCKSIZE
172 newblocks = (len(val) + _BLOCKSIZE - 1) // _BLOCKSIZE
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
dumbdbm.py 30 _BLOCKSIZE = 512
59 # begins at a _BLOCKSIZE-aligned byte offset, and is a raw
126 # Append val to the data file, starting at a _BLOCKSIZE-aligned
134 npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE
171 oldblocks = (siz + _BLOCKSIZE - 1) // _BLOCKSIZE
172 newblocks = (len(val) + _BLOCKSIZE - 1) // _BLOCKSIZE
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dumbdbm.py 30 _BLOCKSIZE = 512
59 # begins at a _BLOCKSIZE-aligned byte offset, and is a raw
126 # Append val to the data file, starting at a _BLOCKSIZE-aligned
134 npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE
171 oldblocks = (siz + _BLOCKSIZE - 1) // _BLOCKSIZE
172 newblocks = (len(val) + _BLOCKSIZE - 1) // _BLOCKSIZE
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dumbdbm.py 30 _BLOCKSIZE = 512
59 # begins at a _BLOCKSIZE-aligned byte offset, and is a raw
126 # Append val to the data file, starting at a _BLOCKSIZE-aligned
134 npos = ((pos + _BLOCKSIZE - 1) // _BLOCKSIZE) * _BLOCKSIZE
171 oldblocks = (siz + _BLOCKSIZE - 1) // _BLOCKSIZE
172 newblocks = (len(val) + _BLOCKSIZE - 1) // _BLOCKSIZE
    [all...]
  /external/opencv3/modules/java/src/
objdetect+HOGDescriptor.java 44 // C++: HOGDescriptor(Size _winSize, Size _blockSize, Size _blockStride, Size _cellSize, int _nbins, int _derivAperture = 1, double _winSigma = -1, int _histogramNormType = HOGDescriptor::L2Hys, double _L2HysThreshold = 0.2, bool _gammaCorrection = false, int _nlevels = HOGDescriptor::DEFAULT_NLEVELS, bool _signedGradient = false)
47 //javadoc: HOGDescriptor::HOGDescriptor(_winSize, _blockSize, _blockStride, _cellSize, _nbins, _derivAperture, _winSigma, _histogramNormType, _L2HysThreshold, _gammaCorrection, _nlevels, _signedGradient)
48 public HOGDescriptor(Size _winSize, Size _blockSize, Size _blockStride, Size _cellSize, int _nbins, int _derivAperture, double _winSigma, int _histogramNormType, double _L2HysThreshold, boolean _gammaCorrection, int _nlevels, boolean _signedGradient)
51 nativeObj = HOGDescriptor_1(_winSize.width, _winSize.height, _blockSize.width, _blockSize.height, _blockStride.width, _blockStride.height, _cellSize.width, _cellSize.height, _nbins, _derivAperture, _winSigma, _histogramNormType, _L2HysThreshold, _gammaCorrection, _nlevels, _signedGradient);
56 //javadoc: HOGDescriptor::HOGDescriptor(_winSize, _blockSize, _blockStride, _cellSize, _nbins)
57 public HOGDescriptor(Size _winSize, Size _blockSize, Size _blockStride, Size _cellSize, int _nbins)
60 nativeObj = HOGDescriptor_2(_winSize.width, _winSize.height, _blockSize.width, _blockSize.height, _blockStride.width, _blockStride.height, _cellSize.width, _cellSize.height, _nbins);
500 // C++: HOGDescriptor(Size _winSize, Size _blockSize, Size _blockStride, Size _cellSize, int _nbins, int _derivAperture = 1, double _winSigma = -1, int (…)
    [all...]
objdetect.cpp 484 // HOGDescriptor(Size _winSize, Size _blockSize, Size _blockStride, Size _cellSize, int _nbins, int _derivAperture = 1, double _winSigma = -1, int _histogramNormType = HOGDescriptor::L2Hys, double _L2HysThreshold = 0.2, bool _gammaCorrection = false, int _nlevels = HOGDescriptor::DEFAULT_NLEVELS, bool _signedGradient = false)
496 Size _blockSize((int)_blockSize_width, (int)_blockSize_height);
499 cv::HOGDescriptor* _retval_ = new cv::HOGDescriptor( _winSize, _blockSize, _blockStride, _cellSize, (int)_nbins, (int)_derivAperture, (double)_winSigma, (int)_histogramNormType, (double)_L2HysThreshold, (bool)_gammaCorrection, (int)_nlevels, (bool)_signedGradient );
520 Size _blockSize((int)_blockSize_width, (int)_blockSize_height);
523 cv::HOGDescriptor* _retval_ = new cv::HOGDescriptor( _winSize, _blockSize, _blockStride, _cellSize, (int)_nbins );
    [all...]
  /external/chromium-trace/catapult/trace_processor/third_party/cloudstorage/
storage_api.py 617 _blocksize = 256 * 1024 variable in class:StreamingBuffer
619 _flushsize = 8 * _blocksize
621 _maxrequestsize = 9 * 4 * _blocksize
640 assert self._maxrequestsize > self._blocksize
641 assert self._maxrequestsize % self._blocksize == 0
673 storage are required to be on block boundaries (_blocksize) except for the
764 least self._blocksize, or to flush the final (incomplete) block of
768 (not finish and self._buffered >= self._blocksize)):
783 tmp_buffer_len % self._blocksize + self._buffered <
784 self._blocksize)
    [all...]
  /external/opencv3/modules/objdetect/include/opencv2/
objdetect.hpp 351 CV_WRAP HOGDescriptor(Size _winSize, Size _blockSize, Size _blockStride,
356 : winSize(_winSize), blockSize(_blockSize), blockStride(_blockStride), cellSize(_cellSize),
  /external/libcxx/include/
deque 173 class _DiffType, _DiffType _BlockSize>
265 class _DiffType, _DiffType _BlockSize>
276 static const difference_type __block_size = _BlockSize;
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
deque 173 class _DiffType, _DiffType _BlockSize>
265 class _DiffType, _DiffType _BlockSize>
276 static const difference_type __block_size = _BlockSize;
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/
deque 173 class _DiffType, _DiffType _BlockSize>
265 class _DiffType, _DiffType _BlockSize>
276 static const difference_type __block_size = _BlockSize;
    [all...]

Completed in 5863 milliseconds