HomeSort by relevance Sort by last modified time
    Searched refs:Decode (Results 226 - 250 of 560) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/compress/bzip2/
move_to_front.go 39 func (m moveToFrontDecoder) Decode(n int) (b byte) {
  /prebuilts/go/linux-x86/src/encoding/gob/
example_encdec_test.go 53 err = dec.Decode(&v)
55 log.Fatal("decode:", err)
  /prebuilts/go/linux-x86/src/encoding/hex/
example_test.go 30 n, err := hex.Decode(dst, src)
  /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) {
154 n, err := base64.StdEncoding.Decode(p.Bytes, base64Data)
188 p, rest := Decode(rest)
  /art/runtime/
stack_map.h 768 // Decode the encoding from a pointer, updates the pointer.
769 void Decode(const uint8_t** ptr) {
    [all...]
transaction_test.cc 37 hs.NewHandle(soa.Decode<mirror::ClassLoader>(jclass_loader)));
174 hs.NewHandle(soa.Decode<mirror::ClassLoader>(LoadDex("Transaction"))));
272 hs.NewHandle(soa.Decode<mirror::ClassLoader>(LoadDex("Transaction"))));
374 hs.NewHandle(soa.Decode<mirror::ClassLoader>(LoadDex("Transaction"))));
491 hs.NewHandle(soa.Decode<mirror::ClassLoader>(LoadDex("Transaction"))));
540 hs.NewHandle(soa.Decode<mirror::ClassLoader>(LoadDex("Transaction"))));
564 hs.NewHandle(soa.Decode<mirror::ClassLoader>(LoadDex("Transaction"))));
  /prebuilts/go/darwin-x86/src/image/png/
reader_test.go 79 return Decode(f)
84 // png.Decode returns an image.Image.
101 // png.Decode returns an image.Image.
111 // image.Image type returned by png.Decode, such as image.RGBA (with all pixels
488 _, err := Decode(strings.NewReader(pngHeader + ihdr + idat + iend))
503 _, err := Decode(strings.NewReader(pngHeader + ihdr + idatWhite + idatZero + iend))
512 img, err := Decode(strings.NewReader(pngHeader + ihdr + idatWhite + idatBlack + iend))
553 m, err := Decode(bytes.NewReader(b))
585 _, err := Decode(bytes.NewReader(data))
605 Decode(strings.NewReader(s)
    [all...]
  /prebuilts/go/linux-x86/src/image/png/
reader_test.go 79 return Decode(f)
84 // png.Decode returns an image.Image.
101 // png.Decode returns an image.Image.
111 // image.Image type returned by png.Decode, such as image.RGBA (with all pixels
488 _, err := Decode(strings.NewReader(pngHeader + ihdr + idat + iend))
503 _, err := Decode(strings.NewReader(pngHeader + ihdr + idatWhite + idatZero + iend))
512 img, err := Decode(strings.NewReader(pngHeader + ihdr + idatWhite + idatBlack + iend))
553 m, err := Decode(bytes.NewReader(b))
585 _, err := Decode(bytes.NewReader(data))
605 Decode(strings.NewReader(s)
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/base32/
base32.go 234 // decode is like Decode but returns an additional 'end' value, which
238 func (enc *Encoding) decode(dst, src []byte) (n int, end bool, err error) { func
241 // Decode quantum using the base32 alphabet
268 // src bytes do not yield enough information to decode a dst byte.
316 // Decode decodes src using the encoding enc. It writes at most
321 func (enc *Encoding) Decode(dst, src []byte) (n int, err error) {
323 n, _, err = enc.decode(dst, src)
331 n, _, err := enc.decode(dbuf, []byte(s))
372 // Decode chunk into p, or d.out and then p if p is too small
    [all...]
  /prebuilts/go/linux-x86/src/encoding/base32/
base32.go 234 // decode is like Decode but returns an additional 'end' value, which
238 func (enc *Encoding) decode(dst, src []byte) (n int, end bool, err error) { func
241 // Decode quantum using the base32 alphabet
268 // src bytes do not yield enough information to decode a dst byte.
316 // Decode decodes src using the encoding enc. It writes at most
321 func (enc *Encoding) Decode(dst, src []byte) (n int, err error) {
323 n, _, err = enc.decode(dst, src)
331 n, _, err := enc.decode(dbuf, []byte(s))
372 // Decode chunk into p, or d.out and then p if p is too small
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
decode.go 207 // These are the errors returned by Decode.
209 ErrInvalidMode = errors.New("invalid x86 mode in Decode")
219 // Decode decodes the leading bytes in src as a single instruction.
222 func Decode(src []byte, mode int) (inst Inst, err error) {
226 // decode1 is the implementation of Decode but takes an extra
427 // Decode instruction stream, interpreting decoding instructions.
435 // Decode loop, executing decoder program.
437 Decode:
448 // Read and decode ModR/M if needed by opcode.
595 break Decode
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/x86/x86asm/
decode.go 207 // These are the errors returned by Decode.
209 ErrInvalidMode = errors.New("invalid x86 mode in Decode")
219 // Decode decodes the leading bytes in src as a single instruction.
222 func Decode(src []byte, mode int) (inst Inst, err error) {
226 // decode1 is the implementation of Decode but takes an extra
427 // Decode instruction stream, interpreting decoding instructions.
435 // Decode loop, executing decoder program.
437 Decode:
448 // Read and decode ModR/M if needed by opcode.
595 break Decode
    [all...]
  /external/webp/src/dec/
webp_dec.c 473 // Decode bitstream header, update io->width/io->height.
480 if (status == VP8_STATUS_OK) { // Decode
502 if (status == VP8_STATUS_OK) { // Decode
602 static uint8_t* Decode(WEBP_CSP_MODE mode, const uint8_t* const data,
620 // Decode
633 return Decode(MODE_RGB, data, data_size, width, height, NULL);
638 return Decode(MODE_RGBA, data, data_size, width, height, NULL);
643 return Decode(MODE_ARGB, data, data_size, width, height, NULL);
648 return Decode(MODE_BGR, data, data_size, width, height, NULL);
653 return Decode(MODE_BGRA, data, data_size, width, height, NULL)
    [all...]
  /art/compiler/optimizing/
locations.h 286 // Decode stack index manually to preserve sign.
292 // Decode stack index manually to preserve sign.
297 return IsConstant() ? kConstant : KindField::Decode(value_);
389 return PolicyField::Decode(GetPayload());
412 return PayloadField::Decode(value_);
  /external/dng_sdk/source/
dng_fingerprint.cpp 386 void dng_md5_printer::Decode (uint32 *output,
484 Decode (x, block, 64);
495 Decode (temp, block, 64);
  /external/libjpeg-turbo/md5/
md5.c 38 #define Decode memcpy
71 Decode (unsigned int *output, const unsigned char *input, unsigned int len)
234 Decode (x, block, 64);
  /frameworks/base/core/jni/android/graphics/
GIFMovie.cpp 40 static int Decode(GifFileType* fileType, GifByteType* out, int size) {
48 fGIF = DGifOpen( stream, Decode );
50 fGIF = DGifOpen( stream, Decode, nullptr );
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
encodingstest.cpp 266 static unsigned inline decode(unsigned* state, unsigned* codep, unsigned byte) { function
281 // decode(&state, &codepoint, *s++);
294 // Decode with Hoehrmann
301 if (!decode(&state, &decodedCodepoint, (unsigned char)*s)) {
314 // Decode
318 bool result = UTF8<>::Decode(is, &decodedCodepoint);
358 if (!decode(&state, &decodedCodepoint, (unsigned char)*s))
374 // Decode
378 bool result = UTF16<>::Decode(is, &decodedCodepoint);
405 // Decode
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/base64/
base64.go 253 // decode is like Decode but returns an additional 'end' value, which
256 func (enc *Encoding) decode(dst, src []byte) (n int, end bool, err error) { func
265 // Decode quantum using the base64 alphabet
349 // Decode decodes src using the encoding enc. It writes at most
354 func (enc *Encoding) Decode(dst, src []byte) (n int, err error) {
355 n, _, err = enc.decode(dst, src)
362 n, _, err := enc.decode(dbuf, []byte(s))
407 // Decode final fragment, without padding.
409 nw, _, d.err = d.enc.decode(d.outbuf[:], d.buf[:d.nbuf]
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/json/
stream.go 38 // Decode reads the next JSON-encoded value from its
43 func (dec *Decoder) Decode(v interface{}) error {
76 // buffer. The reader is valid until the next call to Decode.
295 // putting peek into the standard Decode path.
428 err := dec.Decode(&x)
444 if err := dec.Decode(&x); err != nil {
  /prebuilts/go/darwin-x86/src/image/gif/
writer_test.go 26 m, _, err := image.Decode(f)
89 m1, err := Decode(&buf)
118 m1, err := Decode(&buf)
120 t.Fatalf("Decode: %v", err)
344 m, err := Decode(&buf)
346 t.Errorf("p=%v: Decode: %v", p, err)
  /prebuilts/go/linux-x86/src/encoding/base64/
base64.go 253 // decode is like Decode but returns an additional 'end' value, which
256 func (enc *Encoding) decode(dst, src []byte) (n int, end bool, err error) { func
265 // Decode quantum using the base64 alphabet
349 // Decode decodes src using the encoding enc. It writes at most
354 func (enc *Encoding) Decode(dst, src []byte) (n int, err error) {
355 n, _, err = enc.decode(dst, src)
362 n, _, err := enc.decode(dbuf, []byte(s))
407 // Decode final fragment, without padding.
409 nw, _, d.err = d.enc.decode(d.outbuf[:], d.buf[:d.nbuf]
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
stream.go 38 // Decode reads the next JSON-encoded value from its
43 func (dec *Decoder) Decode(v interface{}) error {
76 // buffer. The reader is valid until the next call to Decode.
295 // putting peek into the standard Decode path.
428 err := dec.Decode(&x)
444 if err := dec.Decode(&x); err != nil {
  /prebuilts/go/linux-x86/src/image/gif/
writer_test.go 26 m, _, err := image.Decode(f)
89 m1, err := Decode(&buf)
118 m1, err := Decode(&buf)
120 t.Fatalf("Decode: %v", err)
344 m, err := Decode(&buf)
346 t.Errorf("p=%v: Decode: %v", p, err)
  /art/compiler/driver/
compiler_driver_test.cc 88 hs.NewHandle(soa.Decode<mirror::ClassLoader>(class_loader)));
217 hs.NewHandle(soa.Decode<mirror::ClassLoader>(class_loader)));
281 hs.NewHandle(soa.Decode<mirror::ClassLoader>(class_loader)));
342 hs.NewHandle(soa.Decode<mirror::ClassLoader>(class_loader)));

Completed in 925 milliseconds

1 2 3 4 5 6 7 8 91011>>