Home
last modified time | relevance | path

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

/external/chromium/crypto/
Dopenssl_util.h46 template<int MIN_SIZE>
55 if (output_len_ < MIN_SIZE) { in ~ScopedOpenSSLSafeSizeBuffer()
63 return output_len_ < MIN_SIZE ? min_sized_buffer_ : output_; in safe_buffer()
74 unsigned char min_sized_buffer_[MIN_SIZE];
/external/chromium/base/
Dopenssl_util.h52 template<int MIN_SIZE>
61 if (output_len_ < MIN_SIZE) { in ~ScopedOpenSSLSafeSizeBuffer()
69 return output_len_ < MIN_SIZE ? min_sized_buffer_ : output_; in safe_buffer()
80 unsigned char min_sized_buffer_[MIN_SIZE];
/external/chromium/third_party/libjingle/source/talk/p2p/base/
Dstun.cc243 if (length < StunErrorCodeAttribute::MIN_SIZE) in Create()
310 STUN_ATTR_ERROR_CODE, StunErrorCodeAttribute::MIN_SIZE); in CreateErrorCode()
431 SetLength(MIN_SIZE + static_cast<uint16>(reason.size())); in SetReason()
Dstun.h278 enum { MIN_SIZE = 4 }; enumerator
280 static const uint16 MIN_SIZE = 4; variable
/external/skia/src/gpu/
DGrContext.cpp436 static const int MIN_SIZE = 256; in lockScratchTexture() local
437 desc.fWidth = GrMax(MIN_SIZE, GrNextPow2(desc.fWidth)); in lockScratchTexture()
438 desc.fHeight = GrMax(MIN_SIZE, GrNextPow2(desc.fHeight)); in lockScratchTexture()