Home
last modified time | relevance | path

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

12

/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 …]
Dwritable_font_data.h51 virtual int32_t WriteByte(int32_t index, byte_t b);
/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
236 void WriteByte(Byte b);
/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/libmojo/mojo/edk/test/
Dmultiprocess_test_helper_unittest.cc37 bool WriteByte(const PlatformHandle& handle, char c) { in WriteByte() function
84 EXPECT_TRUE(WriteByte(handle.get(), c)); in TEST_F()
111 EXPECT_TRUE(WriteByte(handle.get(), c)); in MOJO_MULTIPROCESS_TEST_CHILD_MAIN()
/external/lzma/CPP/7zip/Common/
DOutBuffer.h48 void WriteByte(Byte b) in WriteByte() function
57 WriteByte(((const Byte *)data)[i]); in WriteBytes()
DCWrappers.h106 void WriteByte(Byte b) in WriteByte() function
/external/boringssl/src/util/
Dembed_test_data.go29 buf.WriteByte('"')
/external/lzma/CS/7zip/Common/
DOutBuffer.cs30 public void WriteByte(byte b) in WriteByte() method in SevenZip.Buffer.OutBuffer
/external/sfntly/cpp/src/sfntly/table/
Dbyte_array_table_builder.cc42 data->WriteByte(index, b); in SetByteValue()
/external/llvm/include/llvm/Bitcode/
DBitstreamWriter.h66 void WriteByte(unsigned char Value) { in WriteByte() function
400 WriteByte((unsigned char)B);
405 WriteByte(0);
/external/sonivox/jet_tools/JetCreator/
Dmidifile.py278 def WriteByte (stream, value): function
283 WriteByte(stream, byte)
369 WriteByte(stream, status)
371 WriteByte(stream, data1)
373 WriteByte(stream, data2)
640 WriteByte(stream, SYSEX)
672 WriteByte(stream, END_SYSEX)
707 WriteByte(stream, META_EVENT)
708 WriteByte(stream, self.meta_type)
/external/autotest/client/common_lib/
Di2c_slave.py138 if self.lib_obj.WriteByte(self.fd, reg, byte) < 0:
/external/lzma/CS/7zip/Compress/RangeCoder/
DRangeCoder.cs72 Stream.WriteByte((byte)(temp + (Low >> 32))); in ShiftLow()
/external/zlib/src/contrib/dotzlib/DotZLib/
DGZipStream.cs226 public override void WriteByte(byte value) in WriteByte() method in DotZLib.GZipStream
/external/flatbuffers/go/
Dencode.go129 func WriteByte(buf []byte, n byte) { func
/external/lzma/CPP/7zip/Bundles/LzmaSpec/
DLzmaSpec.cpp55 void WriteByte(Byte b) in WriteByte() function
96 OutStream.WriteByte(b); in PutByte()
/external/lzma/CS/7zip/Compress/LzmaAlone/
DLzmaAlone.cs304 outStream.WriteByte((Byte)(fileSize >> (8 * i))); in Main2()
DLzmaBench.cs136 public override void WriteByte(byte b) in WriteByte() method in SevenZip.LzmaBench.CrcOutStream
/external/pdfium/third_party/lcms2-2.6/src/
Dcmsps2.c314 void WriteByte(cmsIOHANDLER* m, cmsUInt8Number b) in WriteByte() function
655 WriteByte(sc -> m, wByteOut); in OutputValueSampler()
/external/sfntly/cpp/src/test/
Dfont_data_test.cc182 wfd->WriteByte(index, b); in WriteFontDataWithSingleByte()

12