Searched defs:output (Results 1 - 25 of 1376) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng_util.cpp292 ExtractZlib(std::vector<ZlibBlockInfo>* output) : zlibinfo(output) {}; argument
490 zlibinfo->back().lz77_lcode.push_back(code); //output code
522 zlibinfo->back().lz77_dcode.back() = codeD; //output distance code
523 zlibinfo->back().lz77_lbits.back() = numextrabits; //output length extra bits
524 zlibinfo->back().lz77_dbits.back() = numextrabitsD; //output dist extra bits
525 zlibinfo->back().lz77_lvalue.back() = length; //output length
526 zlibinfo->back().lz77_dvalue.back() = dist; //output dist
529 zlibinfo->back().numlit = numlit; //output number of literal symbols
530 zlibinfo->back().numlen = numlen; //output numbe
570 ExtractPNG(std::vector<ZlibBlockInfo>* output) argument
[all...]
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_core.c110 static void NonLinearProcessing(aec_t *aec, short *output, short *outputH);
476 // change the output at all and yields 0.4% overall speedup.
583 // amount of data we input and output in audio_processing.
657 int16_t output[PART_LEN]; local
822 NonLinearProcessing(aec, output, outputH);
831 // Store the output block.
832 WebRtc_WriteBuffer(aec->outFrBuf, output, PART_LEN);
847 fwrite(output, sizeof(int16_t), PART_LEN, aec->outFile);
852 static void NonLinearProcessing(aec_t *aec, short *output, short *outputH) argument
1130 // Overlap and add to obtain output
[all...]
/external/webrtc/src/modules/audio_processing/aecm/
H A Daecm_core.c402 WebRtc_Word16* output,
449 output[i] = fft[i];
787 // Stuff the out buffer if we have less than a frame to output.
795 // Obtain an output frame.
1437 // Approximation for magnitude of complex fft output
1507 WebRtc_Word16 * output)
1903 WebRtcAecm_InverseFFTAndWindow(aecm, fft, efw, output, nearendClean);
1909 // Generate comfort noise and add to output signal.
1913 // \param[in,out] outReal Real part of the output signal (Q[aecm->dfaQDomain]).
1914 // \param[in,out] outImag Imaginary part of the output signa
399 InverseFFTAndWindowC(AecmCore_t* aecm, WebRtc_Word16* fft, complex16_t* efw, WebRtc_Word16* output, const WebRtc_Word16* nearendClean) argument
1503 WebRtcAecm_ProcessBlock(AecmCore_t * aecm, const WebRtc_Word16 * farend, const WebRtc_Word16 * nearendNoisy, const WebRtc_Word16 * nearendClean, WebRtc_Word16 * output) argument
[all...]
H A Daecm_core_neon.c92 WebRtc_Word16* output,
145 // output[i] = fft[i];
151 __asm__("vst1.16 %P0, [%1, :64]" : : "w"(tmp16x4_0), "r"(&output[i]));
89 InverseFFTAndWindowNeon(AecmCore_t* aecm, WebRtc_Word16* fft, complex16_t* efw, WebRtc_Word16* output, const WebRtc_Word16* nearendClean) argument
/external/webrtc/src/modules/audio_processing/test/
H A Dunit_test.cc43 // When false, this will compare the output data with the results stored to
205 void WriteStatsMessage(const AudioProcessing::Statistic& output, argument
207 message->set_instant(output.instant);
208 message->set_average(output.average);
209 message->set_maximum(output.maximum);
210 message->set_minimum(output.minimum);
973 // TODO(andrew): expand test to verify output.
1009 // TODO(ajm): vary the output channels as well?
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_pax_common.c25 * @output: Buffer for the derived key
33 size_t output_len, u8 *output)
56 pos = output;
30 eap_pax_kdf(u8 mac_id, const u8 *key, size_t key_len, const char *identifier, const u8 *entropy, size_t entropy_len, size_t output_len, u8 *output) argument
/external/wpa_supplicant_8/src/eap_common/
H A Deap_pax_common.c25 * @output: Buffer for the derived key
33 size_t output_len, u8 *output)
56 pos = output;
30 eap_pax_kdf(u8 mac_id, const u8 *key, size_t key_len, const char *identifier, const u8 *entropy, size_t entropy_len, size_t output_len, u8 *output) argument
/external/wpa_supplicant_8/wpa_supplicant/src/eap_common/
H A Deap_pax_common.c25 * @output: Buffer for the derived key
33 size_t output_len, u8 *output)
56 pos = output;
30 eap_pax_kdf(u8 mac_id, const u8 *key, size_t key_len, const char *identifier, const u8 *entropy, size_t entropy_len, size_t output_len, u8 *output) argument
/external/valgrind/main/none/tests/s390x/
H A Dlam_stam.c5 char output[44]; variable
14 "larl 2,output\n\t"
18 write(1, output, sizeof output);
/external/webp/include/webp/
H A Ddecode.h175 // WebPDecBuffer: Generic structure for describing the output sample buffer.
263 // This output_buffer can be passed NULL, in which case a default output buffer
277 // will output the RGB/A samples specified by 'csp' into a preallocated
281 // Additionally, output_buffer can be passed NULL in which case the output
291 // will output the raw luma/chroma samples into a preallocated planes if
298 // In this case, the output buffer will be automatically allocated (using
332 // Returns the RGB/A image decoded so far. Returns NULL if output params
333 // are not initialized yet. The RGB/A output type corresponds to the colorspace
382 config.output.colorspace = MODE_BGRA;
385 // Note that you can also make config.output poin
463 WebPDecBuffer output; // Output buffer (can point to external mem) member in struct:WebPDecoderConfig
[all...]
/external/webp/src/dec/
H A Dalpha.c46 size_t data_size, int width, int height, uint8_t* output) {
53 assert(data != NULL && output != NULL);
79 ok = VP8LDecodeAlphaHeader(dec, alpha_data, alpha_data_size, output);
93 uint8_t* const output = dec->alpha_plane_; local
108 unfilter_func(width, height, width, row, num_rows, output);
45 ALPHInit(ALPHDecoder* const dec, const uint8_t* data, size_t data_size, int width, int height, uint8_t* output) argument
H A Dbuffer.c88 uint8_t* output; local
92 // => initialize output buffer, now that dimensions are known.
107 output = (uint8_t*)WebPSafeMalloc(total_size, sizeof(*output));
108 if (output == NULL) {
111 buffer->private_memory = output;
115 buf->y = output;
118 buf->u = output + size;
121 buf->v = output + size + uv_size;
125 buf->a = output
[all...]
H A Didec.c67 WebPDecParams params_; // Params to store output info
73 WebPDecBuffer output_; // output buffer (when no external one is supplied)
245 WebPDecBuffer* const output = idec->params_.output; local
249 return WebPFlipBuffer(output);
390 WebPDecBuffer* const output = params->output; local
407 // Allocate/Verify output buffer now
409 output);
498 WebPDecBuffer* const output local
[all...]
H A Dio.c10 // functions for sample output.
26 WebPDecBuffer* output = p->output; local
27 const WebPYUVABuffer* const buf = &output->u.YUVA;
48 WebPDecBuffer* const output = p->output; local
49 WebPRGBABuffer* const buf = &output->u.RGBA;
54 WebPSamplers[output->colorspace]);
63 WebPDecBuffer* output = p->output;
[all...]
H A Dvp8l.c479 const WebPDecBuffer* const output) {
480 const WebPYUVABuffer* const buf = &output->u.YUVA;
677 // Emit output.
683 // Nothing to output (this time).
685 const WebPDecBuffer* const output = dec->output_; local
686 if (output->colorspace < MODE_YUV) { // convert to RGBA
687 const WebPRGBABuffer* const buf = &output->u.RGBA;
692 EmitRows(output->colorspace, rows_data, in_stride,
701 assert(dec->last_out_row_ <= output->height);
1247 uint8_t* const output) {
478 ConvertToYUVA(const uint32_t* const src, int width, int y_pos, const WebPDecBuffer* const output) argument
1245 VP8LDecodeAlphaHeader(ALPHDecoder* const alph_dec, const uint8_t* const data, size_t data_size, uint8_t* const output) argument
[all...]
H A Dwebp.c274 // 'data'. All the output parameters may be NULL. If 'headers' is NULL only the
486 // Allocate/check output buffers.
488 params->output);
508 // Allocate/check output buffers.
510 params->output);
521 WebPFreeDecBuffer(params->output);
526 status = WebPFlipBuffer(params->output);
545 params.output = &buf;
558 uint8_t* output, size_t size, int stride) {
559 return DecodeIntoRGBABuffer(MODE_RGB, data, data_size, output, strid
557 WebPDecodeRGBInto(const uint8_t* data, size_t data_size, uint8_t* output, size_t size, int stride) argument
562 WebPDecodeRGBAInto(const uint8_t* data, size_t data_size, uint8_t* output, size_t size, int stride) argument
567 WebPDecodeARGBInto(const uint8_t* data, size_t data_size, uint8_t* output, size_t size, int stride) argument
572 WebPDecodeBGRInto(const uint8_t* data, size_t data_size, uint8_t* output, size_t size, int stride) argument
577 WebPDecodeBGRAInto(const uint8_t* data, size_t data_size, uint8_t* output, size_t size, int stride) argument
587 WebPDecBuffer output; local
615 WebPDecBuffer output; local
668 WebPDecBuffer output; // only to preserve the side-infos local
[all...]
H A Dwebpi.h25 // WebPDecParams: Decoding output parameters. Transient internal object.
32 WebPDecBuffer* output; // output buffer. member in struct:WebPDecParams
36 int last_y; // coordinate of the line that was last output
40 void* memory; // overall scratch memory for the output work.
42 OutputFunc emit; // output RGB or YUV samples
43 OutputFunc emit_alpha; // output alpha channel
44 OutputRowFunc emit_alpha_row; // output one line of rescaled alpha values
82 // to the *compressed* format, not the output one.
91 // If no external storage is supplied, initializes buffer by allocating output
[all...]
/external/webp/src/dsp/
H A Dlossless_sse2.c34 const uint32_t output = _mm_cvtsi128_si32(b); local
35 return output;
52 const uint32_t output = _mm_cvtsi128_si32(A5); local
53 return output;
91 const uint32_t output = _mm_cvtsi128_si32(A2); local
92 return output;
102 const uint32_t output = _mm_cvtsi128_si32(A2); local
103 return output;
113 const uint32_t output = _mm_cvtsi128_si32(A0); local
114 return output;
[all...]
/external/webp/src/enc/
H A Dalpha.c34 // the compressed output size. In range 0 (quick) to 6 (slow).
36 // 'output' corresponds to the buffer containing compressed alpha data.
38 // WebPSafeFree(*output) when done.
226 uint8_t** const output,
260 *output = VP8BitWriterBuf(&best.bw);
270 uint8_t** const output, size_t* const output_size) {
284 assert(output != NULL && output_size != NULL);
321 filter, reduce_levels, effort_level, output,
223 ApplyFiltersAndEncode(const uint8_t* alpha, int width, int height, size_t data_size, int method, int filter, int reduce_levels, int effort_level, uint8_t** const output, size_t* const output_size, WebPAuxStats* const stats) argument
267 EncodeAlpha(VP8Encoder* const enc, int quality, int method, int filter, int effort_level, uint8_t** const output, size_t* const output_size) argument
H A Dbackward_references.c470 int num_symbols, const uint32_t population_counts[], double output[]) {
481 memset(output, 0, num_symbols * sizeof(*output));
485 output[i] = logsum - VP8LFastLog2(population_counts[i]);
469 ConvertPopulationCountTableToBitEstimates( int num_symbols, const uint32_t population_counts[], double output[]) argument
H A Dpicture.c233 uint8_t** output) {
256 *output = NULL;
259 *output = wrt.mem;
231 Encode(const uint8_t* rgba, int width, int height, int stride, Importer import, float quality_factor, int lossless, uint8_t** output) argument
/external/valgrind/main/coregrind/
H A Dm_libcproc.c170 HChar *output = varp; local
184 prev = *output;
185 *output = '\0';
189 *output = prev;
192 output = entry_start;
195 entry_start = output+1; /* entry starts after ':' */
199 *output++ = *varp++;
203 *output = '\0';
207 output = entry_start;
208 if (output > star
[all...]
/external/tinyxml/
H A Dtinyxmlparser.cpp79 void TiXmlBase::ConvertUTF32ToUTF8( unsigned long input, char* output, int* length ) argument
96 output += *length;
102 --output;
103 *output = (char)((input | BYTE_MARK) & BYTE_MASK);
106 --output;
107 *output = (char)((input | BYTE_MARK) & BYTE_MASK);
110 --output;
111 *output = (char)((input | BYTE_MARK) & BYTE_MASK);
114 --output;
115 *output
[all...]
/external/tinyxml2/
H A Dtinyxml2.cpp261 void XMLUtil::ConvertUTF32ToUTF8( unsigned long input, char* output, int* length ) argument
278 output += *length;
284 --output;
285 *output = (char)((input | BYTE_MARK) & BYTE_MASK);
288 --output;
289 *output = (char)((input | BYTE_MARK) & BYTE_MASK);
292 --output;
293 *output = (char)((input | BYTE_MARK) & BYTE_MASK);
296 --output;
297 *output
[all...]

Completed in 1275 milliseconds

1234567891011>>