Searched refs:Byte (Results 1 - 25 of 312) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/lzma_sdk/
H A DBcj2.h28 const Byte *buf0, SizeT size0,
29 const Byte *buf1, SizeT size1,
30 const Byte *buf2, SizeT size2,
31 const Byte *buf3, SizeT size3,
32 Byte *outBuf, SizeT outSize);
H A DCpuArch.h75 #define GetUi16(p) (((const Byte *)(p))[0] | ((UInt16)((const Byte *)(p))[1] << 8))
78 ((const Byte *)(p))[0] | \
79 ((UInt32)((const Byte *)(p))[1] << 8) | \
80 ((UInt32)((const Byte *)(p))[2] << 16) | \
81 ((UInt32)((const Byte *)(p))[3] << 24))
83 #define GetUi64(p) (GetUi32(p) | ((UInt64)GetUi32(((const Byte *)(p)) + 4) << 32))
86 ((Byte *)(p))[0] = (Byte)_x_; \
87 ((Byte *)(
[all...]
H A DBra.h57 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding);
58 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
59 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
60 SizeT PPC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
61 SizeT SPARC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
62 SizeT IA64_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
H A DBra86.c8 const Byte kMaskToAllowedStatus[8] = {1, 1, 1, 0, 1, 0, 0, 0};
9 const Byte kMaskToBitNumber[8] = {0, 1, 2, 2, 3, 3, 3, 3};
11 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding)
22 Byte *p = data + bufferPos;
23 Byte *limit = data + size - 4;
38 Byte b = p[4 - kMaskToBitNumber[prevMask]];
56 Byte b;
65 b = (Byte)(dest >> (24 - index));
70 p[4] = (Byte)(~(((dest >> 24) & 1) - 1));
71 p[3] = (Byte)(des
[all...]
H A DLzmaDec.h40 SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size);
54 Byte *dic;
55 const Byte *buf;
68 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
134 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc);
137 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
182 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
198 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
199 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
223 SRes LzmaDecode(Byte *des
[all...]
H A DLzma2Dec.h21 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);
/external/lzma/C/
H A DBcj2.h28 const Byte *buf0, SizeT size0,
29 const Byte *buf1, SizeT size1,
30 const Byte *buf2, SizeT size2,
31 const Byte *buf3, SizeT size3,
32 Byte *outBuf, SizeT outSize);
H A DDelta.h15 void Delta_Init(Byte *state);
16 void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size);
17 void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size);
H A DSha256.h17 Byte buffer[64];
21 void Sha256_Update(CSha256 *p, const Byte *data, size_t size);
22 void Sha256_Final(CSha256 *p, Byte *digest);
H A DCpuArch.h74 #define GetUi16(p) (((const Byte *)(p))[0] | ((UInt16)((const Byte *)(p))[1] << 8))
77 ((const Byte *)(p))[0] | \
78 ((UInt32)((const Byte *)(p))[1] << 8) | \
79 ((UInt32)((const Byte *)(p))[2] << 16) | \
80 ((UInt32)((const Byte *)(p))[3] << 24))
82 #define GetUi64(p) (GetUi32(p) | ((UInt64)GetUi32(((const Byte *)(p)) + 4) << 32))
85 ((Byte *)(p))[0] = (Byte)_x_; \
86 ((Byte *)(
[all...]
H A DLzma86.h71 SRes Lzma86_Encode(Byte *dest, size_t *destLen, const Byte *src, size_t srcLen,
87 SRes Lzma86_GetUnpackSize(const Byte *src, SizeT srcLen, UInt64 *unpackSize);
107 SRes Lzma86_Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen);
H A DBra.h57 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding);
58 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
59 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
60 SizeT PPC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
61 SizeT SPARC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
62 SizeT IA64_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
H A DBra86.c8 const Byte kMaskToAllowedStatus[8] = {1, 1, 1, 0, 1, 0, 0, 0};
9 const Byte kMaskToBitNumber[8] = {0, 1, 2, 2, 3, 3, 3, 3};
11 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding)
22 Byte *p = data + bufferPos;
23 Byte *limit = data + size - 4;
38 Byte b = p[4 - kMaskToBitNumber[prevMask]];
56 Byte b;
65 b = (Byte)(dest >> (24 - index));
70 p[4] = (Byte)(~(((dest >> 24) & 1) - 1));
71 p[3] = (Byte)(des
[all...]
H A DDelta.c6 void Delta_Init(Byte *state)
13 static void MyMemCpy(Byte *dest, const Byte *src, unsigned size)
20 void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size)
22 Byte buf[DELTA_STATE_SIZE];
31 Byte b = data[i];
32 data[i] = (Byte)(b - buf[j]);
43 void Delta_Decode(Byte *state, unsigned delta, Byte *dat
[all...]
H A DLzmaDec.h40 SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size);
54 Byte *dic;
55 const Byte *buf;
68 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
134 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc);
137 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
182 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
198 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
199 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
223 SRes LzmaDecode(Byte *des
[all...]
H A DLzma2Dec.h21 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);
/external/guava/guava-tests/test/com/google/common/primitives/
H A DByteArrayAsListTest.java44 private static List<Byte> asList(Byte[] values) {
53 List<ListTestSuiteBuilder<Byte>> builders =
69 for (ListTestSuiteBuilder<Byte> builder : builders) {
85 @Override protected List<Byte> create(Byte[] elements) {
91 @Override protected List<Byte> create(Byte[] elements) {
92 Byte[] suffix = {Byte
[all...]
/external/lzma/CPP/7zip/Archive/7z/
H A D7zHeader.cpp9 Byte kSignature[kSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C};
11 Byte kFinishSignature[kSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C + 1};
H A D7zHeader.h12 extern Byte kSignature[kSignatureSize];
21 extern Byte kFinishSignature[kSignatureSize];
26 Byte Major;
27 Byte Minor;
30 const Byte kMajorVersion = 0;
/external/lzma/CPP/7zip/Common/
H A DMethodId.cpp8 static inline wchar_t GetHex(Byte value)
20 s[--len] = GetHex((Byte)id & 0xF);
22 s[--len] = GetHex((Byte)id & 0xF);
/external/llvm/include/llvm/Support/
H A DLEB128.h26 uint8_t Byte = Value & 0x7f; local
29 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
30 ((Value == -1) && ((Byte & 0x40) != 0))));
32 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
33 OS << char(Byte);
41 uint8_t Byte = Value & 0x7f; local
44 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
45 OS << char(Byte);
62 uint8_t Byte = Value & 0x7f; local
65 Byte |
[all...]
/external/lzma/CPP/7zip/Compress/
H A DBranchMisc.cpp9 UInt32 CBC_ARM_Encoder::SubFilter(Byte *data, UInt32 size)
12 UInt32 CBC_ARM_Decoder::SubFilter(Byte *data, UInt32 size)
15 UInt32 CBC_ARMT_Encoder::SubFilter(Byte *data, UInt32 size)
18 UInt32 CBC_ARMT_Decoder::SubFilter(Byte *data, UInt32 size)
21 UInt32 CBC_PPC_Encoder::SubFilter(Byte *data, UInt32 size)
24 UInt32 CBC_PPC_Decoder::SubFilter(Byte *data, UInt32 size)
27 UInt32 CBC_SPARC_Encoder::SubFilter(Byte *data, UInt32 size)
30 UInt32 CBC_SPARC_Decoder::SubFilter(Byte *data, UInt32 size)
33 UInt32 CBC_IA64_Encoder::SubFilter(Byte *data, UInt32 size)
36 UInt32 CBC_IA64_Decoder::SubFilter(Byte *dat
[all...]
H A DBcjCoder.cpp7 UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size)
12 UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size)
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaDec.h41 SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size);
55 Byte *dic;
56 const Byte *buf;
69 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
135 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc);
138 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
183 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
199 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
200 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
224 SRes LzmaDecode(Byte *des
[all...]
/external/llvm/lib/Support/
H A DLEB128.cpp36 unsigned Byte = Value & 0x7f; local
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;

Completed in 5644 milliseconds

1234567891011>>