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

  /external/opencv/
WLNonFileByteStream.cpp 71 void WLNonFileByteStream::PutByte( int val )
113 PutByte(val);
114 PutByte(val >> 8);
133 PutByte(val);
134 PutByte(val >> 8);
135 PutByte(val >> 16);
136 PutByte(val >> 24);
  /external/lzma/CS/7zip/Compress/LZ/
LzOutWindow.cs 95 public void PutByte(byte b)
  /external/lzma/Java/SevenZip/Compression/LZ/
OutWindow.java 71 public void PutByte(byte b) throws IOException
  /external/flatbuffers/net/FlatBuffers/
ByteBuffer.cs 155 public void PutByte(int offset, byte value)
161 public void PutByte(int offset, byte value, int count)
171 PutByte(offset, value);
FlatBufferBuilder.cs 95 _bb.PutByte(_space -= size, 0, size);
145 _bb.PutByte(_space -= sizeof(byte), (byte)(x ? 1 : 0));
153 public void PutByte(byte x)
155 _bb.PutByte(_space -= sizeof(byte), x);
215 public void AddByte(byte x) { Prep(sizeof(byte), 0); PutByte(x); }
  /external/opencv/otherlibs/highgui/
bitstrm.cpp 823 void WLByteStream::PutByte( int val )
871 PutByte(val);
872 PutByte(val >> 8);
893 PutByte(val);
894 PutByte(val >> 8);
895 PutByte(val >> 16);
896 PutByte(val >> 24);
922 PutByte(val >> 8);
923 PutByte(val);
944 PutByte(val >> 24)
    [all...]
  /external/lzma/CPP/7zip/Bundles/LzmaSpec/
LzmaSpec.cpp 87 void PutByte(Byte b)
107 PutByte(GetByte(dist));
398 OutWindow.PutByte((Byte)(symbol - 0x100));
508 OutWindow.PutByte(OutWindow.GetByte(rep0 + 1));

Completed in 166 milliseconds