Home
last modified time | relevance | path

Searched refs:MIN_SIZE (Results 1 – 6 of 6) sorted by relevance

/external/libchrome/crypto/
Dopenssl_util.h23 template<int MIN_SIZE>
32 if (output_len_ < MIN_SIZE) { in ~ScopedOpenSSLSafeSizeBuffer()
40 return output_len_ < MIN_SIZE ? min_sized_buffer_ : output_; in safe_buffer()
51 unsigned char min_sized_buffer_[MIN_SIZE];
/external/skia/src/gpu/
DGrResourceProvider.cpp102 static const uint32_t MIN_SIZE = 1 << 12; in createIndexBuffer() local
103 size = SkTMax(MIN_SIZE, GrNextPow2(SkToUInt(size))); in createIndexBuffer()
131 static const uint32_t MIN_SIZE = 1 << 12; in createVertexBuffer() local
132 size = SkTMax(MIN_SIZE, GrNextPow2(SkToUInt(size))); in createVertexBuffer()
/external/opencv3/modules/cudaoptflow/src/
Dfarneback.cpp54 #define MIN_SIZE 32 macro
317 if (size.width*scale < MIN_SIZE || size.height*scale < MIN_SIZE) in calcImpl()
/external/webrtc/webrtc/p2p/base/
Dstun.cc481 STUN_ATTR_ERROR_CODE, StunErrorCodeAttribute::MIN_SIZE); in CreateErrorCode()
787 SetLength(MIN_SIZE + static_cast<uint16_t>(reason.size())); in SetReason()
793 if (length() < MIN_SIZE || !buf->ReadUInt32(&val)) in Read()
Dstun.h416 static const uint16_t MIN_SIZE = 4;
/external/opencv3/modules/core/src/
Dmatrix.cpp740 const size_t MIN_SIZE = 64; in reserve() local
754 if( newsize < MIN_SIZE ) in reserve()
755 size.p[0] = (int)((MIN_SIZE + newsize - 1)*nelems/newsize); in reserve()