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, uint8_t b) { in WriteByte() function in sfntly::WritableFontData
105 return WriteByte(index, c); in WriteChar()
109 WriteByte(index, (uint8_t)((us >> 8) & 0xff)); in WriteUShort()
110 WriteByte(index + 1, (uint8_t)(us & 0xff)); in WriteUShort()
115 WriteByte(index, (uint8_t)(us & 0xff)); in WriteUShortLE()
116 WriteByte(index + 1, (uint8_t)((us >> 8) & 0xff)); in WriteUShortLE()
125 WriteByte(index, (uint8_t)((ui >> 16) & 0xff)); in WriteUInt24()
126 WriteByte(index + 1, (uint8_t)((ui >> 8) & 0xff)); in WriteUInt24()
127 WriteByte(index + 2, (uint8_t)(ui & 0xff)); in WriteUInt24()
132 WriteByte(index, (uint8_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 …]
D7zOut.h39 void WriteByte(Byte b) in WriteByte() function
250 void WriteByte(Byte b);
/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/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/libchrome/base/files/
Dfile_descriptor_watcher_posix_unittest.cc128 void WriteByte() { in WriteByte() function in base::__anonfcf877d80111::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/starlark-go/starlarkjson/
Djson.go139 buf.WriteByte('{')
151 buf.WriteByte(',')
155 buf.WriteByte(':')
160 buf.WriteByte('}')
164 buf.WriteByte('[')
170 buf.WriteByte(',')
176 buf.WriteByte(']')
180 buf.WriteByte('{')
190 buf.WriteByte(',')
193 buf.WriteByte(':')
[all …]
/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.go32 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/oss-fuzz/projects/libpng-proto/
Dpng_proto_fuzzer_example.cc15 static void WriteByte(std::stringstream &out, uint8_t x) { in WriteByte() function
62 WriteByte(ihdr_str, ihdr.other2()); in ProtoToPng()
74 WriteByte(iccp_str, 0); in ProtoToPng()
75 WriteByte(iccp_str, 0); in ProtoToPng()
/external/pigweed/pw_sys_io_stdio/
Dsys_io.cc39 Status WriteByte(std::byte b) { in WriteByte() function
55 Status result = WriteByte(static_cast<std::byte>('\n')); in WriteLine()
/external/starlark-go/syntax/
Dquote.go113 buf.WriteByte('\n')
144 buf.WriteByte(unesc[quoted[1]])
169 buf.WriteByte(byte(n))
187 buf.WriteByte(byte(n))
/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.cpp41 bool WriteByte(uint8_t byte) override;
106 bool CFX_FileBufferArchive::WriteByte(uint8_t byte) { in WriteByte() function in __anon0d49f9ff0111::CFX_FileBufferArchive
134 return archive->WriteByte(static_cast<uint8_t>(offset >> 24)) && in OutputIndex()
135 archive->WriteByte(static_cast<uint8_t>(offset >> 16)) && in OutputIndex()
136 archive->WriteByte(static_cast<uint8_t>(offset >> 8)) && in OutputIndex()
137 archive->WriteByte(static_cast<uint8_t>(offset)) && in OutputIndex()
138 archive->WriteByte(0); in OutputIndex()
Dcpdf_stringarchivestream.h16 bool WriteByte(uint8_t byte) override;
Dcpdf_stringarchivestream.cpp12 bool CPDF_StringArchiveStream::WriteByte(uint8_t byte) { in WriteByte() function in CPDF_StringArchiveStream
/external/perfetto/tools/trace_to_text/
Dtrace_to_hprof.cc71 void WriteByte(uint8_t val) { buf_.emplace_back(val); } in WriteByte() function in perfetto::trace_to_text::__anon1c37e3f70111::BigEndianBuffer
76 WriteByte(static_cast<uint8_t>(*val)); in Write()
100 buf.WriteByte(type); in WriteRecord()
/external/pigweed/pw_sys_io/public/pw_sys_io/
Dsys_io.h73 Status WriteByte(std::byte b);
/external/lzma/CS/7zip/Common/
DOutBuffer.cs30 public void WriteByte(byte b) in WriteByte() method in SevenZip.Buffer.OutBuffer
/external/pigweed/pw_sys_io/
Dsys_io.cc31 Status result = WriteByte(src[i]); in WriteBytes()
/external/sfntly/cpp/src/sfntly/table/
Dbyte_array_table_builder.cc42 data->WriteByte(index, b); in SetByteValue()
/external/pigweed/pw_sys_io_arduino/
Dsys_io_arduino.cc48 Status WriteByte(std::byte b) { in WriteByte() function
/external/starlark-go/starlark/
Dvalue.go1145 out.WriteByte('[')
1156 out.WriteByte(']')
1159 out.WriteByte('(')
1167 out.WriteByte(',')
1169 out.WriteByte(')')
1182 out.WriteByte('{')
1196 out.WriteByte('}')

123