/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;
|
SPIRVType.cpp | 288 auto Decoder = getDecoder(I); 290 Decoder >> PointerId >> SC;
|
/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 | 82 private Decoder mDecoderVideo = null; 83 private Decoder mDecoderAudio = null; 116 mDecoderVideo = new Decoder(this, mMediaSync, false); 117 mDecoderAudio = new Decoder(this, mMediaSync, true); 151 public void onTaggedAudioBufferIndex(Decoder decoder, int index) { 153 if (decoder == mDecoderAudio) { 159 public void onEos(Decoder decoder) { 161 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...] |
/prebuilts/go/darwin-x86/src/encoding/xml/ |
xml.go | 40 // In tokens returned by Decoder.Token, the Space identifier 139 // Decoder. 155 // A Decoder represents an XML parser reading a particular input stream. 157 type Decoder struct { 229 func NewDecoder(r io.Reader) *Decoder { 230 d := &Decoder{ 241 func NewTokenDecoder(t TokenReader) *Decoder { 242 // Is it already a Decoder? 243 if d, ok := t.(*Decoder); ok { 246 d := &Decoder{ [all...] |
/prebuilts/go/linux-x86/src/encoding/xml/ |
xml.go | 40 // In tokens returned by Decoder.Token, the Space identifier 139 // Decoder. 155 // A Decoder represents an XML parser reading a particular input stream. 157 type Decoder struct { 229 func NewDecoder(r io.Reader) *Decoder { 230 d := &Decoder{ 241 func NewTokenDecoder(t TokenReader) *Decoder { 242 // Is it already a Decoder? 243 if d, ok := t.(*Decoder); ok { 246 d := &Decoder{ [all...] |
/prebuilts/go/darwin-x86/src/encoding/gob/ |
decode.go | 26 // decoderState is the execution state of an instance of the decoder. A new state 29 dec *Decoder 94 // without requiring a full Decoder. 95 func (dec *Decoder) newDecoderState(buf *decBuffer) *decoderState { 107 func (dec *Decoder) freeDecoderState(d *decoderState) { 117 // Used only by the Decoder to read the message length. 219 // Since the encoder writes no zeros, if we arrive at a decoder we have 221 // (it's how we knew to call this decoder). 222 // Each decoder is responsible for handling any indirections associated 420 // decoder. It is executed with random access according to field number [all...] |
/prebuilts/go/linux-x86/src/encoding/gob/ |
decode.go | 26 // decoderState is the execution state of an instance of the decoder. A new state 29 dec *Decoder 94 // without requiring a full Decoder. 95 func (dec *Decoder) newDecoderState(buf *decBuffer) *decoderState { 107 func (dec *Decoder) freeDecoderState(d *decoderState) { 117 // Used only by the Decoder to read the message length. 219 // Since the encoder writes no zeros, if we arrive at a decoder we have 221 // (it's how we knew to call this decoder). 222 // Each decoder is responsible for handling any indirections associated 420 // decoder. It is executed with random access according to field number [all...] |
/external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/ |
MessageHeader.java | 75 Decoder decoder = new Decoder(message); local 76 mDataHeader = decoder.readDataHeader(); 80 int interfaceId = decoder.readInt(INTERFACE_ID_OFFSET); 86 mType = decoder.readInt(TYPE_OFFSET); 87 mFlags = decoder.readInt(FLAGS_OFFSET); 95 mRequestId = decoder.readLong(REQUEST_ID_OFFSET);
|
/external/vixl/src/aarch64/ |
decoder-aarch64.h | 37 // List macro containing all visitors needed by the decoder class. 145 class Decoder { 147 Decoder() {} 161 // Register a new visitor class with the decoder. 182 // are registered in this order in the decoder, calls to 197 // of visitors stored by the decoder. 209 // Decoder class.
|
/external/brotli/java/org/brotli/wrapper/dec/ |
DecoderTest.java | 22 /** Tests for {@link org.brotli.wrapper.dec.Decoder}. */ 77 byte[] decompressed = Decoder.decompress(compressed);
|
/external/lzma/Java/SevenZip/Compression/RangeCoder/ |
BitTreeEncoder.java | 17 Decoder.InitBitModels(Models);
|
/frameworks/base/core/java/android/util/ |
Base64.java | 29 * Default values for encoder/decoder flags. 53 * Encoder/decoder flag bit to indicate using the "URL and 158 Decoder decoder = new Decoder(flags, new byte[len*3/4]); local 160 if (!decoder.process(input, offset, len, true)) { 165 if (decoder.op == decoder.output.length) { 166 return decoder.output; 171 byte[] temp = new byte[decoder.op] [all...] |