Searched refs:Byte (Results 101 - 125 of 312) sorted by relevance

1234567891011>>

/external/lzma/C/
H A D7zDec.c36 const Byte *cur;
37 const Byte *end;
38 const Byte *begin;
45 static Byte ReadByte(void *pp)
67 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
112 outBuffer[i] = (Byte)sym;
128 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
141 Byte *inBuf = NULL;
176 Byte *outBuffer, SizeT outSize, ISzAlloc *allocMain)
191 Byte *inBu
[all...]
H A DTypes.h55 typedef unsigned char Byte; typedef
129 Byte (*Read)(void *p); /* reads one byte, returns 0 in case of EOF or error */
134 void (*Write)(void *p, Byte b);
147 SRes SeqInStream_ReadByte(ISeqInStream *stream, Byte *buf);
198 Byte buf[LookToRead_BUF_SIZE];
H A DXzDec.c30 unsigned Xz_ReadVarInt(const Byte *p, size_t maxSize, UInt64 *value)
38 Byte b = p[i];
61 Byte deltaState[DELTA_STATE_SIZE];
63 Byte buf[BRA_BUF_SIZE];
71 SRes BraState_SetProps(void *pp, const Byte *props, size_t propSize, ISzAlloc *alloc)
124 static SRes BraState_Code(void *pp, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
233 static SRes SbState_SetProps(void *pp, const Byte *props, size_t propSize, ISzAlloc *alloc)
246 static SRes SbState_Code(void *pp, Byte *dest, SizeT *destLen, const Byte *sr
[all...]
H A D7zCrc.c26 const Byte *p = (const Byte *)data;
H A DXzIn.c12 Byte sig[XZ_STREAM_HEADER_SIZE];
25 Byte header[XZ_BLOCK_HEADER_SIZE_MAX];
71 static SRes Xz_ReadIndex2(CXzStream *p, const Byte *buf, size_t size, ISzAlloc *alloc)
120 Byte *buf;
144 Byte buf[XZ_STREAM_FOOTER_SIZE];
162 Byte tempBuf[TEMP_BUF_SIZE];
290 Byte *data = (Byte *)alloc->Alloc(alloc, newNum * sizeof(CXzStream));
H A DLzmaDec.c131 static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte *bufLimit)
141 Byte *dic = p->dic;
149 const Byte *buf = p->buf;
193 dic[dicPos++] = (Byte)symbol;
390 Byte *dest = dic + dicPos;
392 const Byte *lim = dest + curLen;
395 *(dest) = (Byte)*(dest + src);
432 Byte *dic = p->dic;
454 static int MY_FAST_CALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit)
487 static ELzmaDummy LzmaDec_TryDummy(const CLzmaDec *p, const Byte *bu
[all...]
/external/lzma/CPP/7zip/Compress/
H A DRangeCoder.h19 Byte _cache;
62 Byte temp = _cache;
65 Stream.WriteByte((Byte)(temp + (Byte)(Low >> 32)));
69 _cache = (Byte)((UInt32)Low >> 24);
H A DPpmdEncoder.cpp55 _order = (Byte)v;
67 Byte props[kPropSize];
78 _inBuf = (Byte *)::MidAlloc(kBufSize);
H A DLzmaDecoder.h26 Byte *_inBuf;
59 STDMETHOD(SetDecoderProperties2)(const Byte *data, UInt32 size);
/external/lzma/CPP/7zip/
H A DICoder.h65 STDMETHOD(SetDecoderProperties2)(const Byte *data, UInt32 size) PURE;
119 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size) PURE;
142 STDMETHOD(SetKey)(const Byte *data, UInt32 size) PURE;
143 STDMETHOD(SetInitVector)(const Byte *data, UInt32 size) PURE;
160 STDMETHOD(CryptoSetPassword)(const Byte *data, UInt32 size) PURE;
/external/lzma/CPP/Common/
H A DUTFConvert.cpp8 static const Byte kUtf8Limits[5] = { 0xC0, 0xE0, 0xF0, 0xF8, 0xFC };
15 Byte c;
22 c = (Byte)src[srcPos++];
40 Byte c2;
43 c2 = (Byte)src[srcPos++];
/external/lzma/CPP/7zip/Archive/
H A DLzmaHandler.cpp26 static bool CheckDicSize(const Byte *p)
45 Byte FilterID;
46 Byte LzmaProps[5];
50 bool Parse(const Byte *buf, bool isThereFilter);
53 bool CHeader::Parse(const Byte *buf, bool isThereFilter)
58 const Byte *sig = buf + (isThereFilter ? 1 : 0);
85 HRESULT ReadInput(Byte *data, UInt32 size, UInt32 *processedSize)
285 Byte buf[kBufSize];
291 const Byte *start = buf + GetHeaderSize();
378 Byte bu
[all...]
/external/chromium_org/third_party/zlib/
H A Dzconf.h112 # define Byte z_Byte macro
336 typedef unsigned char Byte; /* 8 bits */ typedef
343 # define Bytef Byte FAR
345 typedef Byte FAR Bytef;
357 typedef Byte const *voidpc;
358 typedef Byte FAR *voidpf;
359 typedef Byte *voidp;
/external/llvm/include/llvm/CodeGen/
H A DMachineCodeEmitter.h181 uint8_t Byte = Value & 0x7f; local
183 if (Value) Byte |= 0x80;
184 emitByte(Byte);
195 uint8_t Byte = Value & 0x7f; local
197 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
198 if (IsMore) Byte |= 0x80;
199 emitByte(Byte);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zHandler.cpp181 static wchar_t GetHex(Byte value)
185 static inline void AddHexToString(UString &res, Byte value)
187 res += GetHex((Byte)(value >> 4));
188 res += GetHex((Byte)(value & 0xF));
284 UInt32 dicSize = GetUi32((const Byte *)coder.Props + 1);
289 Byte p = coder.Props[0];
295 Byte order = *(const Byte *)coder.Props;
299 UInt32 dicSize = GetUi32((const Byte *)coder.Props + 1);
304 const Byte *dat
[all...]
H A D7zOut.cpp22 data = (const void *)((const Byte *)data + processedSize);
38 Byte buf[8];
57 static void SetUInt32(Byte *p, UInt32 d)
60 p[i] = (Byte)d;
63 static void SetUInt64(Byte *p, UInt64 d)
66 p[i] = (Byte)d;
71 Byte buf[24];
173 void COutArchive::WriteByte(Byte b)
190 WriteByte((Byte)value);
199 WriteByte((Byte)valu
[all...]
/external/lzma/CS/7zip/Compress/LZ/
H A DLzInWindow.cs9 public Byte[] _bufferBase = null; // pointer to buffer with data
76 _bufferBase = new Byte[_blockSize];
105 public Byte GetIndexByte(Int32 index) { return _bufferBase[_bufferOffset + _pos + index]; }
114 // Byte *pby = _buffer + (size_t)_pos + index;
/external/lzma/CPP/7zip/Common/
H A DInOutTempBuffer.h16 Byte *_buf;
/external/chromium_org/third_party/lzma_sdk/
H A D7zCrc.c26 const Byte *p = (const Byte *)data;
H A DLzmaDec.c131 static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte *bufLimit)
141 Byte *dic = p->dic;
149 const Byte *buf = p->buf;
193 dic[dicPos++] = (Byte)symbol;
390 Byte *dest = dic + dicPos;
392 const Byte *lim = dest + curLen;
395 *(dest) = (Byte)*(dest + src);
432 Byte *dic = p->dic;
454 static int MY_FAST_CALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit)
487 static ELzmaDummy LzmaDec_TryDummy(const CLzmaDec *p, const Byte *bu
[all...]
/external/clang/test/Analysis/
H A Dcasts.c56 typedef unsigned char Byte; typedef
59 Byte buf[len];
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DConstants.java48 } else if (value instanceof Byte) {
49 return CstByte.make((Byte) value);
/external/easymock/src/org/easymock/internal/
H A DMethodSerializationWrapper.java32 primitiveTypes.put(Byte.TYPE.getName(), Byte.TYPE);
/external/lzma/CPP/Windows/
H A DPropVariant.h22 CPropVariant(Byte value) { vt = VT_UI1; wReserved1 = 0; bVal = value; }
35 CPropVariant& operator=(Byte value);
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaDec.c132 static int MY_FAST_CALL LzmaDec_DecodeReal(CLzmaDec *p, SizeT limit, const Byte *bufLimit)
142 Byte *dic = p->dic;
150 const Byte *buf = p->buf;
194 dic[dicPos++] = (Byte)symbol;
391 Byte *dest = dic + dicPos;
393 const Byte *lim = dest + curLen;
396 *(dest) = (Byte)*(dest + src);
433 Byte *dic = p->dic;
455 static int MY_FAST_CALL LzmaDec_DecodeReal2(CLzmaDec *p, SizeT limit, const Byte *bufLimit)
488 static ELzmaDummy LzmaDec_TryDummy(const CLzmaDec *p, const Byte *bu
[all...]

Completed in 1668 milliseconds

1234567891011>>