/external/lzma/CS/7zip/Compress/RangeCoder/ |
RangeCoderBitTree.cs | 120 public uint Decode(RangeCoder.Decoder rangeDecoder)
128 public uint ReverseDecode(RangeCoder.Decoder rangeDecoder)
143 RangeCoder.Decoder rangeDecoder, int NumBitLevels)
|
/external/libvpx/libvpx/test/ |
invalid_file_test.cc | 55 libvpx_test::Decoder *decoder) { 73 << ". (" << decoder->DecodeError() 79 << ". (" << decoder->DecodeError() << ")"; 159 virtual void HandlePeekResult(libvpx_test::Decoder *const /*decoder*/,
|
frame_size_tests.cc | 30 libvpx_test::Decoder *decoder) { 31 EXPECT_EQ(expected_res_, res_dec) << decoder->DecodeError();
|
/external/lzma/CS/7zip/Compress/LZMA/ |
LzmaDecoder.cs | 9 public class Decoder : ICoder, ISetDecoderProperties // ,System.IO.Stream
42 public uint Decode(RangeCoder.Decoder rangeDecoder, uint posState)
69 public byte DecodeNormal(RangeCoder.Decoder rangeDecoder)
78 public byte DecodeWithMatchByte(RangeCoder.Decoder rangeDecoder, byte matchByte)
128 public byte DecodeNormal(RangeCoder.Decoder rangeDecoder, uint pos, byte prevByte)
131 public byte DecodeWithMatchByte(RangeCoder.Decoder rangeDecoder, uint pos, byte prevByte, byte matchByte)
136 RangeCoder.Decoder m_RangeDecoder = new RangeCoder.Decoder();
160 public Decoder()
|
/frameworks/base/core/java/android/net/metrics/ |
ApfProgramEvent.java | 118 names.add(Decoder.constants.get(bit)); 123 final static class Decoder {
|
/frameworks/base/tests/HierarchyViewerTest/src/com/android/test/hierarchyviewer/ |
ViewDumpParser.java | 15 Decoder d = new Decoder(ByteBuffer.wrap(data));
|
/external/v8/src/arm64/ |
decoder-arm64-inl.h | 8 #include "src/arm64/decoder-arm64.h" 19 void Decoder<V>::Decode(Instruction *instr) { 98 void Decoder<V>::DecodePCRelAddressing(Instruction* instr) { 108 void Decoder<V>::DecodeBranchSystemException(Instruction* instr) { 210 void Decoder<V>::DecodeLoadStore(Instruction* instr) { 338 void Decoder<V>::DecodeLogical(Instruction* instr) { 358 void Decoder<V>::DecodeBitfieldExtract(Instruction* instr) { 384 void Decoder<V>::DecodeAddSubImmediate(Instruction* instr) { 395 void Decoder<V>::DecodeDataProcessing(Instruction* instr) { 511 void Decoder<V>::DecodeFP(Instruction* instr) [all...] |
/art/disassembler/ |
disassembler_arm64.h | 25 #include "aarch64/decoder-aarch64.h" 76 decoder.AppendVisitor(&disasm); 83 vixl::aarch64::Decoder decoder; member in class:art::arm64::FINAL
|
/external/lzma/Java/SevenZip/Compression/RangeCoder/ |
Decoder.java | 4 public class Decoder
|
/external/spirv-llvm/lib/SPIRV/libSPIRV/ |
SPIRVDecorate.cpp | 114 SPIRVDecoder Decoder = getDecoder(I); 115 Decoder >> Target >> Dec; 117 SPIRVDecorateLinkageAttr::decodeLiterals(Decoder, Literals); 119 Decoder >> Literals;
|
SPIRVDecorate.h | 182 static void decodeLiterals(SPIRVDecoder& Decoder, std::vector<SPIRVWord>& Literals) { 186 Decoder >> Name; 188 Decoder >> Kind; 193 Decoder >> Literals;
|
/external/v8/src/s390/ |
disasm-s390.cc | 44 // Decoder decodes and disassembles instructions into an output buffer. 47 class Decoder { 49 Decoder(const disasm::NameConverter& converter, Vector<char> out_buffer) 54 ~Decoder() {} 89 DISALLOW_COPY_AND_ASSIGN(Decoder); 92 // Support for assertions in the Decoder formatting functions. 97 void Decoder::PrintChar(const char ch) { out_buffer_[out_buffer_pos_++] = ch; } 100 void Decoder::Print(const char* str) { 110 void Decoder::PrintRegister(int reg) { 115 void Decoder::PrintDRegister(int reg) [all...] |
/external/vixl/examples/aarch64/ |
add4-double.cc | 57 Decoder decoder; local 58 Simulator simulator(&decoder);
|
check-bounds.cc | 82 Decoder decoder; local 83 Simulator simulator(&decoder);
|
crc-checksums.cc | 81 Decoder decoder; local 82 Simulator simulator(&decoder);
|
factorial-rec.cc | 60 Decoder decoder; local 61 Simulator simulator(&decoder);
|
literal.cc | 35 Decoder decoder; local 36 Simulator simulator(&decoder);
|
simulated-runtime-calls.cc | 98 Decoder decoder; local 99 Simulator simulator(&decoder);
|
sum-array.cc | 64 Decoder decoder; local 65 Simulator simulator(&decoder);
|
swap-int32.cc | 66 Decoder decoder; local 67 Simulator simulator(&decoder);
|
swap4.cc | 52 Decoder decoder; local 53 Simulator simulator(&decoder);
|
/libcore/ojluni/src/test/java/security/cert/ |
AKISerialNumberTest.java | 108 private static Base64.Decoder b64Decoder = Base64.getMimeDecoder();
|
/cts/tests/tests/media/src/android/media/cts/ |
MediaSyncTest.java | 80 private Decoder mDecoderVideo = null; 81 private Decoder mDecoderAudio = null; 114 mDecoderVideo = new Decoder(this, mMediaSync, false); 115 mDecoderAudio = new Decoder(this, mMediaSync, true); 149 public void onTaggedAudioBufferIndex(Decoder decoder, int index) { 151 if (decoder == mDecoderAudio) { 157 public void onEos(Decoder decoder) { 159 if (decoder == mDecoderAudio) [all...] |
/external/llvm/utils/TableGen/ |
FixedLenDecoderEmitter.cpp | 1 //===------------ FixedLenDecoderEmitter.cpp - Decoder Generator ----------===// 10 // It contains the tablegen backend that emits the decoder functions for 36 #define DEBUG_TYPE "decoder-emitter" 47 std::string Decoder; 51 : Decoder(std::move(D)), HasCompleteDecoder(HCD) {} 98 // Emit the decoder state machine table. 214 /// which could have been used by the decoder to resolve the conflict. The 215 /// decoder could try to decode the even/odd register numbering and assign to 216 /// VST4q8a or VST4q8b, but for the time being, the decoder chooses the "a" 690 // Emit the decoder state machine table [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/ |
TestBenchMultipleInstance.c | 54 } Decoder; 72 Decoder **decoder; local 134 /* allocate memory for multiple decoder instances 136 decoder = (Decoder **)malloc(sizeof(Decoder*)*(u32)instCount); 137 if (decoder == NULL) 143 /* prepare each decoder instance */ 146 decoder[i] = (Decoder *)calloc(1, sizeof(Decoder)) [all...] |