| /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/ |
| decode.go | 21 // args describe how to decode the instruction arguments. 40 // Decode decodes the 4 bytes in src as a single instruction. 41 func Decode(src []byte) (inst Inst, err error) { 57 // Decode args. 64 if arg == nil { // Cannot decode argument [all...] |
| /prebuilts/go/darwin-x86/src/compress/bzip2/ |
| huffman.go | 34 // Decode reads bits from the given bitReader and navigates the tree until a 36 func (t *huffmanTree) Decode(br *bitReader) (v uint16) {
|
| /prebuilts/go/darwin-x86/src/encoding/ascii85/ |
| ascii85.go | 175 // Decode decodes src into dst, returning both the number 177 // If src contains invalid ascii85 data, Decode will return the 179 // Decode ignores space and control characters in src. 181 // Decode expects these to have been stripped by the caller. 183 // If flush is true, Decode assumes that src represents the 187 // NewDecoder wraps an io.Reader interface around Decode. 189 func Decode(dst, src []byte, flush bool) (ndst, nsrc int, err error) { 267 // Copy leftover output from last decode. 274 // Decode leftover input from last read. 277 ndst, nsrc, d.err = Decode(d.outbuf[0:], d.buf[0:d.nbuf], d.readErr != nil [all...] |
| /prebuilts/go/darwin-x86/src/encoding/gob/ |
| decoder.go | 169 // Decode reads the next value from the input stream and stores 174 // If the input is at EOF, Decode returns io.EOF and 176 func (dec *Decoder) Decode(e interface{}) error { 184 dec.err = errors.New("gob: attempt to decode into a non-pointer")
|
| /prebuilts/go/darwin-x86/src/image/ |
| format.go | 16 // A format holds an image format's name, magic header and how to decode it. 19 decode func(io.Reader) (Image, error) 26 // RegisterFormat registers an image format for use by Decode. 30 // Decode is the function that decodes the encoded image. 32 func RegisterFormat(name, magic string, decode func(io.Reader) (Image, error), decodeConfig func(io.Reader) (Config, error)) { 33 formats = append(formats, format{name, magic, decode, decodeConfig}) 74 // Decode decodes an image that has been encoded in a registered format. 78 func Decode(r io.Reader) (Image, string, error) { 81 if f.decode == nil { 84 m, err := f.decode(rr [all...] |
| /prebuilts/go/darwin-x86/src/unicode/utf16/ |
| utf16.go | 86 // Decode returns the Unicode code point sequence represented 88 func Decode(s []uint16) []rune {
|
| /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/ |
| decode.go | 21 // args describe how to decode the instruction arguments. 40 // Decode decodes the 4 bytes in src as a single instruction. 41 func Decode(src []byte) (inst Inst, err error) { 57 // Decode args. 64 if arg == nil { // Cannot decode argument [all...] |
| /prebuilts/go/linux-x86/src/compress/bzip2/ |
| huffman.go | 34 // Decode reads bits from the given bitReader and navigates the tree until a 36 func (t *huffmanTree) Decode(br *bitReader) (v uint16) {
|
| /prebuilts/go/linux-x86/src/encoding/ascii85/ |
| ascii85.go | 175 // Decode decodes src into dst, returning both the number 177 // If src contains invalid ascii85 data, Decode will return the 179 // Decode ignores space and control characters in src. 181 // Decode expects these to have been stripped by the caller. 183 // If flush is true, Decode assumes that src represents the 187 // NewDecoder wraps an io.Reader interface around Decode. 189 func Decode(dst, src []byte, flush bool) (ndst, nsrc int, err error) { 267 // Copy leftover output from last decode. 274 // Decode leftover input from last read. 277 ndst, nsrc, d.err = Decode(d.outbuf[0:], d.buf[0:d.nbuf], d.readErr != nil [all...] |
| /prebuilts/go/linux-x86/src/encoding/gob/ |
| decoder.go | 169 // Decode reads the next value from the input stream and stores 174 // If the input is at EOF, Decode returns io.EOF and 176 func (dec *Decoder) Decode(e interface{}) error { 184 dec.err = errors.New("gob: attempt to decode into a non-pointer")
|
| /prebuilts/go/linux-x86/src/image/ |
| format.go | 16 // A format holds an image format's name, magic header and how to decode it. 19 decode func(io.Reader) (Image, error) 26 // RegisterFormat registers an image format for use by Decode. 30 // Decode is the function that decodes the encoded image. 32 func RegisterFormat(name, magic string, decode func(io.Reader) (Image, error), decodeConfig func(io.Reader) (Config, error)) { 33 formats = append(formats, format{name, magic, decode, decodeConfig}) 74 // Decode decodes an image that has been encoded in a registered format. 78 func Decode(r io.Reader) (Image, string, error) { 81 if f.decode == nil { 84 m, err := f.decode(rr [all...] |
| /prebuilts/go/linux-x86/src/unicode/utf16/ |
| utf16.go | 86 // Decode returns the Unicode code point sequence represented 88 func Decode(s []uint16) []rune {
|
| /system/nvram/messages/ |
| message_codec.cpp | 89 bool MessageDecoderBase::Decode(void* object, 94 return decoder.Decode(reader); 97 bool MessageDecoderBase::Decode(ProtoReader* reader) {
|
| /art/runtime/ |
| scoped_thread_state_change-inl.h | 89 inline ObjPtr<T> ScopedObjectAccessAlreadyRunnable::Decode(jobject obj) const {
|
| /external/brotli/java/org/brotli/dec/ |
| BrotliInputStream.java | 79 Decode.initState(state, source); 90 Decode.close(state); 139 Decode.decompress(state);
|
| /external/lzma/CS/7zip/Compress/RangeCoder/ |
| RangeCoderBit.cs | 89 public uint Decode(RangeCoder.Decoder rangeDecoder)
|
| /external/tensorflow/tensorflow/contrib/coder/kernels/ |
| range_coder.cc | 308 int32 RangeDecoder::Decode(tensorflow::gtl::ArraySlice<int32> cdf) {
|
| /external/tensorflow/tensorflow/core/framework/ |
| variant_test.cc | 147 bool Decode(const VariantTensorData& data) { 189 y.Decode(serialized); 261 y.Decode(serialized); 277 y.Decode(serialized);
|
| /external/v4l2_codec2/vda/ |
| vp8_decoder.cc | 53 VP8Decoder::DecodeResult VP8Decoder::Decode() { 61 DVLOG(1) << "Error during decode";
|
| /prebuilts/go/darwin-x86/src/encoding/pem/ |
| pem.go | 74 // Decode will find the next PEM formatted block (certificate, private key 78 func Decode(data []byte) (p *Block, rest []byte) { 160 n, err := base64.StdEncoding.Decode(p.Bytes, base64Data) 194 p, rest := Decode(rest)
|
| /prebuilts/go/darwin-x86/src/encoding/xml/ |
| read.go | 128 return NewDecoder(bytes.NewReader(data)).Decode(v) 131 // Decode works like Unmarshal, except it reads the decoder 133 func (d *Decoder) Decode(v interface{}) error { 138 // a pointer to the start XML element to decode into v.
|
| /prebuilts/go/linux-x86/src/encoding/pem/ |
| pem.go | 74 // Decode will find the next PEM formatted block (certificate, private key 78 func Decode(data []byte) (p *Block, rest []byte) { 160 n, err := base64.StdEncoding.Decode(p.Bytes, base64Data) 194 p, rest := Decode(rest)
|
| /prebuilts/go/linux-x86/src/encoding/xml/ |
| read.go | 128 return NewDecoder(bytes.NewReader(data)).Decode(v) 131 // Decode works like Unmarshal, except it reads the decoder 133 func (d *Decoder) Decode(v interface{}) error { 138 // a pointer to the start XML element to decode into v.
|
| /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
| LegacyRegion2.h | 32 Modify the hardware to allow (decode) or disallow (not decode) memory reads in a region.
49 @param On[in] Decode / Non-Decode flag.
101 reset the boot-lock attribute. Calls to Decode(), Lock() and Unlock() will have no effect.
230 EFI_LEGACY_REGION2_DECODE Decode;
|
| /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
| filters.py | 58 text = text.decode("utf8") 65 class Decode(object): 67 def decode(x): function in function:Decode.__getattr__ 71 return decode(str(x)) 74 return decode 75 decode = Decode() variable 188 'decode': 'decode',
|