/external/google-breakpad/src/processor/ |
D | simple_serializer-inl.h | 59 static char *Write(bool boolean, char *dest) { in Write() function 76 static char *Write(const string &str, char *dest) { in Write() function 90 static char *Write(const char *cstring, char *dest) { in Write() function 107 static char *Write(const Line &line, char *dest) { in Write() function 108 dest = SimpleSerializer<MemAddr>::Write(line.address, dest); in Write() 109 dest = SimpleSerializer<MemAddr>::Write(line.size, dest); in Write() 110 dest = SimpleSerializer<int32_t>::Write(line.source_file_id, dest); in Write() 111 dest = SimpleSerializer<int32_t>::Write(line.line, dest); in Write() 126 static char *Write(const PublicSymbol &pubsymbol, char *dest) { in Write() function 127 dest = SimpleSerializer<string>::Write(pubsymbol.name, dest); in Write() [all …]
|
D | map_serializers-inl.h | 70 char *StdMapSerializer<Key, Value>::Write(const std::map<Key, Value> &m, in Write() function 80 dest = SimpleSerializer<uint32_t>::Write(m.size(), dest); in Write() 93 key_address = key_serializer_.Write(iter->first, key_address); in Write() 94 dest = value_serializer_.Write(iter->second, dest); in Write() 112 Write(m, serialized_data); in Serialize() 138 char *RangeMapSerializer<Address, Entry>::Write( in Write() function 148 dest = SimpleSerializer<uint32_t>::Write(m.map_.size(), dest); in Write() 161 key_address = address_serializer_.Write(iter->first, key_address); in Write() 162 dest = address_serializer_.Write(iter->second.base(), dest); in Write() 163 dest = entry_serializer_.Write(iter->second.entry(), dest); in Write() [all …]
|
D | module_serializer.cc | 83 char *ModuleSerializer::Write(const BasicSourceLineResolver::Module &module, in Write() function in google_breakpad::ModuleSerializer 86 dest = SimpleSerializer<bool>::Write(module.is_corrupt_, dest); in Write() 91 dest = files_serializer_.Write(module.files_, dest); in Write() 92 dest = functions_serializer_.Write(module.functions_, dest); in Write() 93 dest = pubsym_serializer_.Write(module.public_symbols_, dest); in Write() 95 dest = wfi_serializer_.Write(&(module.windows_frame_info_[i]), dest); in Write() 96 dest = cfi_init_rules_serializer_.Write(module.cfi_initial_rules_, dest); in Write() 97 dest = cfi_delta_rules_serializer_.Write(module.cfi_delta_rules_, dest); in Write() 99 dest = SimpleSerializer<char>::Write(0, dest); in Write() 118 char *end_address = Write(module, serialized_data); in Serialize()
|
D | map_serializers.h | 62 char* Write(const std::map<Key, Value> &m, char* dest) const; 89 char* Write(const AddressMap<Addr, Entry> &m, char *dest) const { in Write() function 90 return std_map_serializer_.Write(m.map_, dest); in Write() 118 char* Write(const RangeMap<Address, Entry> &m, char* dest) const; 147 char* Write(const ContainedRangeMap<AddrType, EntryType> *m,
|
/external/sfntly/cpp/src/sfntly/data/ |
D | font_output_stream.cc | 32 void FontOutputStream::Write(byte_t b) { in Write() function in sfntly::FontOutputStream 34 stream_->Write(b); in Write() 39 void FontOutputStream::Write(ByteVector* b) { in Write() function in sfntly::FontOutputStream 41 Write(b, 0, b->size()); in Write() 46 void FontOutputStream::Write(ByteVector* b, int32_t off, int32_t len) { in Write() function in sfntly::FontOutputStream 58 stream_->Write(b, off, len); in Write() 62 void FontOutputStream::Write(byte_t* b, int32_t off, int32_t len) { in Write() function in sfntly::FontOutputStream 73 stream_->Write(b, off, len); in Write() 78 Write(c); in WriteChar() 82 Write((byte_t)((us >> 8) & 0xff)); in WriteUShort() [all …]
|
D | font_output_stream.h | 53 virtual void Write(byte_t b); 54 virtual void Write(ByteVector* b); 55 virtual void Write(ByteVector* b, int32_t off, int32_t len); 56 virtual void Write(byte_t* b, int32_t off, int32_t len);
|
/external/boringssl/src/ssl/test/runner/ |
D | prf.go | 28 h.Write(seed) 34 h.Write(a) 35 h.Write(seed) 45 h.Write(a) 99 hashSHA1.Write(b[:i+1]) 100 hashSHA1.Write(secret) 101 hashSHA1.Write(seed) 105 hashMD5.Write(secret) 106 hashMD5.Write(digest) 239 func (h *finishedHash) Write(msg []byte) (n int, err error) { func [all …]
|
D | packet_adapter.go | 75 func (p *packetAdaptor) Write(b []byte) (int, error) { func 80 if _, err := p.Conn.Write(payload); err != nil { 93 if _, err := p.Conn.Write(payload); err != nil { 132 func (r *replayAdaptor) Write(b []byte) (int, error) { func 133 n, err := r.Conn.Write(b) 138 r.Conn.Write(r.prevWrite) 160 func (d *damageAdaptor) Write(b []byte) (int, error) { func 165 return d.Conn.Write(b)
|
D | cipher_suites.go | 276 s.h.Write(s.key) 277 s.h.Write(ssl30Pad1[:padLength]) 278 s.h.Write(seq) 279 s.h.Write(header[:1]) 280 s.h.Write(length) 281 s.h.Write(data) 285 s.h.Write(s.key) 286 s.h.Write(ssl30Pad2[:padLength]) 287 s.h.Write(digestBuf) 302 s.h.Write(seq) [all …]
|
/external/zlib/src/contrib/ada/ |
D | zlib-streams.adb | 111 Ada.Streams.Write (Stream.Back.all, Buffer (1 .. Last)); 183 procedure Write subprogram 188 procedure Write (Item : in Stream_Element_Array); subprogspec 194 procedure Write (Item : in Stream_Element_Array) is argument 196 Ada.Streams.Write (Stream.Back.all, Item); 197 end Write; 199 procedure Write is new ZLib.Write argument 200 (Write => Write, 204 Write (Stream.Writer, Item, No_Flush); 205 end Write;
|
/external/v8/src/ |
D | gdb-jit.cc | 78 void Write(const T& val) { in Write() function in v8::internal::BASE_EMBEDDED 127 Write<uint8_t>(byte); in WriteULEB128() 144 Write<int8_t>(byte); in WriteSLEB128() 150 Write<char>(*str); in WriteString() 451 writer_->Write(*str); in WriteString() 484 void Write(Writer* w, uintptr_t code_start, uintptr_t code_size) { in Write() function in v8::internal::BASE_EMBEDDED 611 void Write(Writer* w) { in Write() function in v8::internal::BASE_EMBEDDED 812 void Write(Writer::Slot<SerializedLayout> s, ELFStringTable* t) { in Write() function in v8::internal::BASE_EMBEDDED 889 src->at(i).Write(dst.at(i), strtab); in WriteSymbolsList() 1083 w->Write<uint16_t>(2); // DWARF version. in WriteBodyInternal() [all …]
|
/external/openfst/src/include/fst/script/ |
D | fst-class.h | 55 virtual bool Write(const string& fname) const = 0; 56 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const = 0; 117 virtual bool Write(const string &fname) const { in Write() function 118 return impl_->Write(fname); in Write() 121 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const { in Write() function 122 return impl_->Write(ostr, opts); in Write() 206 virtual bool Write(const string &fname) const { in Write() function 207 return impl_->Write(fname); in Write() 210 virtual bool Write(ostream &ostr, const FstWriteOptions &opts) const { in Write() function 211 return impl_->Write(ostr, opts); in Write() [all …]
|
/external/google-breakpad/src/common/ |
D | module_unittest.cc | 68 TEST(Write, Header) { in TEST() argument 71 m.Write(s, ALL_SYMBOL_DATA); in TEST() 77 TEST(Write, OneLineFunc) { in TEST() argument 91 m.Write(s, ALL_SYMBOL_DATA); in TEST() 101 TEST(Write, RelativeLoadAddress) { in TEST() argument 140 m.Write(s, ALL_SYMBOL_DATA); in TEST() 158 TEST(Write, OmitUnusedFiles) { in TEST() argument 195 m.Write(s, ALL_SYMBOL_DATA); in TEST() 207 TEST(Write, NoCFI) { in TEST() argument 242 m.Write(s, NO_CFI); in TEST() [all …]
|
/external/sfntly/cpp/src/sfntly/port/ |
D | output_stream.h | 32 virtual void Write(ByteVector* buffer) = 0; 33 virtual void Write(byte_t b) = 0; 38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length) = 0; 41 virtual void Write(byte_t* buffer, int32_t offset, int32_t length) = 0;
|
D | memory_output_stream.h | 37 virtual void Write(ByteVector* buffer); 38 virtual void Write(ByteVector* buffer, int32_t offset, int32_t length); 39 virtual void Write(byte_t* buffer, int32_t offset, int32_t length); 40 virtual void Write(byte_t b);
|
D | memory_output_stream.cc | 27 void MemoryOutputStream::Write(ByteVector* buffer) { in Write() function in sfntly::MemoryOutputStream 31 void MemoryOutputStream::Write(ByteVector* buffer, in Write() function in sfntly::MemoryOutputStream 46 void MemoryOutputStream::Write(byte_t* buffer, int32_t offset, int32_t length) { in Write() function in sfntly::MemoryOutputStream 57 void MemoryOutputStream::Write(byte_t b) { in Write() function in sfntly::MemoryOutputStream
|
/external/lldb/tools/lldb-perf/lib/ |
D | Results.h | 59 Write (Results &results) = 0; 148 Write (Results &results) in Write() function 175 Write (Results &results) in Write() function 217 Write (Results &results) in Write() function 246 Write (Results &results) in Write() function 275 Write (Results &results) in Write() function 305 Write (const char *path);
|
/external/valgrind/helgrind/ |
D | README_MSMProp2.txt | 90 States are New, Read(VTS,LS), Write(VTS,LS) 101 E2 New wr True Write(currVTS,currLS) False 105 E4 Read(oldVTS,oldLS) wr True Write(newVTS,newLS) #newLS == 0 108 E5 Write(oldVTS,oldLS) rd hb(oldVTS, Read(currVTS,currLS) False 111 E6r Write(oldVTS,oldLS) rd !hb(oldVTS, Write(newVTS,newLS) #newLS == 0 114 E6w Write(oldVTS,oldLS) wr True Write(newVTS,newLS) #newLS == 0 130 and MSMProp2 are easier to understand if the states Read and Write are 136 Write AllConstraint 145 The effect of a state Write(VTS,LS) is similar, but it applies to all 151 Hence a Write state places a constraint on all accesses.
|
/external/sfntly/cpp/src/test/ |
D | endian_test.cc | 57 fos.Write(202); in TestEndian() 58 fos.Write(202); in TestEndian() 59 fos.Write(202); in TestEndian() 60 fos.Write(202); in TestEndian()
|
/external/boringssl/src/crypto/cipher/test/ |
D | make_legacy_aead_tests.go | 100 h.Write(key) 101 h.Write(ssl30Pad1[:padLength]) 102 h.Write(ad) 103 h.Write(input) 107 h.Write(key) 108 h.Write(ssl30Pad2[:padLength]) 109 h.Write(digestBuf) 172 h.Write(adFull) 173 h.Write(input)
|
/external/compiler-rt/lib/tsan/tests/rtl/ |
D | tsan_test_util.h | 70 void Write(const MemLoc &ml, int size, bool expect_race = false) { 82 Write(ml, 1, expect_race); } 84 Write(ml, 2, expect_race); } 86 Write(ml, 4, expect_race); } 88 Write(ml, 8, expect_race); }
|
/external/skia/tests/ |
D | SerializationTest.cpp | 37 static void Write(SkWriteBuffer& writer, const T* flattenable) { in Write() function 46 static void Write(SkWriteBuffer& writer, const SkMatrix* matrix) { in Write() function 55 static void Write(SkWriteBuffer& writer, const SkPath* path) { in Write() function 64 static void Write(SkWriteBuffer& writer, const SkRegion* region) { in Write() function 73 static void Write(SkWriteBuffer& writer, const SkString* string) { in Write() function 82 static void Write(SkWriteBuffer& writer, unsigned char* data, uint32_t arraySize) { in Write() function 91 static void Write(SkWriteBuffer& writer, SkColor* data, uint32_t arraySize) { in Write() function 100 static void Write(SkWriteBuffer& writer, int32_t* data, uint32_t arraySize) { in Write() function 109 static void Write(SkWriteBuffer& writer, SkPoint* data, uint32_t arraySize) { in Write() function 118 static void Write(SkWriteBuffer& writer, SkScalar* data, uint32_t arraySize) { in Write() function [all …]
|
/external/lzma/CS/7zip/Compress/LzmaAlone/ |
D | LzmaBench.cs | 140 public override void Write(byte[] buffer, int offset, int count) in Write() method in SevenZip.LzmaBench.CrcOutStream 214 System.Console.Write(" "); in PrintValue() 215 System.Console.Write(s); in PrintValue() 221 System.Console.Write(" MIPS"); in PrintRating() 232 System.Console.Write(" KB/s "); in PrintResults() 250 System.Console.Write("\n Compressing Decompressing\n\n"); in LzmaBenchmark() 322 System.Console.Write(" "); in LzmaBenchmark() 333 System.Console.Write(" "); in LzmaBenchmark()
|
/external/lzma/CPP/7zip/Common/ |
D | InOutTempBuffer.cpp | 55 if (!_outFile.Write(data, size, processed)) in WriteToFile() 62 bool CInOutTempBuffer::Write(const void *data, UInt32 size) in Write() function in CInOutTempBuffer 111 STDMETHODIMP CSequentialOutTempBufferImp::Write(const void *data, UInt32 size, UInt32 *processed) in Write() function in CSequentialOutTempBufferImp 113 if (!_buf->Write(data, size)) in Write()
|
/external/openfst/src/include/fst/ |
D | add-on.h | 51 bool Write(ostream &ostrm) const { return true; } in Write() function 108 bool Write(ostream &ostrm) const { in Write() function 112 a1_->Write(ostrm); in Write() 116 a2_->Write(ostrm); in Write() 240 bool Write(ostream &strm, const FstWriteOptions &opts) const { in Write() function 249 if (!fst_.Write(strm, fopts)) in Write() 254 t_->Write(strm); in Write()
|