| /art/runtime/verifier/ | 
| verifier_deps.cc | 572 template<typename T> inline T Decode(uint32_t in); 574 template<> inline uint16_t Decode<uint16_t>(uint32_t in) {
 577 template<> inline uint32_t Decode<uint32_t>(uint32_t in) {
 580 template<> inline dex::TypeIndex Decode<dex::TypeIndex>(uint32_t in) {
 583 template<> inline dex::StringIndex Decode<dex::StringIndex>(uint32_t in) {
 594   *t = Decode<dex::TypeIndex>(DecodeUint32WithOverflowCheck(in, end));
 605   T1 v1 = Decode<T1>(DecodeUint32WithOverflowCheck(in, end));
 606   T2 v2 = Decode<T2>(DecodeUint32WithOverflowCheck(in, end));
 619   T1 v1 = Decode<T1>(DecodeUint32WithOverflowCheck(in, end));
 620   T2 v2 = Decode<T2>(DecodeUint32WithOverflowCheck(in, end))
 [all...]
 | 
| /external/llvm/tools/llvm-readobj/ | 
| ARMEHABIPrinter.h | 68   void Decode(const uint8_t *Opcodes, off_t Offset, size_t Length); 291 void OpcodeDecoder::Decode(const uint8_t *Opcodes, off_t Offset, size_t Length) {
 476   OpcodeDecoder(OCC.W).Decode(Entry, Offset, Length);
 
 | 
| /external/lzma/CPP/7zip/Archive/ | 
| XzHandler.cpp | 109     RINOK(decoder.Decode(seqInStream, outStream, progress)); 545 HRESULT CDecoder::Decode(ISequentialInStream *seqInStream, ISequentialOutStream *outStream, ICompressProgressInfo *progress)
 
 | 
| /external/lzma/Java/SevenZip/Compression/LZMA/ | 
| Decoder.java | 38 		public int Decode(SevenZip.Compression.RangeCoder.Decoder rangeDecoder, int posState) throws IOException 41 				return m_LowCoder[posState].Decode(rangeDecoder);
 44 				symbol += m_MidCoder[posState].Decode(rangeDecoder);
 46 				symbol += Base.kNumMidLenSymbols + m_HighCoder.Decode(rangeDecoder);
 262 						len = m_RepLenDecoder.Decode(m_RangeDecoder, posState) + Base.kMatchMinLen;
 271 					len = Base.kMatchMinLen + m_LenDecoder.Decode(m_RangeDecoder, posState);
 273 					int posSlot = m_PosSlotDecoder[Base.GetLenToPosState(len)].Decode(m_RangeDecoder);
 
 | 
| /external/pdfium/testing/image_diff/ | 
| image_diff_png.cpp | 132   // An intermediary buffer for decode output. 315   // Mark the image as complete, this will tell the Decode function that we
 359 bool Decode(const unsigned char* input,
 668 // Decode a PNG into an RGBA pixel array.
 674   return Decode(input, input_size, FORMAT_RGBA, output, width, height);
 
 | 
| /external/tensorflow/tensorflow/core/framework/ | 
| tensor.cc | 140   static TensorBuffer* Decode(Allocator* a, const Source& in, int64 n) { 180   static TensorBuffer* Decode(Allocator* a, const Source& in, int64 n) {
 217   static TensorBuffer* Decode(Allocator* a, const Source& in, int64 n) {
 247   static TensorBuffer* Decode(Allocator* a, const Source& in, int64 n) {
 509         LOG(ERROR) << "Could not decode variant with type_name: \""
 819       CASES_WITH_DEFAULT(proto.dtype(), p = Helper<T>::Decode(a, content, N),
 [all...]
 | 
| /external/tensorflow/tensorflow/core/kernels/data/ | 
| iterator_ops.cc | 378       Decode(*other.data_); 394   bool Decode(const VariantTensorData& data) {
 431 // to manually decode the returned Variant using MaybeDecodeAndCopy in
 [all...]
 | 
| /external/v4l2_codec2/vda/ | 
| h264_decoder.cc | [all...] | 
| v4l2_video_decode_accelerator.cc | 177   // If we haven't been set up to decode on separate thread via 179   // decode tasks.
 252 void V4L2VideoDecodeAccelerator::Decode(
 509     // we're here, we know that this DecodeTask() was scheduled by a Decode()
 590     // This is a buffer queued from the client, with actual contents.  Decode.
 617     // Failed during decode.
 742   // Initial decode.  We haven't been able to get output stream format info yet.
 762   // needs more stream to decode format.
 768     // Need more stream to decode format, return true and schedule next buffer.
 [all...]
 | 
| /external/vboot_reference/utility/ | 
| efidecompress.c | 551   Decode a character/length value. 610 Decode (
 617   Decode the source data and put the resulting data into the destination buffer.
 830   Decode (Sd);
 
 | 
| /external/vixl/src/aarch32/ | 
| operands-aarch32.h | 562   static T Decode(uint32_t v) { 563     return Decode(v, FloatType<T>());
 566   static float Decode(uint32_t imm8, const FloatType<float>&) {
 570   static double Decode(uint32_t imm8, const FloatType<double>&) {
 
 | 
| /external/webrtc/webrtc/modules/video_coding/codecs/vp8/ | 
| vp8_impl.cc | [all...] | 
| /external/brotli/java/org/brotli/dec/ | 
| Decode.java | 15 final class Decode { 408     } else { // Decode Huffman-coded code lengths.
 709       Decode.readHuffmanCode(alphabetSize, group, next, s);
 [all...]
 | 
| /external/lzma/CPP/7zip/Bundles/LzmaSpec/ | 
| LzmaSpec.cpp | 249   unsigned Decode(CRangeDecoder *rc) 295   unsigned Decode(CRangeDecoder *rc, unsigned posState)
 298       return LowCoder[posState].Decode(rc);
 300       return 8 + MidCoder[posState].Decode(rc);
 301     return 16 + HighCoder.Decode(rc);
 354   int Decode(bool unpackSizeDefined, UInt64 unpackSize);
 419     unsigned posSlot = PosSlotDecoder[lenState].Decode(&RangeDec);
 467 int CLzmaDecoder::Decode(bool unpackSizeDefined, UInt64 unpackSize)
 532       len = RepLenDecoder.Decode(&RangeDec, posState);
 540       len = LenDecoder.Decode(&RangeDec, posState);
 [all...]
 | 
| /external/pdfium/core/fxcodec/codec/ | 
| fx_codec_flate.cpp | 105   int Decode(uint8_t* output, 158 int CLZWDecoder::Decode(uint8_t* dest_buf,
 787         decoder->Decode(nullptr, *dest_size, src_buf, offset, bEarlyChange);
 794     decoder->Decode(*dest_buf, *dest_size, src_buf, offset, bEarlyChange);
 
 | 
| /external/webrtc/talk/app/webrtc/java/jni/ | 
| androidmediadecoder_jni.cc | 80   int32_t Decode( 454 int32_t MediaCodecVideoDecoder::Decode(
 461     ALOGE << "Decode() - fallback to SW codec";
 465     ALOGE << "Decode() - callback_ is NULL";
 469     ALOGE << "Decode() - inputImage is incorrect";
 473     ALOGE << "Decode() - decoder is not initialized";
 494       ALOGE << "Decode() - key frame is required";
 498       ALOGE << "Decode() - complete frame is required";
 [all...]
 | 
| /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ | 
| isac.c | [all...] | 
| /external/webrtc/webrtc/modules/audio_coding/neteq/ | 
| neteq_impl.cc | 761   int decode_return_value = Decode(&packet_list, &operation, [all...]
 | 
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ | 
| certenc.h | 129     virtual HRESULT WINAPI Decode(const BSTR strBinary) = 0; 147       HRESULT (WINAPI *Decode)(ICertEncodeStringArray *This,const BSTR strBinary);
 167 #define ICertEncodeStringArray_Decode(This,strBinary) (This)->lpVtbl->Decode(This,strBinary)
 198     virtual HRESULT WINAPI Decode(const BSTR strBinary) = 0;
 215       HRESULT (WINAPI *Decode)(ICertEncodeLongArray *This,const BSTR strBinary);
 234 #define ICertEncodeLongArray_Decode(This,strBinary) (This)->lpVtbl->Decode(This,strBinary)
 262     virtual HRESULT WINAPI Decode(const BSTR strBinary) = 0;
 279       HRESULT (WINAPI *Decode)(ICertEncodeDateArray *This,const BSTR strBinary);
 298 #define ICertEncodeDateArray_Decode(This,strBinary) (This)->lpVtbl->Decode(This,strBinary)
 326     virtual HRESULT WINAPI Decode(const BSTR strBinary) = 0
 [all...]
 | 
| /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/ | 
| decode.go | 210 // These are the errors returned by Decode. 212 	ErrInvalidMode  = errors.New("invalid x86 mode in Decode")
 222 // Decode decodes the leading bytes in src as a single instruction.
 225 func Decode(src []byte, mode int) (inst Inst, err error) {
 229 // decode1 is the implementation of Decode but takes an extra
 459 	// Decode instruction stream, interpreting decoding instructions.
 467 	// Decode loop, executing decoder program.
 469 Decode:
 480 		// Read and decode ModR/M if needed by opcode.
 627 			break Decode
 [all...]
 | 
| /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/ | 
| decode.go | 210 // These are the errors returned by Decode. 212 	ErrInvalidMode  = errors.New("invalid x86 mode in Decode")
 222 // Decode decodes the leading bytes in src as a single instruction.
 225 func Decode(src []byte, mode int) (inst Inst, err error) {
 229 // decode1 is the implementation of Decode but takes an extra
 459 	// Decode instruction stream, interpreting decoding instructions.
 467 	// Decode loop, executing decoder program.
 469 Decode:
 480 		// Read and decode ModR/M if needed by opcode.
 627 			break Decode
 [all...]
 | 
| /art/runtime/ | 
| stack_map.h | 772   // Decode the encoding from a pointer, updates the pointer. 773   void Decode(const uint8_t** ptr) {
 [all...]
 | 
| /device/linaro/bootloader/edk2/BaseTools/Source/C/TianoCompress/ | 
| TianoCompress.c | 67 STATIC BOOLEAN DECODE = FALSE; [all...]
 | 
| /external/swiftshader/src/Renderer/ | 
| ETC_Decoder.cpp | 677 bool ETC_Decoder::Decode(const unsigned char* src, unsigned char *dst, int w, int h, int dstW, int dstH, int dstPitch, int dstBpp, InputType inputType) 726 				// Decode Alpha
 728 				sources[0]++; // RGBA packets are 128 bits, so move on to the next 64 bit packet to decode the RGB color
 730 				// Decode RGB
 
 | 
| /external/syslinux/gpxe/src/util/ | 
| nrv2b.c | 63 #if defined(ENCODE) || defined(DECODE) 1319 #ifdef DECODE
 1359 void Decode(void)  /* recover */
 1496 		Decode();
 
 |