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

/frameworks/compile/mclinker/include/mcld/Support/
H A DAllocators.h251 size_type max_size() const function in class:mcld::LinearAllocatorBase
371 size_type max_size() const throw() function in class:mcld::MallocAllocator
410 size_type max_size() const throw() function in class:mcld::MallocAllocator
/frameworks/av/media/libstagefright/
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.cpp1364 size_t max_size; local
1365 err = mLastTrack->sampleTable->getMaxSampleSize(&max_size);
1371 if (max_size != 0) {
1376 mLastTrack->meta->setInt32(kKeyMaxInputSize, max_size + 10 * 2);
1392 max_size = ((width + 15) / 16) * ((height + 15) / 16) * 192;
1396 max_size = width * height * 3 / 2;
1398 mLastTrack->meta->setInt32(kKeyMaxInputSize, max_size);
2454 int32_t max_size; local
2455 CHECK(mFormat->findInt32(kKeyMaxInputSize, &max_size));
2457 mGroup->add_buffer(new MediaBuffer(max_size));
[all...]

Completed in 60 milliseconds