Home
last modified time | relevance | path

Searched refs:max_size (Results 1 – 12 of 12) sorted by relevance

/frameworks/compile/mclinker/unittests/
DLinearAllocatorTest.cpp40 ASSERT_EQ(CHUNK_SIZE, m_pTestee->max_size()); in TEST_F()
47 ASSERT_EQ(CHUNK_SIZE, m_pTestee->max_size()); in TEST_F()
54 ASSERT_TRUE(0 == m_pTestee->max_size()); in TEST_F()
DRTLinearAllocatorTest.cpp41 ASSERT_TRUE(CHUNK_SIZE == m_pTestee->max_size()); in TEST_F()
48 ASSERT_TRUE(CHUNK_SIZE == m_pTestee->max_size()); in TEST_F()
55 ASSERT_TRUE(0 == m_pTestee->max_size()); in TEST_F()
/frameworks/compile/mclinker/include/mcld/Support/
DAllocators.h229 size_type max_size() const { return m_AllocatedNum; } in max_size() function
340 size_type max_size() const throw() { return size_t(-1) / sizeof(DataType); } in max_size() function
372 size_type max_size() const throw() { return size_t(-1) / sizeof(void*); } in max_size() function
DGCFactory.h173 unsigned int capacity() const { return Alloc::max_size(); } in capacity()
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
Dbuffer_wrapper.h80 size_type max_size() const { return capacity_; } in max_size() function
133 size_type max_size() const { return buffer_.capacity(); } in max_size() function
Darray_wrapper.h80 size_type max_size() const { return capacity_; } in max_size() function
Dstring_wrapper.h86 size_type max_size() const { return capacity_; } in max_size() function
/frameworks/av/media/libstagefright/
DSampleTable.cpp596 status_t SampleTable::getMaxSampleSize(size_t *max_size) { in getMaxSampleSize() argument
599 *max_size = 0; in getMaxSampleSize()
609 if (sample_size > *max_size) { in getMaxSampleSize()
610 *max_size = sample_size; in getMaxSampleSize()
DMPEG4Extractor.cpp1632 size_t max_size; in parseChunk() local
1633 err = mLastTrack->sampleTable->getMaxSampleSize(&max_size); in parseChunk()
1639 if (max_size != 0) { in parseChunk()
1644 if (max_size > SIZE_MAX - 10 * 2) { in parseChunk()
1645 ALOGE("max sample size too big: %zu", max_size); in parseChunk()
1648 mLastTrack->meta->setInt32(kKeyMaxInputSize, max_size + 10 * 2); in parseChunk()
1673 max_size = ((width + 15) / 16) * ((height + 15) / 16) * 192; in parseChunk()
1677 max_size = width * height * 3 / 2; in parseChunk()
1681 max_size += max_size / 10; in parseChunk()
1682 mLastTrack->meta->setInt32(kKeyMaxInputSize, max_size); in parseChunk()
[all …]
/frameworks/compile/mclinker/include/mcld/Script/
DFlexLexer.h138 virtual int LexerInput(char* buf, int max_size);
/frameworks/opt/net/wifi/libwifi_hal/
Dhal_tool.cpp41 int max_size, feature_set* matrix, in wifi_get_concurrency_matrix_stub() argument
/frameworks/native/libs/binder/include/binder/
DParcel.h719 if (val->max_size() < static_cast<size_t>(size)) { in unsafeReadTypedVector()