Home
last modified time | relevance | path

Searched defs:Decode (Results 1 – 25 of 240) sorted by relevance

12345678910

/external/rust/android-crates-io/crates/idna/src/
Dpunycode.rs171 pub(crate) struct Decode<'a> { struct
179 impl<'a> Iterator for Decode<'a> { argument
207 impl<'a> ExactSizeIterator for Decode<'a> { implementation
/external/pigweed/pw_bluetooth_hci/
Dpacket.cc37 std::optional<CommandPacket> CommandPacket::Decode(ConstByteSpan data, in Decode() function in pw::bluetooth_hci::CommandPacket
65 std::optional<AsyncDataPacket> AsyncDataPacket::Decode(ConstByteSpan data, in Decode() function in pw::bluetooth_hci::AsyncDataPacket
93 std::optional<SyncDataPacket> SyncDataPacket::Decode(ConstByteSpan data, in Decode() function in pw::bluetooth_hci::SyncDataPacket
120 std::optional<EventPacket> EventPacket::Decode(ConstByteSpan data) { in Decode() function in pw::bluetooth_hci::EventPacket
/external/webrtc/rtc_base/third_party/base64/
Dbase64.h87 static inline std::string Decode(absl::string_view data, DecodeFlags flags) { in Decode() function
92 static inline bool Decode(absl::string_view data, in Decode() function
98 static inline bool Decode(absl::string_view data, in Decode() function
/external/iamf_tools/iamf/cli/tests/
Daudio_frame_decoder_test.cc79 TEST(Decode, RequiresSubstreamsAreInitialized) { in TEST() argument
134 TEST(Decode, DecodesLpcmFrame) { in TEST() argument
169 TEST(Decode, DecodesFlacFrame) { in TEST() argument
213 TEST(Decode, DecodesMultipleFlacFrames) { in TEST() argument
/external/rust/android-crates-io/crates/tonic/src/server/
Dgrpc.rs227 S: UnaryService<T::Decode, Response = T::Encode>, in unary()
270 S: ServerStreamingService<T::Decode, Response = T::Encode>, in server_streaming()
311 S: ClientStreamingService<T::Decode, Response = T::Encode>, in client_streaming()
344 S: StreamingService<T::Decode, Response = T::Encode> + Send, in streaming()
369 ) -> Result<Request<T::Decode>, Status> in map_request_unary()
404 ) -> Result<Request<Streaming<T::Decode>>, Status> in map_request_streaming()
/external/webrtc/test/
Dfake_decoder.cc43 int32_t FakeDecoder::Decode(const EncodedImage& input, in Decode() function in webrtc::test::FakeDecoder
105 int32_t FakeH264Decoder::Decode(const EncodedImage& input, in Decode() function in webrtc::test::FakeH264Decoder
/external/liblc3/include/
Dlc3_cpp.h268 int Decode(const uint8_t *in, int block_size, int16_t *pcm) { in Decode() function
272 int Decode(const uint8_t *in, int block_size, int32_t *pcm) { in Decode() function
276 int Decode(const uint8_t *in, int block_size, float *pcm) { in Decode() function
280 int Decode(const uint8_t *in, int block_size, PcmFormat fmt, void *pcm) { in Decode() function
/external/mesa3d/src/asahi/lib/tests/
Dtest-packing.cpp48 TEST(LODClamp, Decode) in TEST() argument
70 TEST(Groups, Decode) in TEST() argument
/external/pigweed/pw_varint/public/pw_varint/
Dvarint.h292 inline size_t Decode(const span<const std::byte>& input, int64_t* output) { in Decode() function
300 inline size_t Decode(const span<const std::byte>& input, uint64_t* value) { in Decode() function
321 inline size_t Decode(span<const std::byte> input, in Decode() function
/external/pdfium/core/fxcodec/jbig2/
DJBig2_ArithIntDecoder.cpp59 bool CJBig2_ArithIntDecoder::Decode(CJBig2_ArithDecoder* pArithDecoder, in Decode() function in CJBig2_ArithIntDecoder
103 void CJBig2_ArithIaidDecoder::Decode(CJBig2_ArithDecoder* pArithDecoder, in Decode() function in CJBig2_ArithIaidDecoder
/external/tensorflow/tensorflow/lite/delegates/gpu/common/task/
Dserialization_base.cc344 void Decode(const data::GPUObjectDescriptor* fb_obj, GPUObjectDescriptor* obj) { in Decode() function
376 void Decode(const data::BufferDescriptor* fb_desc, BufferDescriptor* desc) { in Decode() function
419 void Decode(const data::TensorDescriptor* fb_desc, TensorDescriptor* desc) { in Decode() function
436 absl::Status Decode(const data::Arguments* fb_args, Arguments* args) { in Decode() function
635 void Decode(const data::OperationDef* fb_def, OperationDef* def) { in Decode() function
649 absl::Status Decode(const data::GPUOperation* fb_op, GPUOperation* op) { in Decode() function
/external/rust/android-crates-io/crates/der/src/
Ddecode.rs19 pub trait Decode<'a>: Sized { trait
/external/iamf_tools/iamf/api/decoder/tests/
Diamf_decoder_test.cc250 TEST(Decode, SucceedsAndProcessesDescriptorsWithTemporalDelimiterAtEnd) { in TEST() argument
266 TEST(Decode, SucceedsWithMultiplePushesOfDescriptorObus) { in TEST() argument
287 TEST(Decode, SucceedsWithSeparatePushesOfDescriptorAndTemporalUnits) { in TEST() argument
300 TEST(Decode, SucceedsWithOneTemporalUnit) { in TEST() argument
314 TEST(Decode, SucceedsWithMultipleTemporalUnits) { in TEST() argument
328 TEST(Decode, SucceedsWithMultipleTemporalUnitsForNonStereoLayout) { in TEST() argument
384 TEST(Decode, FailsWhenCalledAfterFlush) { in TEST() argument
/external/vixl/src/aarch64/
Ddecoder-aarch64.cc39 void Decoder::Decode(const Instruction* instr) { in Decode() function in vixl::aarch64::Decoder
48 void Decoder::Decode(Instruction* instr) { in Decode() function in vixl::aarch64::Decoder
508 void CompiledDecodeNode::Decode(const Instruction* instr) const { in Decode() function in vixl::aarch64::CompiledDecodeNode
/external/pigweed/pw_rpc_transport/public/pw_rpc_transport/
Dhdlc_framing.h89 Status Decode(ConstByteSpan buffer, OnRpcPacketDecodedCallback&& callback) { in Decode() function
/external/rust/android-crates-io/crates/tonic/src/client/
Dgrpc.rs215 C: Codec<Encode = M1, Decode = M2>, in unary() argument
235 C: Codec<Encode = M1, Decode = M2>, in client_streaming() argument
271 C: Codec<Encode = M1, Decode = M2>, in server_streaming() argument
291 C: Codec<Encode = M1, Decode = M2>, in streaming() argument
/external/cronet/stable/net/third_party/quiche/src/quiche/http2/hpack/decoder/
Dhpack_block_decoder.cc17 DecodeStatus HpackBlockDecoder::Decode(DecodeBuffer* db) { in Decode() function in http2::HpackBlockDecoder
/external/cronet/tot/net/third_party/quiche/src/quiche/http2/hpack/decoder/
Dhpack_block_decoder.cc17 DecodeStatus HpackBlockDecoder::Decode(DecodeBuffer* db) { in Decode() function in http2::HpackBlockDecoder
/external/skia/experimental/rust_png/decoder/
DSkPngRustDecoder.cpp27 std::unique_ptr<SkCodec> Decode(std::unique_ptr<SkStream> stream, in Decode() function
/external/webrtc/modules/video_coding/
Dvideo_receiver.cc151 int32_t VideoReceiver::Decode(uint16_t maxWaitTimeMs) { in Decode() function in webrtc::vcm::VideoReceiver
210 int32_t VideoReceiver::Decode(const VCMEncodedFrame& frame) { in Decode() function in webrtc::vcm::VideoReceiver
/external/cronet/stable/net/third_party/quiche/src/quiche/quic/core/qpack/
Dqpack_encoder_stream_receiver.cc22 void QpackEncoderStreamReceiver::Decode(absl::string_view data) { in Decode() function in quic::QpackEncoderStreamReceiver
Dqpack_decoder_stream_receiver.cc21 void QpackDecoderStreamReceiver::Decode(absl::string_view data) { in Decode() function in quic::QpackDecoderStreamReceiver
/external/cronet/tot/net/third_party/quiche/src/quiche/quic/core/qpack/
Dqpack_decoder_stream_receiver.cc21 void QpackDecoderStreamReceiver::Decode(absl::string_view data) { in Decode() function in quic::QpackDecoderStreamReceiver
Dqpack_encoder_stream_receiver.cc22 void QpackEncoderStreamReceiver::Decode(absl::string_view data) { in Decode() function in quic::QpackEncoderStreamReceiver
/external/cronet/tot/net/extras/preload_data/
Ddecoder.cc152 bool PreloadDecoder::HuffmanDecoder::Decode(PreloadDecoder::BitReader* reader, in Decode() function in net::extras::PreloadDecoder::HuffmanDecoder
189 bool PreloadDecoder::Decode(const std::string& search, bool* out_found) { in Decode() function in net::extras::PreloadDecoder

12345678910