HomeSort by relevance Sort by last modified time
    Searched full:coder (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /frameworks/base/core/java/android/util/
Base64InputStream.java 28 private final Base64.Coder coder; field in class:Base64InputStream
66 coder = new Base64.Encoder(flags, null);
68 coder = new Base64.Decoder(flags, null);
70 coder.output = new byte[coder.maxOutputSize(BUFFER_SIZE)];
115 return coder.output[outputStart++] & 0xff;
127 System.arraycopy(coder.output, outputStart, b, off, bytes);
134 * decode/encode it into the empty coder.output, and reset the
143 success = coder.process(EMPTY, 0, 0, true)
    [all...]
Base64OutputStream.java 28 private final Base64.Coder coder; field in class:Base64OutputStream
64 coder = new Base64.Encoder(flags, null);
66 coder = new Base64.Decoder(flags, null);
137 coder.output = embiggen(coder.output, coder.maxOutputSize(len));
138 if (!coder.process(b, off, len, finish)) {
141 out.write(coder.output, 0, coder.op)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
vcdiffengine.cc 86 CodeTableWriterInterface* coder) const {
114 coder->Add(unencoded_target_start, best_match.target_offset());
116 coder->Copy(best_match.source_offset(), best_match.size());
130 CodeTableWriterInterface* coder) const {
132 coder->Add(unencoded_target_start, unencoded_target_size);
136 // This helper function tells the coder to finish the encoding and write
141 CodeTableWriterInterface* coder) const {
142 if (target_size != static_cast<size_t>(coder->target_length())) {
146 << coder->target_length() << ")" << LOG_ENDL;
148 coder->Output(diff)
    [all...]
vcdiffengine.h 59 // (source) and target data, and uses the coder to write a
63 // All thread-specific data will be stored in the coder and diff arguments.
64 // The coder object must have been fully initialized (by calling its Init()
75 CodeTableWriterInterface* coder) const;
90 CodeTableWriterInterface* coder) const;
101 CodeTableWriterInterface* coder) const;
105 CodeTableWriterInterface* coder) const;
109 CodeTableWriterInterface* coder) const;
vcdiffengine_test.cc 341 VCDiffCodeTableWriter coder(interleaved);
342 coder.Init(engine_.dictionary_size());
343 engine_.Encode("", 0, target_matching, &diff_output_string_, &coder);
345 actual_match_counts_ = coder.match_counts();
351 VCDiffCodeTableWriter coder(interleaved);
352 coder.Init(engine_.dictionary_size());
357 &coder);
358 actual_match_counts_ = coder.match_counts();
640 VCDiffCodeTableWriter coder(interleaved);
641 coder.Init(engine_.dictionary_size())
    [all...]
vcdiff_main.cc 606 open_vcdiff::VCDiffFileBasedCoder coder; local
607 if (!coder.Encode()) {
614 open_vcdiff::VCDiffFileBasedCoder coder; local
615 if (!coder.Decode()) {
632 // Put coder into a separate scope.
634 open_vcdiff::VCDiffFileBasedCoder coder; local
635 if (!coder.Encode()) {
640 open_vcdiff::VCDiffFileBasedCoder coder; local
641 if (!coder.DecodeAndCompare()) {
  /external/libgsm/src/
code.c 24 * 4.2 FIXED POINT IMPLEMENTATION OF THE RPE-LTP CODER
34 * The RPE-LTD coder works on a frame by frame basis. The length of
36 * once per frame to produce at the output of the coder the
40 * the output of the coder:
48 * 40 samples. These parts produce at the output of the coder:
table.c 13 * CODER AND DECODER
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
seq_midi_event.h 36 * \defgroup MIDI_Event Sequencer event <-> MIDI byte stream coder
38 * Sequencer event <-> MIDI byte stream coder
  /external/libvpx/vp8/encoder/
boolhuff.h 16 * Description : Bool Coder header file.
treewriter.h 16 bit coder. Timothy S Murphy 11 October 2004 */
  /external/bluetooth/glib/
README.commits 64 git commit -a --author "Joe Coder <joe@coder.org>" and --signoff.
  /frameworks/base/media/libstagefright/codecs/aacenc/inc/
bit_cnt.h 19 Content: Huffman Bitcounter & coder structure and functions
dyn_bits.h 19 Content: Noiseless coder module structure and functions
  /external/libvpx/vp8/common/
treecoder.h 77 /* Variant of above using coder spec rather than hardwired 8-bit probs. */
  /frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
main.h 28 void coder(
cnst.h 21 * Codec constant parameters (coder and decoder) *
cod_main.h 26 #include "cnst.h" /* coder constant parameters */
  /external/tremolo/Tremolo/
ivorbiscodec.h 68 the coder does not care to speculate.
  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharsetEncoder.java 103 * @return A coder-result object describing the reason for termination
142 * @return A coder-result object describing the reason for termination
  /frameworks/base/media/libstagefright/codecs/aacenc/src/
dyn_bits.c 19 Content: Noiseless coder module functions
272 count bits used by the noiseless coder
  /frameworks/base/media/libstagefright/codecs/amrnb/common/include/
cnst_vad.h 51 #define LOOKAHEAD 40 /* length of the lookahead used by speech coder */
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
bits.c 38 Coder_State *st /*i/o: coder global parameters struct */
  /device/samsung/crespo/sec_mm/sec_omx/sec_omx_include/khronos/
OMX_Audio.h 492 /** G729 coder type */
    [all...]
  /frameworks/base/include/media/stagefright/openmax/
OMX_Audio.h 509 /** G729 coder type */
    [all...]

Completed in 1524 milliseconds

1 2 3 4