Home
last modified time | relevance | path

Searched refs:WriteByte (Results 1 – 25 of 59) sorted by relevance

123

/external/sfntly/cpp/src/sfntly/data/
Dwritable_font_data.cc57 int32_t WritableFontData::WriteByte(int32_t index, byte_t b) { in WriteByte() function in sfntly::WritableFontData
105 return WriteByte(index, c); in WriteChar()
109 WriteByte(index, (byte_t)((us >> 8) & 0xff)); in WriteUShort()
110 WriteByte(index + 1, (byte_t)(us & 0xff)); in WriteUShort()
115 WriteByte(index, (byte_t)(us & 0xff)); in WriteUShortLE()
116 WriteByte(index + 1, (byte_t)((us >> 8) & 0xff)); in WriteUShortLE()
125 WriteByte(index, (byte_t)((ui >> 16) & 0xff)); in WriteUInt24()
126 WriteByte(index + 1, (byte_t)((ui >> 8) & 0xff)); in WriteUInt24()
127 WriteByte(index + 2, (byte_t)(ui & 0xff)); in WriteUInt24()
132 WriteByte(index, (byte_t)((ul >> 24) & 0xff)); in WriteULong()
[all …]
/external/lzma/CPP/7zip/Archive/7z/
D7zOut.cpp155 void COutArchive::WriteByte(Byte b) in WriteByte() function in NArchive::N7z::COutArchive
161 _outByte.WriteByte(b); in WriteByte()
165 _outByte2.WriteByte(b); in WriteByte()
172 WriteByte((Byte)value); in WriteUInt32()
181 WriteByte((Byte)value); in WriteUInt64()
201 WriteByte(firstByte); in WriteNumber()
204 WriteByte((Byte)value); in WriteNumber()
315 WriteByte(b); in WriteBoolVector()
321 WriteByte(b); in WriteBoolVector()
328 WriteByte(id); in WritePropBoolVector()
[all …]
/external/golang-protobuf/proto/
Dtext.go66 WriteByte(byte) error methodSpec
106 if err := w.w.WriteByte(' '); err != nil {
130 if err := w.w.WriteByte('\n'); err != nil {
140 func (w *textWriter) WriteByte(c byte) error { func
147 err := w.w.WriteByte(c)
167 return w.WriteByte(':')
301 if err := w.WriteByte(' '); err != nil {
317 if err := w.WriteByte('\n'); err != nil {
333 if err := w.WriteByte(' '); err != nil {
338 if err := w.WriteByte('<'); err != nil {
[all …]
/external/syzkaller/vendor/github.com/golang/protobuf/proto/
Dtext.go66 WriteByte(byte) error methodSpec
106 if err := w.w.WriteByte(' '); err != nil {
130 if err := w.w.WriteByte('\n'); err != nil {
140 func (w *textWriter) WriteByte(c byte) error { func
147 err := w.w.WriteByte(c)
167 return w.WriteByte(':')
301 if err := w.WriteByte(' '); err != nil {
317 if err := w.WriteByte('\n'); err != nil {
333 if err := w.WriteByte(' '); err != nil {
338 if err := w.WriteByte('<'); err != nil {
[all …]
Dmessage_set.go247 b.WriteByte('{')
265 b.WriteByte(',')
283 b.WriteByte('}')
/external/syzkaller/pkg/email/
Dreply.go18 out.WriteByte('>')
20 out.WriteByte(' ')
23 out.WriteByte('\n')
36 out.WriteByte('\n')
39 out.WriteByte('\n')
41 out.WriteByte('\n')
/external/libchrome/base/files/
Dfile_descriptor_watcher_posix_unittest.cc128 void WriteByte() { in WriteByte() function in base::__anon7ab4a7fa0111::FileDescriptorWatcherTest
185 WriteByte(); in TEST_P()
204 WriteByte(); in TEST_P()
205 WriteByte(); in TEST_P()
226 WriteByte(); in TEST_P()
231 WriteByte(); in TEST_P()
249 WriteByte(); in TEST_P()
272 WriteByte(); in TEST_P()
282 WriteByte(); in TEST_P()
/external/sfntly/cpp/src/sfntly/table/bitmap/
Dbig_glyph_metrics.cc81 InternalWriteData()->WriteByte(Offset::kHeight, height); in SetHeight()
89 InternalWriteData()->WriteByte(Offset::kWidth, width); in SetWidth()
97 InternalWriteData()->WriteByte(Offset::kHoriBearingX, bearing); in SetHoriBearingX()
105 InternalWriteData()->WriteByte(Offset::kHoriBearingY, bearing); in SetHoriBearingY()
113 InternalWriteData()->WriteByte(Offset::kHoriAdvance, advance); in SetHoriAdvance()
121 InternalWriteData()->WriteByte(Offset::kVertBearingX, bearing); in SetVertBearingX()
129 InternalWriteData()->WriteByte(Offset::kVertBearingY, bearing); in SetVertBearingY()
137 InternalWriteData()->WriteByte(Offset::kVertAdvance, advance); in SetVertAdvance()
Dsmall_glyph_metrics.cc69 InternalWriteData()->WriteByte(Offset::kHeight, height); in SetHeight()
77 InternalWriteData()->WriteByte(Offset::kWidth, width); in SetWidth()
85 InternalWriteData()->WriteByte(Offset::kBearingX, bearing); in SetBearingX()
93 InternalWriteData()->WriteByte(Offset::kBearingY, bearing); in SetBearingY()
101 InternalWriteData()->WriteByte(Offset::kAdvance, advance); in SetAdvance()
/external/v8/src/
Deh-frame.cc101 WriteByte(kCIEVersion); in WriteCie()
115 WriteByte(EhFrameConstants::kOmit); in WriteCie()
117 WriteByte(EhFrameConstants::kSData4 | EhFrameConstants::kPcRel); in WriteCie()
153 WriteByte(0); in WriteFdeHeader()
210 WriteByte(EhFrameConstants::kEhFrameHdrVersion); in WriteEhFrameHdr()
213 WriteByte(EhFrameConstants::kSData4 | EhFrameConstants::kPcRel); in WriteEhFrameHdr()
215 WriteByte(EhFrameConstants::kUData4); in WriteEhFrameHdr()
217 WriteByte(EhFrameConstants::kSData4 | EhFrameConstants::kDataRel); in WriteEhFrameHdr()
259 WriteByte((EhFrameConstants::kLocationTag in AdvanceLocation()
264 WriteByte(factored_delta); in AdvanceLocation()
[all …]
Deh-frame.h129 void WriteByte(byte value) { eh_frame_buffer_.push_back(value); } in WriteByte() function
131 WriteByte(static_cast<byte>(opcode)); in WriteOpcode()
/external/boringssl/src/util/
Dgodeps.go49 b.WriteByte('\\')
50 b.WriteByte(c)
58 b.WriteByte(in[i])
88 b.WriteByte('\\')
89 b.WriteByte(c)
91 b.WriteByte(c)
Dembed_test_data.go28 buf.WriteByte('"')
/external/perfetto/src/protozero/
Dscattered_stream_writer_unittest.cc45 ssw.WriteByte(i); in TEST()
62 ssw.WriteByte(0xFF); in TEST()
81 ssw.WriteByte(0xFF); in TEST()
104 ssw.WriteByte(1); in TEST()
/external/tensorflow/tensorflow/contrib/ignite/kernels/dataset/
Dignite_dataset_iterator.cc207 TF_RETURN_IF_ERROR(client_->WriteByte(1)); in Handshake()
211 TF_RETURN_IF_ERROR(client_->WriteByte(2)); in Handshake()
213 TF_RETURN_IF_ERROR(client_->WriteByte(kNullVal)); in Handshake()
215 TF_RETURN_IF_ERROR(client_->WriteByte(kStringVal)); in Handshake()
223 TF_RETURN_IF_ERROR(client_->WriteByte(kNullVal)); in Handshake()
225 TF_RETURN_IF_ERROR(client_->WriteByte(kStringVal)); in Handshake()
279 TF_RETURN_IF_ERROR(client_->WriteByte(0)); // Flags in ScanQuery()
280 TF_RETURN_IF_ERROR(client_->WriteByte(kNullVal)); // Filter object in ScanQuery()
283 TF_RETURN_IF_ERROR(client_->WriteByte(local_)); // local_ flag in ScanQuery()
/external/syzkaller/vendor/github.com/googleapis/gax-go/
Dheader.go18 buf.WriteByte(' ')
20 buf.WriteByte('/')
/external/syzkaller/vendor/github.com/ianlancetaylor/demangle/
Dc++filt.go75 out.WriteByte('\n')
105 out.WriteByte('\n')
127 out.WriteByte('.')
/external/lzma/CPP/7zip/Common/
DOutBuffer.h48 void WriteByte(Byte b) in WriteByte() function
60 WriteByte(((const Byte *)data)[i]); in WriteBytes()
/external/pdfium/core/fpdfapi/edit/
Dcpdf_creator.cpp34 bool WriteByte(uint8_t byte) override;
98 bool CFX_FileBufferArchive::WriteByte(uint8_t byte) { in WriteByte() function in __anonc96788e10111::CFX_FileBufferArchive
129 if (!archive->WriteByte(static_cast<uint8_t>(offset >> 24)) || in OutputIndex()
130 !archive->WriteByte(static_cast<uint8_t>(offset >> 16)) || in OutputIndex()
131 !archive->WriteByte(static_cast<uint8_t>(offset >> 8)) || in OutputIndex()
132 !archive->WriteByte(static_cast<uint8_t>(offset)) || in OutputIndex()
133 !archive->WriteByte(0)) { in OutputIndex()
/external/tensorflow/tensorflow/contrib/ignite/kernels/igfs/
Digfs_extended_tcp_client.cc103 TF_RETURN_IF_ERROR(WriteByte(0)); in FillWithZerosUntil()
110 return WriteByte((char)(val ? 1 : 0)); in WriteBool()
/external/syzkaller/vendor/golang.org/x/net/http2/hpack/
Dhuffman.go69 buf.WriteByte(n.sym)
89 buf.WriteByte(n.sym)
/external/syzkaller/vendor/google.golang.org/grpc/transport/
Dhttp_util.go482 buf.WriteByte(b)
514 buf.WriteByte(c)
516 buf.WriteByte(byte(parsed))
520 buf.WriteByte(c)
/external/syzkaller/vendor/golang.org/x/oauth2/
Doauth2.go140 buf.WriteByte('&')
142 buf.WriteByte('?')
/external/lzma/CS/7zip/Common/
DOutBuffer.cs30 public void WriteByte(byte b) in WriteByte() method in SevenZip.Buffer.OutBuffer
/external/syzkaller/vendor/google.golang.org/appengine/datastore/
Dkey.go118 b.WriteByte('/')
120 b.WriteByte(',')

123