HomeSort by relevance Sort by last modified time
    Searched defs:Decode (Results 101 - 125 of 158) sorted by null

1 2 3 45 6 7

  /external/tensorflow/tensorflow/core/util/tensor_bundle/
tensor_bundle_test.cc 504 bool Decode(const VariantTensorData& data) {
  /external/v8/src/
uri.cc 173 MaybeHandle<String> Uri::Decode(Isolate* isolate, Handle<String> uri,
  /external/webrtc/talk/media/webrtc/
fakewebrtcvideoengine.h 71 virtual int32_t Decode(const webrtc::EncodedImage&,
  /external/webrtc/webrtc/modules/video_coding/codecs/h264/
h264_video_toolbox_decoder.cc 34 // Struct that we pass to the decoder per frame to decode. We receive it again
43 // On decode we receive a CVPixelBuffer, which we need to convert to a frame
79 // This is the callback function that VideoToolbox calls when decode is
91 LOG(LS_ERROR) << "Failed to decode frame. Status: " << status;
121 int H264VideoToolboxDecoder::Decode(
153 LOG(LS_ERROR) << "Failed to decode frame with code: " << status;
188 // I420 frame after decode, but eventually we will be able to plumb
  /external/webrtc/webrtc/modules/video_coding/
video_receiver.cc 179 // By default, do not decode with errors.
269 // Decode next frame, blocking.
271 int32_t VideoReceiver::Decode(uint16_t maxWaitTimeMs) {
310 const int32_t ret = Decode(*frame);
347 int32_t VideoReceiver::Decode(const VCMEncodedFrame& frame) {
348 TRACE_EVENT_ASYNC_STEP1("webrtc", "Video", frame.TimeStamp(), "Decode",
355 // Decode a frame
356 int32_t ret = _decoder->Decode(frame, clock_->TimeInMilliseconds());
432 // Incoming packet from network parsed and ready for decode, non blocking.
  /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/include/rapidjson/
encodings.h 50 //! \brief Decode a Unicode codepoint from an input stream.
55 static bool Decode(InputStream& is, unsigned* codepoint);
61 //! \note This function just validating and copying the codepoint without actually decode it.
124 static bool Decode(InputStream& is, unsigned* codepoint) {
263 static bool Decode(InputStream& is, unsigned* codepoint) {
386 static bool Decode(InputStream& is, unsigned* codepoint) {
495 static bool Decode(InputStream& is, unsigned* codepoint) {
565 RAPIDJSON_FORCEINLINE static bool Decode(InputStream& is, unsigned* codepoint) {
567 static const DecodeFunc f[] = { RAPIDJSON_ENCODINGS_FUNC(Decode) };
591 if (!SourceEncoding::Decode(is, &codepoint))
    [all...]
  /prebuilts/go/darwin-x86/src/image/gif/
reader.go 26 // If the io.Reader does not also have ReadByte, then decode will introduce its own buffering.
82 // decoder is the type used to decode a GIF file.
218 // decode reads a GIF image from r and stores the result in d.
219 func (d *decoder) decode(r io.Reader, configOnly, keepAllFrames bool) error { func
415 return fmt.Errorf("gif: pixel size in decode out of range: %d", litWidth)
557 // Decode reads a GIF image from r and returns the first embedded
559 func Decode(r io.Reader) (image.Image, error) {
561 if err := d.decode(r, false, false); err != nil {
596 if err := d.decode(r, false, true); err != nil {
618 if err := d.decode(r, true, false); err != nil
    [all...]
  /prebuilts/go/darwin-x86/src/image/jpeg/
reader.go 524 // decode reads a JPEG image from r and returns it as an image.Image.
525 func (d *decoder) decode(r io.Reader, configOnly bool) (image.Image, error) { func
546 // continues to decode the stream. Even before next_marker sees
775 // Decode reads a JPEG image from r and returns it as an image.Image.
776 func Decode(r io.Reader) (image.Image, error) {
778 return d.decode(r, false)
785 if _, err := d.decode(r, true); err != nil {
816 image.RegisterFormat("jpeg", "\xff\xd8", Decode, DecodeConfig)
  /prebuilts/go/darwin-x86/src/image/png/
reader.go 362 // decode decodes the IDAT data into an image.
363 func (d *decoder) decode() (image.Image, error) { func
845 d.img, err = d.decode()
950 // Decode reads a PNG image from r and returns it as an image.Image.
952 func Decode(r io.Reader) (image.Image, error) {
1031 image.RegisterFormat("png", pngHeader, Decode, DecodeConfig)
  /prebuilts/go/linux-x86/src/image/gif/
reader.go 26 // If the io.Reader does not also have ReadByte, then decode will introduce its own buffering.
82 // decoder is the type used to decode a GIF file.
218 // decode reads a GIF image from r and stores the result in d.
219 func (d *decoder) decode(r io.Reader, configOnly, keepAllFrames bool) error { func
415 return fmt.Errorf("gif: pixel size in decode out of range: %d", litWidth)
557 // Decode reads a GIF image from r and returns the first embedded
559 func Decode(r io.Reader) (image.Image, error) {
561 if err := d.decode(r, false, false); err != nil {
596 if err := d.decode(r, false, true); err != nil {
618 if err := d.decode(r, true, false); err != nil
    [all...]
  /prebuilts/go/linux-x86/src/image/jpeg/
reader.go 524 // decode reads a JPEG image from r and returns it as an image.Image.
525 func (d *decoder) decode(r io.Reader, configOnly bool) (image.Image, error) { func
546 // continues to decode the stream. Even before next_marker sees
775 // Decode reads a JPEG image from r and returns it as an image.Image.
776 func Decode(r io.Reader) (image.Image, error) {
778 return d.decode(r, false)
785 if _, err := d.decode(r, true); err != nil {
816 image.RegisterFormat("jpeg", "\xff\xd8", Decode, DecodeConfig)
  /prebuilts/go/linux-x86/src/image/png/
reader.go 362 // decode decodes the IDAT data into an image.
363 func (d *decoder) decode() (image.Image, error) { func
845 d.img, err = d.decode()
950 // Decode reads a PNG image from r and returns it as an image.Image.
952 func Decode(r io.Reader) (image.Image, error) {
1031 image.RegisterFormat("png", pngHeader, Decode, DecodeConfig)
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
Decompress.c 535 Decode a character/length value.
594 Decode (
601 Decode the source data and put the resulting data into the destination buffer.
782 Decode (Sd);
  /device/linaro/bootloader/edk2/DuetPkg/EfiLdr/
TianoDecompress.c 531 Decode a character/length value.
589 Decode (
596 Decode the source data and put the resulting data into the destination buffer.
811 Decode (Sd);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/
Decompress.c 683 Decode a character/length value.
742 Decode (
749 Decode the source data and put the resulting data into the destination buffer.
960 Decode (Sd);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
Decompress.c 537 Decode a character/length value.
596 Decode (
603 Decode the source data and put the resulting data into the destination buffer.
816 Decode (Sd);
  /external/pdfium/core/fxcodec/codec/
ccodec_tiffmodule.cpp 37 bool Decode(const RetainPtr<CFX_DIBitmap>& pDIBitmap);
441 bool CTiffContext::Decode(const RetainPtr<CFX_DIBitmap>& pDIBitmap) {
502 bool CCodec_TiffModule::Decode(Context* pContext,
505 return ctx->Decode(pDIBitmap);
fx_codec_jpx_opj.cpp 540 bool CJPX_Decoder::Decode(uint8_t* dest_buf,
634 bool CCodec_JpxModule::Decode(CJPX_Decoder* pDecoder,
638 return pDecoder->Decode(dest_data, pitch, offsets);
  /external/tensorflow/tensorflow/core/kernels/data/
tensor_queue_dataset_op.cc 451 bool Decode(const VariantTensorData&) { return false; }
  /external/webp/src/dec/
webp_dec.c 424 // The WebPDemux API + libwebp can be used to decode individual
475 // Decode bitstream header, update io->width/io->height.
482 if (status == VP8_STATUS_OK) { // Decode
504 if (status == VP8_STATUS_OK) { // Decode
604 static uint8_t* Decode(WEBP_CSP_MODE mode, const uint8_t* const data,
622 // Decode
635 return Decode(MODE_RGB, data, data_size, width, height, NULL);
640 return Decode(MODE_RGBA, data, data_size, width, height, NULL);
645 return Decode(MODE_ARGB, data, data_size, width, height, NULL);
650 return Decode(MODE_BGR, data, data_size, width, height, NULL)
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
vp9_impl.cc 864 cfg.h = cfg.w = 0; // set after decode
884 int VP9DecoderImpl::Decode(const EncodedImage& input_image,
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/
decode.go 22 // Finally the args describe how to decode the instruction arguments.
44 // Decode decodes the leading bytes in src as a single instruction.
45 func Decode(src []byte, mode Mode) (inst Inst, err error) {
97 if arg == nil { // cannot decode argument
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/
decode.go 22 // Finally the args describe how to decode the instruction arguments.
44 // Decode decodes the leading bytes in src as a single instruction.
45 func Decode(src []byte, mode Mode) (inst Inst, err error) {
97 if arg == nil { // cannot decode argument
  /system/core/libunwindstack/
DwarfOp.cpp 45 // Unroll the first Decode calls to be able to check for a special
51 if (!Decode()) {
64 if (!Decode()) {
77 if (!Decode()) {
91 bool DwarfOp<AddressType>::Decode() {

Completed in 1288 milliseconds

1 2 3 45 6 7