/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/ |
alloc_traits.h | 292 typename = decltype(std::declval<_Alloc3*>()->max_size())> 306 { return __a.max_size(); } 410 * @return @c __a.max_size() or @c numeric_limits<size_type>::max() 412 * Returns @c __a.max_size() if that expression is well-formed, 415 static size_type max_size(const _Alloc& __a) function in struct:allocator_traits
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
alloc_traits.h | 292 typename = decltype(std::declval<_Alloc3*>()->max_size())> 306 { return __a.max_size(); } 410 * @return @c __a.max_size() or @c numeric_limits<size_type>::max() 412 * Returns @c __a.max_size() if that expression is well-formed, 415 static size_type max_size(const _Alloc& __a) function in struct:allocator_traits
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
alloc_traits.h | 293 typename = decltype(std::declval<_Alloc3*>()->max_size())> 309 { return __a.max_size(); } 416 * @return @c __a.max_size() or @c numeric_limits<size_type>::max() 418 * Returns @c __a.max_size() if that expression is well-formed, 421 static size_type max_size(const _Alloc& __a) noexcept
|
/external/libedit/src/ |
history.c | 737 size_t sz, max_size; local 754 ptr = h_malloc((max_size = 1024) * sizeof(*ptr)); 765 if (max_size < sz) { 767 max_size = (sz + 1024) & (size_t)~1023; 768 nptr = h_realloc(ptr, max_size * sizeof(*ptr)); 799 size_t len, max_size; local 813 ptr = h_malloc((max_size = 1024) * sizeof(*ptr)); 821 if (len >= max_size) { 823 max_size = (len + 1024) & (size_t)~1023; 824 nptr = h_realloc(ptr, max_size * sizeof(*ptr)) [all...] |
/device/huawei/angler/camera/QCamera2/HAL3/ |
QCamera3HWI.h | 134 size_t max_size, int32_t *sizeTable); 136 size_t max_size, int32_t *fpsRangesTable); 138 size_t size, size_t max_size, uint8_t *overridesList,
|
/device/lge/bullhead/camera/QCamera2/HAL3/ |
QCamera3HWI.h | 134 size_t max_size, int32_t *sizeTable); 136 size_t max_size, int32_t *fpsRangesTable); 138 size_t size, size_t max_size, uint8_t *overridesList,
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/ |
message.py | 376 def to_wire(self, origin=None, max_size=0, **kw): 385 @param max_size: The maximum size of the wire format output; default 388 @type max_size: int 389 @raises dns.exception.TooBig: max_size was exceeded 393 if max_size == 0: 395 max_size = self.request_payload 397 max_size = 65535 398 if max_size < 512: 399 max_size = 512 400 elif max_size > 65535 [all...] |
/external/clang/test/Index/ |
annotate-nested-name-specifier.cpp | 25 static int max_size; member in struct:outer::inner::array 35 int outer::inner::array<T, N>::max_size = 17; member in class:outer::inner::array 189 // CHECK: Keyword: "int" [35:1 - 35:4] VarDecl=max_size:35:32 (Definition) 191 // CHECK: Punctuation: "::" [35:10 - 35:12] VarDecl=max_size:35:32 (Definition) 193 // CHECK: Punctuation: "::" [35:17 - 35:19] VarDecl=max_size:35:32 (Definition) 195 // CHECK: Punctuation: "<" [35:24 - 35:25] VarDecl=max_size:35:32 (Definition) 197 // CHECK: Punctuation: "," [35:26 - 35:27] VarDecl=max_size:35:32 (Definition) 199 // CHECK: Punctuation: ">" [35:29 - 35:30] VarDecl=max_size:35:32 (Definition) 200 // CHECK: Punctuation: "::" [35:30 - 35:32] VarDecl=max_size:35:32 (Definition) 201 // CHECK: Identifier: "max_size" [35:32 - 35:40] VarDecl=max_size:35:32 (Definition [all...] |
/frameworks/compile/mclinker/include/mcld/Support/ |
Allocators.h | 229 size_type max_size() const { return m_AllocatedNum; } function in class:mcld::LinearAllocatorBase 340 size_type max_size() const throw() { return size_t(-1) / sizeof(DataType); } function in class:mcld::MallocAllocator 372 size_type max_size() const throw() { return size_t(-1) / sizeof(void*); } function in class:mcld::MallocAllocator
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/ |
sso_string_base.h | 143 { return (_M_get_allocator().max_size() - 1) / 2; } 314 // 83. String::npos vs. string::max_size() 324 // Never allocate a string bigger than max_size.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/ |
sso_string_base.h | 143 { return (_M_get_allocator().max_size() - 1) / 2; } 314 // 83. String::npos vs. string::max_size() 324 // Never allocate a string bigger than max_size.
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/ |
sso_string_base.h | 143 { return (_M_get_allocator().max_size() - 1) / 2; } 314 // 83. String::npos vs. string::max_size() 324 // Never allocate a string bigger than max_size.
|
/external/avahi/avahi-core/ |
dns.h | 33 size_t size, rindex, max_size; member in struct:AvahiDnsPacket
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/ |
service_registry.py | 311 def __MaxSizeToInt(self, max_size): 312 """Convert max_size to an int.""" 313 size_groups = re.match(r'(?P<size>\d+)(?P<unit>.B)?$', max_size) 329 config.max_size = self.__MaxSizeToInt(
|
/external/mesa3d/src/gallium/auxiliary/cso_cache/ |
cso_cache.h | 101 int max_size,
|
/external/opencv3/3rdparty/libwebp/enc/ |
histogram.h | 49 int max_size; // maximum capacity member in struct:__anon21056
|
/external/valgrind/coregrind/m_coredump/ |
coredump-macho.c | 38 void VG_(make_coredump)(ThreadId tid, const vki_siginfo_t *si, ULong max_size)
|
/external/valgrind/coregrind/ |
pub_core_coredump.h | 42 ULong max_size );
|
/external/vboot_reference/utility/ |
tlcl_generator.c | 42 * known. [max_size] is the maximum size allowed for variable-length commands 48 int max_size; member in struct:Command 157 cmd->max_size = TPM_LARGE_ENOUGH_COMMAND_SIZE; 477 cmd->name, cmd->size == 0 ? cmd->max_size : cmd->size);
|
/frameworks/av/media/libstagefright/ |
SampleTable.cpp | 498 status_t SampleTable::getMaxSampleSize(size_t *max_size) { 501 *max_size = 0; 511 if (sample_size > *max_size) { 512 *max_size = sample_size;
|
/hardware/intel/common/libmix/mix_video/src/ |
mixvideoformatenc_h264.h | 128 MIX_RESULT mix_videofmtenc_h264_get_max_encoded_buf_size (MixVideoFormatEnc *mix, guint * max_size);
|
mixvideoformatenc_mpeg4.h | 129 MIX_RESULT mix_videofmtenc_mpeg4_get_max_encoded_buf_size (MixVideoFormatEnc *mix, guint * max_size);
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_hash_map.h | 167 size_type max_size() const { return _M_ht.max_size(); } function in class:hash_map 358 size_type max_size() const { return _M_ht.max_size(); } function in class:hash_multimap
|
_hash_set.h | 168 size_type max_size() const { return _M_ht.max_size(); } function in class:hash_set 350 size_type max_size() const { return _M_ht.max_size(); } function in class:hash_multiset
|
_map.h | 173 size_type max_size() const { return _M_t.max_size(); } function in class:map 359 size_type max_size() const { return _M_t.max_size(); } function in class:multimap
|