HomeSort by relevance Sort by last modified time
    Searched refs:Byte (Results 26 - 50 of 740) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/lzma/CPP/7zip/Common/
MethodId.cpp 8 static inline wchar_t GetHex(Byte value)
20 s[--len] = GetHex((Byte)id & 0xF);
22 s[--len] = GetHex((Byte)id & 0xF);
InBuffer.h 19 Byte *_buffer;
20 Byte *_bufferLimit;
21 Byte *_bufferBase;
28 Byte ReadBlock2();
45 bool ReadByte(Byte &b)
53 Byte ReadByte()
59 UInt32 ReadBytes(Byte *buf, UInt32 size)
CWrappers.h 47 const Byte *Cur;
48 const Byte *Lim;
49 Byte *Buf;
68 Byte ReadByteFromNewBlock();
69 Byte ReadByte()
80 Byte *Cur;
81 const Byte *Lim;
82 Byte *Buf;
101 void WriteByte(Byte b)
  /external/chromium_org/third_party/lzma_sdk/
Lzma2Dec.h 21 Byte control;
31 SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
32 SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
52 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
54 SRes Lzma2Dec_DecodeToBuf(CLzma2Dec *p, Byte *dest, SizeT *destLen,
55 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
77 SRes Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
78 Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc);
Bra.c 6 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
25 data[i + 2] = (Byte)(dest >> 16);
26 data[i + 1] = (Byte)(dest >> 8);
27 data[i + 0] = (Byte)dest;
33 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
59 data[i + 1] = (Byte)(0xF0 | ((dest >> 19) & 0x7));
60 data[i + 0] = (Byte)(dest >> 11);
61 data[i + 3] = (Byte)(0xF8 | ((dest >> 8) & 0x7));
62 data[i + 2] = (Byte)dest;
69 SizeT PPC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding
    [all...]
7zBuf.h 1 /* 7zBuf.h -- Byte Buffer
15 Byte *data;
25 Byte *data;
32 int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAlloc *alloc);
  /external/lzma/C/
Lzma2Dec.h 21 Byte control;
31 SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
32 SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
52 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
54 SRes Lzma2Dec_DecodeToBuf(CLzma2Dec *p, Byte *dest, SizeT *destLen,
55 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
77 SRes Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
78 Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc);
Bra.c 6 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
25 data[i + 2] = (Byte)(dest >> 16);
26 data[i + 1] = (Byte)(dest >> 8);
27 data[i + 0] = (Byte)dest;
33 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
59 data[i + 1] = (Byte)(0xF0 | ((dest >> 19) & 0x7));
60 data[i + 0] = (Byte)(dest >> 11);
61 data[i + 3] = (Byte)(0xF8 | ((dest >> 8) & 0x7));
62 data[i + 2] = (Byte)dest;
69 SizeT PPC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
    [all...]
7zBuf.h 1 /* 7zBuf.h -- Byte Buffer
15 Byte *data;
25 Byte *data;
32 int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAlloc *alloc);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/add_int_lit8/d/
T_add_int_lit8_12.java 22 return Short.MIN_VALUE + Byte.MIN_VALUE;
T_add_int_lit8_8.java 22 return Integer.MAX_VALUE + Byte.MAX_VALUE;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/div_int_lit8/d/
T_div_int_lit8_10.java 22 return Integer.MIN_VALUE / Byte.MAX_VALUE;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/or_int_lit8/d/
T_or_int_lit8_5.java 22 int b = Byte.MAX_VALUE;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int_lit8/d/
T_rsub_int_lit8_4.java 22 int b = Byte.MAX_VALUE;
T_rsub_int_lit8_5.java 22 int b = Byte.MIN_VALUE;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/xor_int_lit8/d/
T_xor_int_lit8_4.java 22 return Integer.MAX_VALUE ^ Byte.MIN_VALUE;
  /libcore/luni/src/main/java/java/lang/
Byte.java 21 * The wrapper for the primitive type {@code byte}.
26 public final class Byte extends Number implements Comparable<Byte> {
33 private final byte value;
36 * The maximum {@code Byte} value, 2<sup>7</sup>-1.
38 public static final byte MAX_VALUE = (byte) 0x7F;
41 * The minimum {@code Byte} value, -2<sup>7</sup>.
43 public static final byte MIN_VALUE = (byte) 0x80
    [all...]
  /external/llvm/lib/Support/
LEB128.cpp 36 unsigned Byte = Value & 0x7f;
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
  /external/lzma/CPP/7zip/Compress/
BcjCoder.cpp 7 UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size)
12 UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size)
ByteSwap.cpp 18 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
28 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
33 STDMETHODIMP_(UInt32) CByteSwap2::Filter(Byte *data, UInt32 size)
39 Byte b = data[i];
48 STDMETHODIMP_(UInt32) CByteSwap4::Filter(Byte *data, UInt32 size)
54 Byte b0 = data[i];
55 Byte b1 = data[i + 1];
  /external/lzma/CPP/7zip/Archive/7z/
7zHeader.h 12 extern Byte kSignature[kSignatureSize];
21 extern Byte kFinishSignature[kSignatureSize];
26 Byte Major;
27 Byte Minor;
30 const Byte kMajorVersion = 0;
  /external/conscrypt/src/test/java/org/conscrypt/
SSLParametersImplTest.java 25 byte b = Byte.MIN_VALUE;
27 String byteString = Byte.toString(b);
55 } while (b != Byte.MIN_VALUE);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
in6addr.h 19 u_char Byte[16];
30 #define _S6_u8 Byte
33 #define s6_bytes u.Byte
  /development/ndk/platforms/android-3/include/linux/
zconf.h 33 typedef unsigned char Byte;
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
zconf.h 33 typedef unsigned char Byte;

Completed in 350 milliseconds

12 3 4 5 6 7 8 91011>>