Home
last modified time | relevance | path

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

/frameworks/compile/mclinker/unittests/
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()
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()
/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/av/media/libstagefright/
DSampleTable.cpp584 status_t SampleTable::getMaxSampleSize(size_t *max_size) { in getMaxSampleSize() argument
587 *max_size = 0; in getMaxSampleSize()
597 if (sample_size > *max_size) { in getMaxSampleSize()
598 *max_size = sample_size; in getMaxSampleSize()
DMPEG4Extractor.cpp1589 size_t max_size; in parseChunk() local
1590 err = mLastTrack->sampleTable->getMaxSampleSize(&max_size); in parseChunk()
1596 if (max_size != 0) { in parseChunk()
1601 if (max_size > SIZE_MAX - 10 * 2) { in parseChunk()
1602 ALOGE("max sample size too big: %zu", max_size); in parseChunk()
1605 mLastTrack->meta->setInt32(kKeyMaxInputSize, max_size + 10 * 2); in parseChunk()
1630 max_size = ((width + 15) / 16) * ((height + 15) / 16) * 192; in parseChunk()
1634 max_size = width * height * 3 / 2; in parseChunk()
1636 mLastTrack->meta->setInt32(kKeyMaxInputSize, max_size); in parseChunk()
3651 size_t max_size = tmp; in start() local
[all …]
/frameworks/compile/mclinker/include/mcld/Script/
DFlexLexer.h138 virtual int LexerInput(char* buf, int max_size);
/frameworks/opt/net/wifi/service/lib/
Dwifi_hal_stub.cpp40 wifi_error wifi_get_concurrency_matrix_stub(wifi_interface_handle handle, int max_size, in wifi_get_concurrency_matrix_stub() argument