Searched defs:output_buffer (Results 1 - 11 of 11) sorted by relevance

/external/openssh/
H A Dcompress.c81 * Compresses the contents of input_buffer into output_buffer. All packets
84 * output_buffer can be decompressed independently (but in the appropriate
90 buffer_compress(Buffer * input_buffer, Buffer * output_buffer) argument
113 /* Append compressed data to output_buffer. */
114 buffer_append(output_buffer, buf,
126 * Uncompresses the contents of input_buffer into output_buffer. All packets
129 * each output_buffer. This must be called for the same size units that the
135 buffer_uncompress(Buffer * input_buffer, Buffer * output_buffer) argument
151 buffer_append(output_buffer, buf,
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dfunctional.rb191 def output_buffer method in class:ANTLR3.Test.CaptureOutput
192 defined?( @output_buffer ) or @output_buffer = StringIO.new( '' )
193 @output_buffer
197 output_buffer.string
201 output_buffer.puts( *args )
205 output_buffer.write( *args )
/external/chromium/net/base/
H A Dsdch_filter_unittest.cc119 scoped_array<char> output_buffer(new char[output_buffer_length]);
132 status = filter->ReadData(output_buffer.get(), &buffer_length);
133 output->append(output_buffer.get(), buffer_length);
161 char output_buffer[20]; local
169 int output_bytes_or_buffer_size = sizeof(output_buffer);
170 Filter::FilterStatus status = filter->ReadData(output_buffer,
181 char output_buffer[20]; local
202 int output_bytes_or_buffer_size = sizeof(output_buffer);
203 Filter::FilterStatus status = filter->ReadData(output_buffer,
208 ASSERT_GT(sizeof(output_buffer),
219 char output_buffer[20]; local
260 char output_buffer[20]; local
297 char output_buffer[20]; local
338 char output_buffer[20]; local
[all...]
/external/chromium/third_party/libevent/
H A Devhttp.h226 struct evbuffer *output_buffer; /* outgoing post or data */ member in struct:evhttp_request
H A Dhttp-internal.h61 struct evbuffer *output_buffer; member in struct:evhttp_connection
/external/webp/include/webp/
H A Ddecode.h75 // directly into a pre-allocated buffer 'output_buffer'. The maximum storage
78 // Otherwise, output_buffer is returned, for convenience.
84 uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
87 uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
90 uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
96 uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
99 uint8_t* output_buffer, size_t output_buffer_size, int output_stride);
243 // This output_buffer can be passed NULL, in which case a default output buffer
244 // is used (with MODE_RGB). Otherwise, an internal reference to 'output_buffer'
245 // is kept, which means that the lifespan of 'output_buffer' mus
248 WEBP_EXTERN(WebPIDecoder*) WebPINewDecoder(WebPDecBuffer* output_buffer); variable
[all...]
/external/webp/src/dec/
H A Didec.c538 WebPIDecoder* WebPINewDecoder(WebPDecBuffer* output_buffer) { argument
552 idec->params_.output = output_buffer ? output_buffer : &idec->output_;
597 WebPIDecoder* WebPINewRGB(WEBP_CSP_MODE mode, uint8_t* output_buffer, argument
605 idec->output_.u.RGBA.rgba = output_buffer;
/external/gcc-demangle/
H A Dcp-demangle.c4924 __cxa_demangle (const char *mangled_name, char *output_buffer, argument
4937 if (output_buffer != NULL && length == NULL)
4958 if (output_buffer == NULL)
4967 strcpy (output_buffer, demangled);
4969 demangled = output_buffer;
4973 free (output_buffer);
/external/valgrind/main/coregrind/m_demangle/
H A Dcp-demangle.c4523 __cxa_demangle (const char *mangled_name, char *output_buffer, argument
4536 if (output_buffer != NULL && length == NULL)
4557 if (output_buffer == NULL)
4566 strcpy (output_buffer, demangled);
4568 demangled = output_buffer;
4572 free (output_buffer);
/external/v8/test/cctest/
H A Dtest-debug.cc2504 int AsciiToUtf16(const char* input_buffer, uint16_t* output_buffer) { argument
2508 output_buffer[i] = static_cast<unsigned char>(input_buffer[i]);
2510 output_buffer[i] = 0;
2518 char* output_buffer, int output_len = -1) {
2526 output_buffer[i] = static_cast<char>(input_buffer[i]);
2528 output_buffer[length] = '\0';
2517 Utf16ToAscii(const uint16_t* input_buffer, int length, char* output_buffer, int output_len = -1) argument
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 366 milliseconds