HomeSort by relevance Sort by last modified time
    Searched refs:out_buff (Results 1 - 6 of 6) sorted by null

  /system/media/audio_utils/
channels.c 65 * i.e. in_buff == out_buff
68 #define EXPAND_CHANNELS(in_buff, in_buff_chans, out_buff, out_buff_chans, num_in_bytes, zero) \
72 typeof(out_buff) dst_ptr = out_buff + num_out_samples - 1; \
86 return num_out_samples * sizeof(*out_buff); \
96 * i.e. in_buff == out_buff
99 #define EXPAND_MONO_TO_MULTI(in_buff, in_buff_chans, out_buff, out_buff_chans, num_in_bytes, zero) \
103 typeof(out_buff) dst_ptr = out_buff + num_out_samples - 1; \
118 return num_out_samples * sizeof(*out_buff); \
    [all...]
  /system/media/audio_utils/include/audio_utils/
channels.h 28 * out_buff points to the buffer to receive converted samples.
40 void* out_buff, size_t out_buff_chans,
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFAbbreviationDeclaration.cpp 197 DWARFAbbreviationDeclaration::Append(BinaryStreamBuf& out_buff) const
199 out_buff.Append32_as_ULEB128(Code());
200 out_buff.Append32_as_ULEB128(Tag());
201 out_buff.Append8(HasChildren());
205 out_buff.Append32_as_ULEB128(m_attributes[i].attr());
206 out_buff.Append32_as_ULEB128(m_attributes[i].form());
208 out_buff.Append8(0); // Output a zero for attr (faster than using Append32_as_ULEB128)
209 out_buff.Append8(0); // Output a zero for attr (faster than using Append32_as_ULEB128)
  /external/lz4/programs/
lz4io.c 299 char* out_buff; local
315 out_buff = (char*)malloc(LZ4_compressBound(LEGACY_BLOCKSIZE));
316 if (!in_buff || !out_buff) EXM_THROW(21, "Allocation error : not enough memory");
319 LZ4IO_writeLE32(out_buff, LEGACY_MAGICNUMBER);
320 sizeCheck = fwrite(out_buff, 1, MAGICNUMBER_SIZE, foutput);
333 outSize = compressionFunction(in_buff, out_buff+4, inSize);
338 LZ4IO_writeLE32(out_buff, outSize);
339 sizeCheck = fwrite(out_buff, 1, outSize+4, foutput);
355 free(out_buff);
372 char* out_buff; local
483 char* out_buff; local
    [all...]
  /external/libxml2/
xmlsave.c 1864 xmlOutputBufferPtr out_buff; local
2415 xmlOutputBufferPtr out_buff = NULL; local
    [all...]
  /hardware/libhardware/modules/usbaudio/
audio_hal.c 778 void * out_buff = buffer; local
824 out_buff = buffer;
832 out_buff, num_req_channels,
    [all...]

Completed in 1011 milliseconds