/external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/ |
H A D | ByteArrayAsListTest.java | 37 private static List<Byte> asList(Byte[] values) { 49 @Override protected List<Byte> create(Byte[] elements) { 55 @Override protected List<Byte> create(Byte[] elements) { 56 Byte[] suffix = {Byte.MIN_VALUE, Byte.MAX_VALUE}; 57 Byte[] al [all...] |
/external/lzma/C/ |
H A D | Bcj2.h | 26 const Byte *buf0, SizeT size0,
27 const Byte *buf1, SizeT size1,
28 const Byte *buf2, SizeT size2,
29 const Byte *buf3, SizeT size3,
30 Byte *outBuf, SizeT outSize);
|
H A D | Delta.h | 13 void Delta_Init(Byte *state);
14 void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size);
15 void Delta_Decode(Byte *state, unsigned delta, Byte *data, SizeT size);
|
H A D | Sha256.h | 17 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 D | CpuArch.h | 74 #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 D | Aes.h | 23 typedef void (MY_FAST_CALL *AES_SET_KEY_FUNC)(UInt32 *aes, const Byte *key, unsigned keySize);
24 void MY_FAST_CALL Aes_SetKey_Enc(UInt32 *aes, const Byte *key, unsigned keySize);
25 void MY_FAST_CALL Aes_SetKey_Dec(UInt32 *aes, const Byte *key, unsigned keySize);
28 void AesCbc_Init(UInt32 *ivAes, const Byte *iv); /* iv size is AES_BLOCK_SIZE */
31 typedef void (MY_FAST_CALL *AES_CODE_FUNC)(UInt32 *ivAes, Byte *data, size_t numBlocks);
|
H A D | Lzma86.h | 71 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 D | Bra.h | 55 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding);
56 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
57 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
58 SizeT PPC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
59 SizeT SPARC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
60 SizeT IA64_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
|
H A D | Delta.c | 8 void Delta_Init(Byte *state)
15 static void MyMemCpy(Byte *dest, const Byte *src, unsigned size)
22 void Delta_Encode(Byte *state, unsigned delta, Byte *data, SizeT size)
24 Byte buf[DELTA_STATE_SIZE];
33 Byte b = data[i];
34 data[i] = (Byte)(b - buf[j]);
45 void Delta_Decode(Byte *state, unsigned delta, Byte *dat [all...] |
H A D | LzmaDec.h | 38 SRes LzmaProps_Decode(CLzmaProps *p, const Byte *data, unsigned size);
52 Byte *dic;
53 const Byte *buf;
66 Byte tempBuf[LZMA_REQUIRED_INPUT_MAX];
132 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc);
135 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
180 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
196 SRes LzmaDec_DecodeToBuf(CLzmaDec *p, Byte *dest, SizeT *destLen,
197 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
221 SRes LzmaDecode(Byte *des [all...] |
H A D | Lzma2Dec.h | 19 Byte control;
29 SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
30 SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAlloc *alloc);
50 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
52 SRes Lzma2Dec_DecodeToBuf(CLzma2Dec *p, Byte *dest, SizeT *destLen,
53 const Byte *src, SizeT *srcLen, ELzmaFinishMode finishMode, ELzmaStatus *status);
75 SRes Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
76 Byte prop, ELzmaFinishMode finishMode, ELzmaStatus *status, ISzAlloc *alloc);
|
H A D | Bra86.c | 10 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding)
21 Byte *p = data + pos;
22 const Byte *limit = data + size;
61 if (Test86MSByte((Byte)(v >> sh)))
71 p[1] = (Byte)v;
72 p[2] = (Byte)(v >> 8);
73 p[3] = (Byte)(v >> 16);
74 p[4] = (Byte)(0 - ((v >> 24) & 1));
|
H A D | Bra.c | 8 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
27 data[i + 2] = (Byte)(dest >> 16);
28 data[i + 1] = (Byte)(dest >> 8);
29 data[i + 0] = (Byte)dest;
35 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
61 data[i + 1] = (Byte)(0xF0 | ((dest >> 19) & 0x7));
62 data[i + 0] = (Byte)(dest >> 11);
63 data[i + 3] = (Byte)(0xF8 | ((dest >> 8) & 0x7));
64 data[i + 2] = (Byte)dest;
71 SizeT PPC_Convert(Byte *dat [all...] |
H A D | 7zBuf.h | 1 /* 7zBuf.h -- Byte Buffer
13 Byte *data;
23 Byte *data;
30 int DynBuf_Write(CDynBuf *p, const Byte *buf, size_t size, ISzAlloc *alloc);
|
/external/guava/guava-tests/test/com/google/common/primitives/ |
H A D | ByteArrayAsListTest.java | 45 private static List<Byte> asList(Byte[] values) { 55 List<ListTestSuiteBuilder<Byte>> builders = 71 for (ListTestSuiteBuilder<Byte> builder : builders) { 87 @Override protected List<Byte> create(Byte[] elements) { 93 @Override protected List<Byte> create(Byte[] elements) { 94 Byte[] suffix = {Byte [all...] |
/external/lzma/CPP/7zip/Archive/7z/ |
H A D | 7zHeader.cpp | 10 Byte kSignature[kSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C};
12 Byte kFinishSignature[kSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C + 1};
|
H A D | 7zHeader.h | 12 extern Byte kSignature[kSignatureSize];
21 extern Byte kFinishSignature[kSignatureSize];
26 Byte Major;
27 Byte Minor;
30 const Byte kMajorVersion = 0;
|
/external/lzma/CPP/7zip/Crypto/ |
H A D | RandGen.h | 10 Byte _buff[SHA256_DIGEST_SIZE];
16 void Generate(Byte *data, unsigned size);
|
/external/llvm/include/llvm/Support/ |
H A D | LEB128.h | 26 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 | 98 uint8_t Byte; local [all...] |
/external/lzma/CPP/7zip/UI/Common/ |
H A D | PropIDUtils.h | 12 bool ConvertNtReparseToString(const Byte *data, UInt32 size, UString &s);
13 void ConvertNtSecureToString(const Byte *data, UInt32 size, AString &s);
14 bool CheckNtSecure(const Byte *data, UInt32 size);
|
/external/lzma/CPP/7zip/Common/ |
H A D | InBuffer.h | 19 Byte *_buf;
20 Byte *_bufLim;
21 Byte *_bufBase;
30 bool ReadByte_FromNewBlock(Byte &b);
31 Byte ReadByte_FromNewBlock();
47 void SetBuf(Byte *buf, size_t bufSize, size_t end, size_t pos)
63 bool ReadByte(Byte &b)
71 Byte ReadByte()
78 size_t ReadBytes(Byte *buf, size_t size);
|
H A D | CWrappers.h | 52 const Byte *Cur;
53 const Byte *Lim;
54 Byte *Buf;
73 Byte ReadByteFromNewBlock() throw();
74 Byte ReadByte()
85 Byte *Cur;
86 const Byte *Lim;
87 Byte *Buf;
106 void WriteByte(Byte b)
|
/external/llvm/lib/Support/ |
H A D | LEB128.cpp | 36 unsigned Byte = Value & 0x7f; local 38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
|
/external/lzma/CPP/7zip/Compress/ |
H A D | BcjCoder.cpp | 7 UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size)
12 UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size)
|
H A D | 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];
|