Searched refs:in_buffer (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/tools/aapt2/io/
H A DUtil.cpp77 const void* in_buffer; local
79 while (in->Next(&in_buffer, &in_len)) {
87 memcpy(out_buffer, in_buffer, bytes_to_copy);
/frameworks/av/media/libstagefright/
H A DSimpleDecodingSource.cpp239 sp<MediaCodecBuffer> in_buffer; local
241 res = mCodec->getInputBuffer(in_ix, &in_buffer);
244 if (res != OK || in_buffer == NULL) {
294 if (in_buf->range_length() + (mIsVorbis ? 4 : 0) > in_buffer->capacity()) {
297 in_buf->range_length() + (mIsVorbis ? 4 : 0), in_buffer->capacity());
299 size_t cpLen = min(in_buf->range_length(), in_buffer->capacity());
300 memcpy(in_buffer->base(), (uint8_t *)in_buf->data() + in_buf->range_offset(),
308 memcpy(in_buffer->base() + cpLen, &numPageSamples, sizeof(numPageSamples));
/frameworks/base/tools/aapt2/compile/
H A DPngCrunch.cpp86 const void* in_buffer; local
88 if (!in->Next(&in_buffer, &in_len)) {
102 memcpy(buffer, in_buffer, bytes_read);

Completed in 160 milliseconds