/external/brotli/go/cbrotli/ |
D | writer.go | 63 type Writer struct { struct 64 dst io.Writer 65 state *C.BrotliEncoderState 66 buf, encoded []byte 76 func NewWriter(dst io.Writer, options WriterOptions) *Writer { 90 func (w *Writer) writeChunk(p []byte, op C.BrotliEncoderOperation) (n int, err error) { 129 func (w *Writer) Flush() error { 135 func (w *Writer) Close() error { 146 func (w *Writer) Write(p []byte) (n int, err error) {
|
/external/llvm/include/llvm/Support/ |
D | EndianStream.h | 27 template <endianness endian> struct Writer { struct 29 Writer(raw_ostream &OS) : OS(OS) {} in Writer() argument 42 inline void Writer<little>::write<float>(float Val) { argument
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | EndianStream.h | 51 struct Writer { struct 54 Writer(raw_ostream &OS, endianness Endian) : OS(OS), Endian(Endian) {} in Writer() function 55 template <typename value_type> void write(ArrayRef<value_type> Val) { in write() 58 template <typename value_type> void write(value_type Val) { in write()
|
/external/rust/crates/bytes/src/buf/ |
D | writer.rs | 11 pub struct Writer<B> { struct 15 pub fn new<B>(buf: B) -> Writer<B> { in new() argument 19 impl<B: BufMut> Writer<B> { impl 77 impl<B: BufMut + Sized> io::Write for Writer<B> { implementation
|
/external/rust/crates/ring/src/io/ |
D | writer.rs | 47 pub(super) struct Writer { struct 52 impl Writer { impl 61 impl Into<Box<[u8]>> for Writer { implementation 68 impl Accumulator for Writer { implementation
|
/external/boringssl/src/crypto/fipsmodule/ec/ |
D | make_tables.go | 263 func writeIndent(w io.Writer, indent int) error { 272 func writeWords(w io.Writer, words []uint64, wrap, indent int, format func(uint64) string) error { 301 func writeBNMont(w io.Writer, curve elliptic.Curve, n *big.Int, indent int) error { 308 func writeU64Mont(w io.Writer, curve elliptic.Curve, n *big.Int, indent int) error { 315 func writeU32Mont(w io.Writer, curve elliptic.Curve, n *big.Int, indent int) error { 327 func writeTable(w io.Writer, curve elliptic.Curve, table [][2]*big.Int, isRoot bool, indent int, wr… 375 func writeTables(w io.Writer, curve elliptic.Curve, tables [][][2]*big.Int, isRoot bool, indent int…
|
/external/rust/crates/regex-syntax/src/hir/ |
D | print.rs | 73 struct Writer<'p, W> { struct 78 impl<'p, W: fmt::Write> Visitor for Writer<'p, W> { argument 212 impl<'p, W: fmt::Write> Writer<'p, W> { impl
|
/external/rust/crates/csv-core/src/ |
D | writer.rs | 34 pub fn build(&self) -> Writer { in build() 160 pub struct Writer { struct 161 state: WriterState, argument 171 impl Clone for Writer { argument 172 fn clone(&self) -> Writer { in clone() 190 impl fmt::Debug for Writer { implementation 221 impl Writer { implementation 479 impl Default for Writer { implementation
|
/external/rust/crates/env_logger/src/fmt/writer/ |
D | mod.rs | 105 pub(crate) struct Writer { struct 106 inner: BufferWriter, argument 110 impl Writer { implementation 174 pub(crate) fn build(&mut self) -> Writer { in build() 212 impl fmt::Debug for Writer { implementation
|
/external/rust/crates/flate2/src/ |
D | zio.rs | 8 pub struct Writer<W: Write, D: Ops> { struct 9 obj: Option<W>, 10 pub data: D, 11 buf: Vec<u8>, 159 impl<W: Write, D: Ops> Writer<W, D> { implementation 254 impl<W: Write, D: Ops> Write for Writer<W, D> { implementation 284 impl<W: Write, D: Ops> Drop for Writer<W, D> { implementation
|
/external/boringssl/src/util/ |
D | convert_wycheproof.go | 49 func printAttribute(w io.Writer, key string, valueI interface{}, isInstruction bool) error { 89 func printComment(w io.Writer, in string) error { 124 func convertWycheproof(f io.Writer, jsonPath string) error {
|
D | make_errors.go | 205 func outputAssignments(w io.Writer, assignments map[string]int) { 243 func writeHeaderFile(w io.Writer, headerFile io.Reader, lib string, reasons map[string]int) error { 286 func outputStrings(w io.Writer, lib string, assignments map[string]int) {
|
/external/protobuf/examples/ |
D | list_people.go | 14 func writePerson(w io.Writer, p *pb.Person) { 34 func listPeople(w io.Writer, book *pb.AddressBook) {
|
/external/deqp-deps/SPIRV-Tools/utils/vscode/src/lsp/protocol/ |
D | log.go | 35 func LoggingStream(str jsonrpc2.Stream, w io.Writer) jsonrpc2.Stream { 129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) { 148 func logOut(outfd io.Writer, data []byte) { 201 func logIn(outfd io.Writer, data []byte) {
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/utils/vscode/src/lsp/protocol/ |
D | log.go | 35 func LoggingStream(str jsonrpc2.Stream, w io.Writer) jsonrpc2.Stream { 129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) { 148 func logOut(outfd io.Writer, data []byte) { 201 func logIn(outfd io.Writer, data []byte) {
|
/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/ |
D | log.go | 35 func LoggingStream(str jsonrpc2.Stream, w io.Writer) jsonrpc2.Stream { 129 func logCommon(outfd io.Writer, data []byte) (*Combined, time.Time, string) { 148 func logOut(outfd io.Writer, data []byte) { 201 func logIn(outfd io.Writer, data []byte) {
|
/external/rust/crates/csv/src/ |
D | writer.rs | 508 pub struct Writer<W: io::Write> { struct 509 core: CoreWriter, argument 512 state: WriterState, argument 561 impl<W: io::Write> Drop for Writer<W> { implementation 569 impl Writer<File> { impl 596 impl<W: io::Write> Writer<W> { impl
|
/external/rust/crates/regex-syntax/src/ast/ |
D | print.rs | 65 struct Writer<'p, W> { struct 70 impl<'p, W: fmt::Write> Visitor for Writer<'p, W> { implementation 156 impl<'p, W: fmt::Write> Writer<'p, W> { implementation
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86MachObjectWriter.cpp | 59 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm, in recordRelocation() 103 MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout, in RecordX86_64Relocation() 363 bool X86MachObjectWriter::recordScatteredRelocation(MachObjectWriter *Writer, in recordScatteredRelocation() 463 void X86MachObjectWriter::recordTLVPRelocation(MachObjectWriter *Writer, in recordTLVPRelocation() 503 void X86MachObjectWriter::RecordX86Relocation(MachObjectWriter *Writer, in RecordX86Relocation()
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86MachObjectWriter.cpp | 60 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm, in recordRelocation() 103 MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout, in RecordX86_64Relocation() 365 bool X86MachObjectWriter::recordScatteredRelocation(MachObjectWriter *Writer, in recordScatteredRelocation() 465 void X86MachObjectWriter::recordTLVPRelocation(MachObjectWriter *Writer, in recordTLVPRelocation() 507 void X86MachObjectWriter::RecordX86Relocation(MachObjectWriter *Writer, in RecordX86Relocation()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMMachObjectWriter.cpp | 140 RecordARMScatteredHalfRelocation(MachObjectWriter *Writer, in RecordARMScatteredHalfRelocation() 253 void ARMMachObjectWriter::RecordARMScatteredRelocation(MachObjectWriter *Writer, in RecordARMScatteredRelocation() 329 bool ARMMachObjectWriter::requiresExternRelocation(MachObjectWriter *Writer, in requiresExternRelocation() 375 void ARMMachObjectWriter::recordRelocation(MachObjectWriter *Writer, in recordRelocation()
|
/external/openscreen/osp/go/ |
D | binary.go | 47 func WriteVaruint(v uint64, w io.Writer) error { 106 func writeBytes(b []byte, w io.Writer) error {
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMMachObjectWriter.cpp | 139 RecordARMScatteredHalfRelocation(MachObjectWriter *Writer, in RecordARMScatteredHalfRelocation() 243 void ARMMachObjectWriter::RecordARMScatteredRelocation(MachObjectWriter *Writer, in RecordARMScatteredRelocation() 310 bool ARMMachObjectWriter::requiresExternRelocation(MachObjectWriter *Writer, in requiresExternRelocation() 348 void ARMMachObjectWriter::recordRelocation(MachObjectWriter *Writer, in recordRelocation()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | SimpleTypeSerializer.cpp | 6 static void addPadding(BinaryStreamWriter &Writer) { in addPadding() 25 BinaryStreamWriter Writer(ScratchBuffer, support::little); in serialize() local
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | GSIStreamBuilder.cpp | 94 Error GSIHashStreamBuilder::commit(BinaryStreamWriter &Writer) { in commit() 306 static Error writeRecords(BinaryStreamWriter &Writer, in writeRecords() 316 BinaryStreamWriter Writer(Stream); in commitSymbolRecordStream() local 331 BinaryStreamWriter Writer(Stream); in commitPublicsHashStream() local 358 BinaryStreamWriter Writer(Stream); in commitGlobalsHashStream() local
|