Home
last modified time | relevance | path

Searched refs:chunk_type (Results 1 – 5 of 5) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Support/
DAllocators.h91 typedef ChunkType chunk_type; typedef
120 chunk_type::construct(pPtr, pValue); in construct()
128 void construct(pointer pPtr) { chunk_type::construct(pPtr); } in construct()
132 void destroy(pointer pPtr) { chunk_type::destroy(pPtr); } in destroy()
140 if (N == 0 || N > chunk_type::size()) in allocate()
146 size_type rest_num_elem = chunk_type::size() - m_pCurrent->bound; in allocate()
161 if (chunk_type::size() == m_pCurrent->bound) in allocate()
172 if (N == 0 || N > chunk_type::size() || m_pCurrent->bound == 0 || in deallocate()
194 pPtr <= &(m_pCurrent->data[chunk_type::size() - 1])) in isIn()
202 pPtr <= &(m_pCurrent->data[chunk_type::size() - 1])) in isAvailable()
[all …]
DGCFactory.h105 typedef DataIterator<typename Alloc::chunk_type,
107 typedef DataIterator<typename Alloc::chunk_type,
/frameworks/base/tools/aapt2/compile/
DPngChunkFilter.cpp121 const uint32_t chunk_type = Peek32LE(data_.data() + window_end_ + sizeof(uint32_t)); in Next() local
125 chunk_type, (size_t)chunk_len, window_end_ + kMinChunkHeaderSize, data_.size()); in Next()
130 const uint32_t chunk_type = Peek32LE(data_.data() + window_end_ + sizeof(uint32_t)); in Next() local
131 if (IsPngChunkWhitelisted(chunk_type)) { in Next()
137 if (chunk_type == kPngChunkIEND) { in Next()
/frameworks/av/media/extractors/mp4/
DMPEG4Extractor.cpp808 int32_t chunk_type = ntohl(hdr[1]); in parseChunk() local
845 MakeFourCCString(chunk_type, chunk); in parseChunk()
866 PathAdder autoAdder(&mPath, chunk_type); in parseChunk()
874 if (chunk_type != FOURCC("mdat") && chunk_data_size > kMaxAtomSize) { in parseChunk()
882 if (chunk_type != FOURCC("cprt") in parseChunk()
883 && chunk_type != FOURCC("covr") in parseChunk()
901 switch(chunk_type) { in parseChunk()
919 if (chunk_type == FOURCC("moov") && depth != 0) { in parseChunk()
924 if (chunk_type == FOURCC("moov") && mInitCheck == OK) { in parseChunk()
929 if (chunk_type == FOURCC("moof") && !mMoofFound) { in parseChunk()
[all …]
DItemTable.cpp131 int32_t chunk_type = ntohl(hdr[1]); in parseChunk() local
156 MakeFourCCString(chunk_type, chunk); in parseChunk()
165 status_t err = onChunkData(chunk_type, data_offset, chunk_data_size); in parseChunk()