HomeSort by relevance Sort by last modified time
    Searched defs:WriteByte (Results 1 - 9 of 9) sorted by null

  /external/lzma/CS/7zip/Common/
OutBuffer.cs 30 public void WriteByte(byte b)
  /external/lzma/CPP/7zip/Common/
OutBuffer.h 49 void WriteByte(Byte b)
58 WriteByte(((const Byte *)data)[i]);
CWrappers.h 101 void WriteByte(Byte b)
  /external/lzma/CPP/7zip/Archive/7z/
7zOut.h 36 void WriteByte(Byte b)
69 void WriteByte(Byte b);
7zOut.cpp 173 void COutArchive::WriteByte(Byte b)
179 _outByte.WriteByte(b);
183 _outByte2.WriteByte(b);
190 WriteByte((Byte)value);
199 WriteByte((Byte)value);
219 WriteByte(firstByte);
222 WriteByte((Byte)value);
294 WriteByte(b);
331 WriteByte(b);
337 WriteByte(b);
    [all...]
  /external/sfntly/cpp/src/sfntly/data/
writable_font_data.cc 54 int32_t WritableFontData::WriteByte(int32_t index, byte_t b) {
102 return WriteByte(index, c);
106 WriteByte(index, (byte_t)((us >> 8) & 0xff));
107 WriteByte(index + 1, (byte_t)(us & 0xff));
112 WriteByte(index, (byte_t)(us & 0xff));
113 WriteByte(index + 1, (byte_t)((us >> 8) & 0xff));
122 WriteByte(index, (byte_t)((ui >> 16) & 0xff));
123 WriteByte(index + 1, (byte_t)((ui >> 8) & 0xff));
124 WriteByte(index + 2, (byte_t)(ui & 0xff));
129 WriteByte(index, (byte_t)((ul >> 24) & 0xff))
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 72 void WriteByte(unsigned char Value) {
378 WriteByte((unsigned char)BlobData[i]);
386 WriteByte((unsigned char)Vals[RecordIdx]);
392 WriteByte(0);
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs 136 public override void WriteByte(byte b)
  /external/sonivox/jet_tools/JetCreator/
midifile.py 278 def WriteByte (stream, value):
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)
    [all...]

Completed in 136 milliseconds