HomeSort by relevance Sort by last modified time
    Searched refs:Byte (Results 1 - 25 of 759) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ByteTest.java 24 * java.lang.Byte#valueOf(byte)
27 assertEquals(new Byte(Byte.MIN_VALUE), Byte.valueOf(Byte.MIN_VALUE));
28 assertEquals(new Byte(Byte.MAX_VALUE), Byte.valueOf(Byte.MAX_VALUE))
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/primitives/super/com/google/common/primitives/
ByteArrayAsListTest.java 30 * Test suite covering {@link Bytes#asList(byte[])}.
37 private static List<Byte> asList(Byte[] values) {
38 byte[] temp = new byte[values.length];
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}
    [all...]
  /external/lzma/C/
Bcj2.h 28 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);
Delta.h 15 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);
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);
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 *)(p))[1] = (Byte)(_x_ >> 8); }
    [all...]
Lzma86.h 17 .lzma86 header adds one additional byte to standard .lzma header.
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);
Bra.h 29 you must start next call with first byte after block of processed bytes.
57 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);
Bra86.c 8 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)(dest >> 16);
    [all...]
Delta.c 6 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 *data, SizeT size)
    [all...]
LzmaDec.h 40 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 *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/add_int_lit8/d/
T_add_int_lit8_2.java 22 return Byte.MIN_VALUE + Byte.MAX_VALUE;
T_add_int_lit8_7.java 22 return 0 + Byte.MAX_VALUE;
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;
  /libcore/luni/src/test/java/libcore/java/lang/
ByteTest.java 21 final byte min = Byte.MIN_VALUE;
22 final byte zero = (byte) 0;
23 final byte max = Byte.MAX_VALUE;
24 assertTrue(Byte.compare(max, max) == 0);
25 assertTrue(Byte.compare(min, min) == 0);
26 assertTrue(Byte.compare(zero, zero) == 0);
27 assertTrue(Byte.compare(max, zero) > 0)
    [all...]
  /external/guava/guava-tests/test/com/google/common/primitives/
ByteArrayAsListTest.java 38 * Test suite covering {@link Bytes#asList(byte[])}.
45 private static List<Byte> asList(Byte[] values) {
46 byte[] temp = new byte[values.length];
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)
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zHeader.cpp 9 Byte kSignature[kSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C};
11 Byte kFinishSignature[kSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C + 1};
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/div_int_lit8/d/
T_div_int_lit8_11.java 22 return 1 / Byte.MAX_VALUE;
T_div_int_lit8_12.java 22 return 1 / Byte.MIN_VALUE;
T_div_int_lit8_10.java 22 return Integer.MIN_VALUE / Byte.MAX_VALUE;
  /external/llvm/include/llvm/Support/
LEB128.h 26 uint8_t Byte = Value & 0x7f;
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;
44 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
45 OS << char(Byte);
    [all...]
  /external/lzma/CPP/7zip/Compress/
BranchMisc.cpp 9 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 *data, UInt32 size)
    [all...]
  /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);
  /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;

Completed in 405 milliseconds

1 2 3 4 5 6 7 8 91011>>