Searched defs:max_size (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
H A DAllocators.h237 size_type max_size() const function in class:mcld::LinearAllocatorBase
357 size_type max_size() const throw() function in class:mcld::MallocAllocator
396 size_type max_size() const throw() function in class:mcld::MallocAllocator
/frameworks/av/media/libstagefright/
H A DFragmentedMP4Extractor.cpp225 int32_t max_size = 65536; local
226 // XXX CHECK(mFormat->findInt32(kKeyMaxInputSize, &max_size));
228 mGroup->add_buffer(new MediaBuffer(max_size));
230 mSrcBuffer = new uint8_t[max_size];
H A DSampleTable.cpp442 status_t SampleTable::getMaxSampleSize(size_t *max_size) { argument
445 *max_size = 0;
455 if (sample_size > *max_size) {
456 *max_size = sample_size;
H A DMPEG4Extractor.cpp1070 size_t max_size; local
1071 err = mLastTrack->sampleTable->getMaxSampleSize(&max_size);
1081 mLastTrack->meta->setInt32(kKeyMaxInputSize, max_size + 10 * 2);
1960 int32_t max_size; local
1961 CHECK(mFormat->findInt32(kKeyMaxInputSize, &max_size));
1963 mGroup->add_buffer(new MediaBuffer(max_size));
1965 mSrcBuffer = new uint8_t[max_size];

Completed in 72 milliseconds