HomeSort by relevance Sort by last modified time
    Searched defs:decode (Results 451 - 475 of 667) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/media/src/android/media/cts/
Vp8EncoderTest.java 110 decode(params.outputIvfFilename, null, FPS, params.forceSwEncoder); method
144 decode(params.outputIvfFilename, OUTPUT_YUV, FPS, params.forceSwEncoder); method
164 decode(params.outputIvfFilename, OUTPUT_YUV, FPS, params.forceSwEncoder); method
346 decode(inputIvfFilename, OUTPUT_YUV, FPS, params.forceSwEncoder);
431 decode(params.outputIvfFilename, OUTPUT_YUV, FPS, params.forceSwEncoder); method
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
PNGImageDecoder.cpp 141 bool decode(const SharedBuffer& data, bool sizeOnly) function in class:WebCore::PNGImageReader
233 decode(true);
251 decode(false);
353 // the color profile or we'd need to decode into a gray-scale image buffer and
529 void PNGImageDecoder::decode(bool onlySize) function in class:WebCore::PNGImageDecoder
537 // If we couldn't decode the image but we've received all the data, decoding
539 if (!m_reader->decode(*m_data, onlySize) && isAllDataReceived())
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.cpp 59 * attributes and returns the appropriate decode context.
71 * the ModR/M byte is required to decode a particular instruction.
114 * decode - Reads the appropriate instruction table to obtain the unique ID of
123 static InstrUID decode(OpcodeType type, function
181 * decode(); specifierForUID will not check bounds.
827 *instructionID = decode(insn->opcodeType,
832 *instructionID = decode(insn->opcodeType,
    [all...]
  /external/tcpdump/
print-esp.c 110 /* see if we can find the SA, and if so, decode it */
220 * decode the form: SPINUM@IP <tab> ALGONAME:0xsecret
226 char *decode, struct sa_list *sa)
233 colon = strchr(decode, ':');
235 (*ndo->ndo_warning)(ndo, "failed to decode espsecret: %s\n", decode);
240 if (strlen(decode) > strlen("-hmac96") &&
241 !strcmp(decode + strlen(decode) - strlen("-hmac96"),
243 p = strstr(decode, "-hmac96")
384 char *decode; local
    [all...]
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderAVC.cpp 91 Decode_Status VideoDecoderAVC::decode(VideoDecodeBuffer *buffer) { function in class:VideoDecoderAVC
184 // encounter error when decode the new frame
247 // surface buffer is released if decode fails
    [all...]
  /hardware/intel/common/libmix/videodecoder/securevideo/clovertrail/
VideoDecoderAVCSecure.cpp 120 Decode_Status VideoDecoderAVCSecure::decode(VideoDecodeBuffer *buffer) { function in class:VideoDecoderAVCSecure
201 return VideoDecoderAVC::decode(buffer);
  /hardware/intel/common/libmix/videodecoder/securevideo/merrifield/
VideoDecoderAVCSecure.cpp 296 Decode_Status VideoDecoderAVCSecure::decode(VideoDecodeBuffer *buffer) { function in class:VideoDecoderAVCSecure
297 VTRACE("VideoDecoderAVCSecure::decode");
  /hardware/intel/common/libmix/videodecoder/securevideo/merrplus/
VideoDecoderAVCSecure.cpp 120 Decode_Status VideoDecoderAVCSecure::decode(VideoDecodeBuffer *buffer) { function in class:VideoDecoderAVCSecure
205 return VideoDecoderAVC::decode(buffer);
  /hardware/intel/common/libmix/videodecoder/securevideo/moorefield/
VideoDecoderAVCSecure.cpp 297 Decode_Status VideoDecoderAVCSecure::decode(VideoDecodeBuffer *buffer) { function in class:VideoDecoderAVCSecure
298 VTRACE("VideoDecoderAVCSecure::decode");
  /hardware/samsung_slsi/exynos5/libhwjpeg/
ExynosJpegDecoder.cpp 183 int ExynosJpegDecoder::decode(void) function in class:ExynosJpegDecoder
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
Identity2Test.java 61 public void decode(InputStream in) { method in class:Identity2Test.CertificateImpl
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
real.h 118 void (*decode) (const struct real_format *, REAL_VALUE_TYPE *, member in struct:real_format
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 67 def decode(self, encoding=None, errors=None): # XXX improve this? member in class:UserString
70 return self.__class__(self.data.decode(encoding, errors))
72 return self.__class__(self.data.decode(encoding))
74 return self.__class__(self.data.decode())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserString.py 67 def decode(self, encoding=None, errors=None): # XXX improve this? member in class:UserString
70 return self.__class__(self.data.decode(encoding, errors))
72 return self.__class__(self.data.decode(encoding))
74 return self.__class__(self.data.decode())
  /system/core/libsysutils/src/
NetlinkEvent.cpp 590 bool NetlinkEvent::decode(char *buffer, int size, int format) { function in class:NetlinkEvent
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.cpp 325 bool decode(const SharedBuffer& data, bool onlySize) function in class:WebCore::JPEGImageReader
583 // Our decode step always sets things up properly, so if this method is ever
610 decode(true);
660 decode(false);
788 void JPEGImageDecoder::decode(bool onlySize) function in class:WebCore::JPEGImageDecoder
797 // If we couldn't decode the image but we've received all the data, decoding
799 if (!m_reader->decode(*m_data, onlySize) && isAllDataReceived())
  /external/chromium_org/third_party/libvpx/source/libvpx/vpx/internal/
vpx_codec_internal.h 177 /*!\brief decode data function pointer prototype
224 * to decode the current frame and a function to be called when libvpx does
226 * be called before the first call to decode or libvpx will assume the
339 vpx_codec_decode_fn_t decode; /**< \copydoc ::vpx_codec_decode_fn_t */ member in struct:vpx_codec_iface::vpx_codec_dec_iface
  /external/chromium_org/third_party/skia/include/core/
SkImageDecoder.h 44 /** Return the format of image this decoder can decode. If this decoder can decode multiple
89 /** Returns true if the decoder should try to decode the
95 /** Set to true if the the decoder should try to decode the
174 * to some flavor of decode, it is still at the discretion of the codec
196 * decode is preferred.
227 cancel. This will result in decode() returning false. However, there is
230 and decode() will return true (assuming no other problems were
233 This state is automatically reset at the beginning of decode().
241 /** Passed to the decode method. If kDecodeBounds_Mode is passed, the
270 bool decode(SkStream* stream, SkBitmap* bitmap, Mode mode) { function in class:SkImageDecoder
358 bool decode(SkStream* stream, SkBitmap* bitmap, SkBitmap::Config pref, Mode mode) { function in class:SkImageDecoder
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkMD5.cpp 25 static const uint32_t* decode(uint32_t storage[16], const uint8_t input[64]);
124 const uint32_t* X = decode(storage, block);
235 static const uint32_t* decode(uint32_t storage[16], const uint8_t input[64]) { function
  /external/libvpx/libvpx/vpx/internal/
vpx_codec_internal.h 177 /*!\brief decode data function pointer prototype
224 * to decode the current frame and a function to be called when libvpx does
226 * be called before the first call to decode or libvpx will assume the
339 vpx_codec_decode_fn_t decode; /**< \copydoc ::vpx_codec_decode_fn_t */ member in struct:vpx_codec_iface::vpx_codec_dec_iface
  /external/nanopb-c/
pb.h 278 bool (*decode)(pb_istream_t *stream, const pb_field_t *field, void *arg); member in union:_pb_callback_t::__anon31806
284 bool (*decode)(pb_istream_t *stream, const pb_field_t *field, void **arg);
316 bool (*decode)(pb_istream_t *stream, pb_extension_t *extension, member in struct:_pb_extension_type_t
  /external/skia/include/core/
SkImageDecoder.h 44 /** Return the format of image this decoder can decode. If this decoder can decode multiple
89 /** Returns true if the decoder should try to decode the
95 /** Set to true if the the decoder should try to decode the
174 * to some flavor of decode, it is still at the discretion of the codec
196 * decode is preferred.
227 cancel. This will result in decode() returning false. However, there is
230 and decode() will return true (assuming no other problems were
233 This state is automatically reset at the beginning of decode().
241 /** Passed to the decode method. If kDecodeBounds_Mode is passed, the
270 bool decode(SkStream* stream, SkBitmap* bitmap, Mode mode) { function in class:SkImageDecoder
358 bool decode(SkStream* stream, SkBitmap* bitmap, SkBitmap::Config pref, Mode mode) { function in class:SkImageDecoder
    [all...]
  /external/skia/src/utils/
SkMD5.cpp 25 static const uint32_t* decode(uint32_t storage[16], const uint8_t input[64]);
124 const uint32_t* X = decode(storage, block);
235 static const uint32_t* decode(uint32_t storage[16], const uint8_t input[64]) { function
  /external/zopfli/src/zopflipng/lodepng/
lodepng_util.cpp 347 int decode(bool& decoded, unsigned long& result, size_t& treepos, unsigned long bit) const function in struct:lodepng::ExtractZlib::HuffmanTree
396 //decode a single symbol from given list of bits with given code tree. return value is the symbol
401 error = codetree.decode(decoded, ct, treepos, readBitFromStream(bp, in));
420 std::vector<unsigned long> codelengthcode(19); //lengths of tree to decode the lengths of the dynamic tree
572 void decode(const unsigned char* in, size_t size) function in struct:lodepng::ExtractPNG
651 decoder.decode(&in[0], in.size());
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
MediaDecoder.java 210 decode(); method
318 private void decode() { method in class:MediaDecoder

Completed in 1810 milliseconds

<<11121314151617181920>>