HomeSort by relevance Sort by last modified time
    Searched refs:cod (Results 1 - 25 of 37) sorted by null

1 2

  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d1035pf.h 107 Word16 cod[] /* (o) : algebraic (fixed) codebook excitation */
d2_11pf.h 86 Word16 cod[] /* o : algebraic (fixed) codebook excitation */
d3_14pf.h 107 Word16 cod[] /* o : algebraic (fixed) codebook excitation */
d4_17pf.h 108 Word16 cod[] /* o : algebraic (fixed) codebook excitation */
d8_31pf.h 108 Word16 cod[], /* o : algebraic (fixed) codebook excitation */
d2_11pf.cpp 98 cod[] -- array of type Word16 -- algebraic (fixed) codebook excitation
153 Word16 cod[] /* o : algebraic (fixed) codebook excitation */
198 cod[i] = 0;
210 * cod[pos[j]] = 8191;
214 * cod[pos[j]] = -8192;
218 cod[pos[j]] = i * 16383 - 8192;
d1035pf.cpp 95 cod = buffer of algebraic (fixed) codebook excitation
98 cod buffer contains the new algebraic codebook excitation
131 Word16 cod[] // (o) : algebraic (fixed) codebook excitation
138 cod[i] = 0;
164 cod[pos1] = sign;
178 cod[pos2] = add (cod[pos2], sign);
209 Word16 cod[] /* (o) : algebraic (fixed) codebook excitation */
217 *(cod + i) = 0;
244 *(cod + pos1) = sign
    [all...]
d2_9pf.h 110 Word16 cod[], /* o : algebraic (fixed) codebook excitation */
d2_9pf.cpp 122 cod[] -- array of type Word16 -- algebraic (fixed) codebook excitation
179 Word16 cod[], /* o : algebraic (fixed) codebook excitation */
222 cod[i] = 0;
234 * cod[pos[j]] = 8191;
238 * cod[pos[j]] = -8192;
242 cod[pos[j]] = i * 16383 - 8192;
d3_14pf.cpp 104 cod[] -- array of type Word16 -- algebraic (fixed) codebook excitation
159 Word16 cod[] /* o : algebraic (fixed) codebook excitation */
206 cod[i] = 0;
218 * cod[pos[j]] = 8191;
222 * cod[pos[j]] = -8192;
226 cod[pos[j]] = i * 16383 - 8192;
d4_17pf.cpp 124 cod[] -- array of type Word16 -- algebraic (fixed) codebook excitation
179 Word16 cod[] /* o : algebraic (fixed) codebook excitation */
245 cod[i] = 0;
257 * cod[pos[j]] = 8191;
261 * cod[pos[j]] = -8192;
265 cod[pos[j]] = i * 16383 - 8192;
b_cn_cod.h 142 Word16 cod[], /* o : Generated CN fixed codebook vector */
b_cn_cod.cpp 258 cod[] = array to hold the generated CN fixed code vector (Word16)
262 cod[] = generated CN fixed code vector (Word16)
296 Word16 cod[] // o : Generated CN fixed codebook vector
303 cod[i] = 0;
321 cod[i] = 4096;
325 cod[i] = -4096;
359 Word16 cod[], /* o : Generated CN fixed codebook vector */
368 cod[i] = 0;
383 cod[i] = 4096;
387 cod[i] = -4096
    [all...]
d8_31pf.cpp 503 cod array of type Word16 -- algebraic (fixed) codebook excitation
560 Word16 cod[], /* o : algebraic (fixed) codebook excitation */
575 cod[i] = 0;
603 cod[pos1] = sign; /* avoid buffer overflow */
619 cod[pos2] += sign; /* avoid buffer overflow */
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
c8_31pf.h 108 Word16 cod[], /* o : algebraic (fixed) codebook excitation */
c1035pf.h 111 Word16 cod[], /* (o) : algebraic (fixed) codebook excitation */
c1035pf.cpp 265 Word16 cod[], // (o) : innovative code vector
277 cod[i] = 0;
297 cod[i] = add (cod[i], 4096);
303 cod[i] = sub (cod[i], 4096);
402 Word16 cod[], /* (o) : innovative code vector */
419 memset(cod, 0, L_CODE*sizeof(*cod));
440 cod[i] += 4096
    [all...]
c8_31pf.cpp 122 cod[] Array of type Word16 -- innovative code vector
191 Word16 cod[], /* o : innovative code vector */
216 Word16 *p_cod = &cod[0];
245 cod[i] = (Word16)((Word32) cod[i] + POS_CODE);
252 cod[i] = (Word16)((Word32) cod[i] - NEG_CODE);
671 cod Array of type Word16 -- algebraic (fixed) codebook excitation
752 Word16 cod[], /* o : algebraic (fixed) codebook excitation */
812 cod,
    [all...]
c2_9pf.cpp 132 Word16 cod[], /* o : algebraic (fixed) codebook excitation */
842 cod = innovative code vector (Word16)
849 cod vector contains the new innovative code
885 Word16 cod[], // o : innovative code vector
903 cod[i] = 0;
    [all...]
  /external/lzma/CPP/7zip/Common/
CreateCoder.cpp 324 CCreatedCoder &cod)
326 cod.IsExternal = false;
327 cod.IsFilter = false;
328 cod.NumStreams = 1;
341 else if (codec.NumStreams == 1) cod.Coder = (ICompressCoder *)p;
342 else { cod.Coder2 = (ICompressCoder2 *)p; cod.NumStreams = codec.NumStreams; }
351 else if (codec.NumStreams == 1) cod.Coder = (ICompressCoder *)p;
352 else { cod.Coder2 = (ICompressCoder2 *)p; cod.NumStreams = codec.NumStreams; }
476 CCreatedCoder cod; local
490 CCreatedCoder cod; local
    [all...]
CreateCoder.h 158 CCreatedCoder &cod);
163 CCreatedCoder &cod);
169 CCreatedCoder &cod);
174 CCreatedCoder &cod);
  /external/python/cpython2/Lib/plat-mac/Carbon/
MediaDescr.py 24 name, cod, dec = name
33 name, cod, dec = name
35 cod = dec = None
37 if cod:
38 value = cod(value)
  /external/eigen/test/
qr_colpivoting.cpp 16 void cod() { function
30 CompleteOrthogonalDecomposition<MatrixType> cod(matrix);
31 VERIFY(rank == cod.rank());
32 VERIFY(cols - cod.rank() == cod.dimensionOfKernel());
33 VERIFY(!cod.isInjective());
34 VERIFY(!cod.isInvertible());
35 VERIFY(!cod.isSurjective());
37 MatrixQType q = cod.householderQ();
40 MatrixType z = cod.matrixZ()
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zEncode.cpp 155 CCreatedCoder cod; local
161 methodFull.CodecIndex, true, cod));
167 methodFull.Id, true, cod));
170 if (cod.NumStreams != methodFull.NumStreams)
172 if (!cod.Coder && !cod.Coder2)
175 CMyComPtr<IUnknown> encoderCommon = cod.Coder ? (IUnknown *)cod.Coder : (IUnknown *)cod.Coder2;
228 _mixer->AddCoder(cod);
542 NCoderMixer2::CCoderStreamsInfo cod; local
650 NCoderMixer2::CCoderStreamsInfo cod; local
    [all...]
  /external/lzma/CPP/7zip/Archive/Common/
CoderMixer2.cpp 325 void CMixerST::AddCoder(const CCreatedCoder &cod)
327 IsFilter_Vector.Add(cod.IsFilter);
328 IsExternal_Vector.Add(cod.IsExternal);
331 c2.NumStreams = cod.NumStreams;
332 c2.Coder = cod.Coder;
333 c2.Coder2 = cod.Coder2;
344 IUnknown *unk = (cod.Coder ? (IUnknown *)cod.Coder : (IUnknown *)cod.Coder2);
927 void CMixerMT::AddCoder(const CCreatedCoder &cod)
1031 CCoderMT &cod = _coders[_bi.UnpackCoder]; local
1042 CCoderMT &cod = _coders[coderIndex]; local
    [all...]

Completed in 962 milliseconds

1 2