/aosp_15_r20/prebuilts/go/linux-x86/src/internal/pkgbits/ |
D | encoder.go | 152 type Encoder struct { struct 153 p *PkgEncoder 155 Relocs []RelocEnt 156 RelocMap map[RelocEnt]uint32 157 Data bytes.Buffer // accumulated element bitstream data 159 encodingRelocHeader bool 161 k RelocKind 162 Idx Index // index within relocation section 166 func (w *Encoder) Flush() Index { 195 func (w *Encoder) checkErr(err error) { [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/encoding/gob/ |
D | encoder.go | 17 type Encoder struct { struct 18 mutex sync.Mutex // each item must be sent atomically 19 w []io.Writer // where to send the data 20 sent map[reflect.Type]typeId // which types we've already sent 21 countState *encoderState // stage for writing counts 22 freeList *encoderState // list of free encoderStates; avoids reallocation 23 byteBuf encBuffer // buffer for top-level encoderState 24 err error 43 func (enc *Encoder) writer() io.Writer { 48 func (enc *Encoder) pushWriter(w io.Writer) { [all …]
|
/aosp_15_r20/external/golang-protobuf/internal/encoding/json/ |
H A D | encode.go | 33 type Encoder struct { struct 34 indent string 35 lastKind kind 36 indents []byte 37 out []byte 56 func (e *Encoder) Bytes() []byte { 61 func (e *Encoder) WriteNull() { 67 func (e *Encoder) WriteBool(b bool) { 78 func (e *Encoder) WriteString(s string) error { 140 func (e *Encoder) WriteFloat(n float64, bitSize int) { [all …]
|
/aosp_15_r20/external/golang-protobuf/internal/encoding/text/ |
H A D | encode.go | 31 type Encoder struct { struct 32 encoderState 34 indent string 35 delims [2]byte 36 outputASCII bool 78 func (e *Encoder) Bytes() []byte { 83 func (e *Encoder) StartMessage() { 89 func (e *Encoder) EndMessage() { 95 func (e *Encoder) WriteName(s string) { 102 func (e *Encoder) WriteBool(b bool) { [all …]
|
/aosp_15_r20/external/webrtc/test/scenario/ |
H A D | scenario_config.h | 117 struct Encoder { struct 121 enum class ContentType { 124 } content_type = ContentType::kVideo; 125 enum Implementation { kFake, kSoftware, kHardware } implementation = kFake; 126 struct Fake { 128 } fake; 130 using Codec = VideoCodecType; 131 Codec codec = Codec::kVideoCodecGeneric; 132 absl::optional<DataRate> max_data_rate; 133 absl::optional<DataRate> min_data_rate; [all …]
|
/aosp_15_r20/external/bazelbuild-rules_android/src/common/golang/ |
H A D | marshal.go | 41 type Encoder struct { struct 42 *xml.Encoder anonMember 43 p printer 44 prefixURI map[string]string 45 state []state 46 uriPrefix *uriPrefixMap 50 func ChildEncoder(w io.Writer, parent *Encoder) *Encoder { 75 func (enc *Encoder) EncodeToken(t xml.Token) error { 94 func (enc *Encoder) writeStart(start *xml.StartElement) error { 130 func (enc *Encoder) writeEnd(name xml.Name) error { [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/vendor/golang.org/x/net/http2/hpack/ |
D | encode.go | 16 type Encoder struct { struct 17 dynTab dynamicTable 21 minSize uint32 25 maxSizeLimit uint32 28 tableSizeUpdate bool 29 w io.Writer 30 buf []byte 50 func (e *Encoder) WriteField(f HeaderField) error { 91 func (e *Encoder) searchTable(f HeaderField) (i uint64, nameValueMatch bool) { 108 func (e *Encoder) SetMaxDynamicTableSize(v uint32) { [all …]
|
/aosp_15_r20/external/rust/crates/v4l2r/lib/src/ |
D | encoder.rs | 42 pub struct Encoder<S: EncoderState> { struct 64 impl Encoder<AwaitingCaptureFormat> { implementation 118 impl Encoder<AwaitingOutputFormat> { impl 142 impl Encoder<AwaitingOutputBuffers> { impl 182 impl<OP: BufferHandles> Encoder<AwaitingCaptureBuffers<OP>> { impl 233 impl<OP: BufferHandles, P: HandlesProvider> Encoder<ReadyToEncode<OP, P>> impl 308 unsafe impl<S: EncoderState> Send for Encoder<S> {} implementation 337 impl<OP, P, InputDoneCb, OutputReadyCb> Encoder<Encoding<OP, P, InputDoneCb, OutputReadyCb>> impl 415 impl<'a, OP, P, InputDoneCb, OutputReadyCb> OutputQueueableProvider<'a, OP> 429 impl<'a, OP, P, InputDoneCb, OutputReadyCb> GetFreeOutputBuffer<'a, OP, GetBufferError> [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/h2/src/codec/ |
D | framed_write.rs | 31 struct Encoder<B> { struct 33 hpack: hpack::Encoder, argument 38 buf: Cursor<BytesMut>, 41 next: Option<Next<B>>, 44 last_data_frame: Option<frame::Data<B>>, 47 max_frame_size: FrameSize, 50 chain_threshold: usize, 53 min_buffer_capacity: usize, 179 impl<B> Encoder<B> impl 307 impl<B> Encoder<B> { impl
|
/aosp_15_r20/prebuilts/go/linux-x86/src/encoding/json/ |
D | stream.go | 181 type Encoder struct { struct 182 w io.Writer 183 err error 184 escapeHTML bool 186 indentBuf []byte 187 indentPrefix string 188 indentValue string 202 func (enc *Encoder) Encode(v any) error { 240 func (enc *Encoder) SetIndent(prefix, indent string) { 252 func (enc *Encoder) SetEscapeHTML(on bool) {
|
/aosp_15_r20/prebuilts/go/linux-x86/src/encoding/xml/ |
D | marshal.go | 109 MarshalXML(e *Encoder, start StartElement) error 144 type Encoder struct { struct 145 p printer 158 func (enc *Encoder) Indent(prefix, indent string) { 169 func (enc *Encoder) Encode(v any) error { 184 func (enc *Encoder) EncodeElement(v any, start StartElement) error { 210 func (enc *Encoder) EncodeToken(t Token) error { 307 func (enc *Encoder) Flush() error { 314 func (enc *Encoder) Close() error {
|
/aosp_15_r20/external/rust/android-crates-io/crates/pdl-compiler/src/backends/rust/ |
D | encoder.rs | 78 struct Encoder { struct 89 impl Encoder { argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/const-oid/src/ |
D | encoder.rs | 10 pub(crate) struct Encoder { struct 34 impl Encoder { argument
|
/aosp_15_r20/packages/modules/adb/ |
D | compression_utils.h | 68 struct Encoder { struct 82 explicit Encoder(size_t output_block_size) : output_block_size_(output_block_size) {} in Encoder() function 85 const size_t output_block_size_; 86 bool finished_ = false; 110 struct NullEncoder final : public Encoder { argument
|
/aosp_15_r20/external/rust/android-crates-io/crates/ciborium-ll/src/ |
D | enc.rs | 9 pub struct Encoder<W: Write>(W); struct 11 impl<W: Write> From<W> for Encoder<W> { implementation 18 impl<W: Write> Write for Encoder<W> { implementation 30 impl<W: Write> Encoder<W> { impl
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/tools/go/types/objectpath/ |
D | objectpath.go | 125 type Encoder struct { struct 126 scopeMemo map[*types.Scope][]types.Object // memoization of scopeObjects 172 func (enc *Encoder) For(obj types.Object) (Path, error) { 351 func (enc *Encoder) concreteMethod(meth *types.Func) (Path, bool) { 737 func (enc *Encoder) scopeObjects(scope *types.Scope) []types.Object {
|
/aosp_15_r20/external/rust/android-crates-io/crates/h2/src/hpack/ |
D | encoder.rs | 8 pub struct Encoder { struct 19 impl Encoder { implementation 20 pub fn new(max_size: usize, capacity: usize) -> Encoder { in new() 185 impl Default for Encoder { implementation 696 fn encode(e: &mut Encoder, hdrs: Vec<Header<Option<HeaderName>>>) -> BytesMut { in encode()
|
/aosp_15_r20/external/rust/android-crates-io/crates/hyper/src/proto/h1/ |
D | encode.rs | 14 pub(crate) struct Encoder { struct 29 /// An Encoder for when Transfer-Encoding includes `chunked`. argument 51 impl Encoder { implementation 52 fn new(kind: Kind) -> Encoder { in new() 62 pub(crate) fn length(len: u64) -> Encoder { in length()
|
/aosp_15_r20/external/libvpx/test/ |
H A D | encode_api_test.cc | 466 struct Encoder { in TEST() struct 467 ~Encoder() { EXPECT_EQ(vpx_codec_destroy(&ctx), VPX_CODEC_OK); } in TEST() 468 vpx_codec_ctx_t ctx = {}; in TEST() 846 struct Encoder { in TEST() struct 847 ~Encoder() { EXPECT_EQ(vpx_codec_destroy(&ctx), VPX_CODEC_OK); } in TEST() 848 vpx_codec_ctx_t ctx = {}; in TEST() 878 struct Encoder { in TEST() struct 879 ~Encoder() { EXPECT_EQ(vpx_codec_destroy(&ctx), VPX_CODEC_OK); } in TEST() 880 vpx_codec_ctx_t ctx = {}; in TEST() 1702 struct Encoder { in TEST() struct [all …]
|
/aosp_15_r20/external/pigweed/pw_protobuf/ |
H A D | varint_size_test.cc | 22 TEST(Encoder, SizeTypeIsConfigured) { in TEST() argument 26 TEST(Encoder, NestedWriteSmallerThanVarintSize) { in TEST() argument 40 TEST(Encoder, NestedWriteLargerThanVarintSizeReturnsResourceExhausted) { in TEST() argument 57 TEST(Encoder, NestedMessageLargerThanVarintSizeReturnsResourceExhausted) { in TEST() argument
|
/aosp_15_r20/external/v4l2_codec2/ |
H A D | README.md | 290 ### Supported Codecs 299 ### Supported Parameters: 330 ### Supported Input Pixel Formats: 337 ### Additional Features:
|
/aosp_15_r20/external/rust/android-crates-io/crates/tonic/src/codec/ |
D | mod.rs | 44 type Encoder: Encoder<Item = Self::Encode, Error = Status> + Send + 'static; typedef 49 fn encoder(&mut self) -> Self::Encoder; in encoder() 55 pub trait Encoder { trait
|
/aosp_15_r20/prebuilts/go/linux-x86/src/image/png/ |
D | writer.go | 19 type Encoder struct { struct 20 CompressionLevel CompressionLevel 24 BufferPool EncoderBufferPool 590 func (enc *Encoder) Encode(w io.Writer, m image.Image) error {
|
/aosp_15_r20/frameworks/av/media/tests/benchmark/ |
H A D | README.md | 76 ## Encoder section in NDK CLI Tests 153 ## Encoder section in <a name="BenchmarkApplication"></a> Benchmark Application 272 ## Encoder section in Analysis
|
/aosp_15_r20/external/rust/crates/quiche/src/h3/qpack/ |
D | encoder.rs | 37 pub struct Encoder {} struct 39 impl Encoder { implementation
|