HomeSort by relevance Sort by last modified time
    Searched refs:Byte (Results 301 - 325 of 631) sorted by null

<<11121314151617181920>>

  /external/guava/guava-tests/test/com/google/common/primitives/
SignedBytesTest.java 39 private static final byte[] EMPTY = {};
40 private static final byte[] ARRAY1 = {(byte) 1};
42 private static final byte LEAST = Byte.MIN_VALUE;
43 private static final byte GREATEST = Byte.MAX_VALUE;
45 private static final byte[] VALUES =
49 for (byte value : VALUES) {
59 for (byte value : VALUES)
    [all...]
PrimitivesTest.java 53 boolean.class, byte.class, char.class, double.class,
68 Boolean.class, Byte.class, Character.class, Double.class,
  /external/lzma/CPP/7zip/Archive/7z/
7zDecode.cpp 237 RINOK(setDecoderProperties->SetDecoderProperties2((const Byte *)props, (UInt32)size));
272 ((Byte *)buffer)[i * 2] = (Byte)c;
273 ((Byte *)buffer)[i * 2 + 1] = (Byte)(c >> 8);
275 RINOK(cryptoSetPassword->CryptoSetPassword((const Byte *)buffer, sizeInBytes));
  /external/llvm/lib/MC/
MCAsmInfo.cpp 61 Data8bitsDirective = "\t.byte\t";
116 unsigned Byte = Value & 0x7f;
118 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
  /external/lzma/C/
Ppmd7.c 9 const Byte PPMD7_kExpEscape[16] = { 25, 14, 9, 7, 5, 5, 4, 4, 4, 3, 3, 3, 2, 2, 2, 2 };
22 #define REF(ptr) ((UInt32)((Byte *)(ptr) - (p)->Base))
67 do { p->Units2Indx[k++] = (Byte)i; } while(--step);
68 p->Indx2Units[i] = (Byte)k;
77 p->NS2Indx[i] = (Byte)i;
80 p->NS2Indx[i] = (Byte)m;
107 if ((p->Base = (Byte *)alloc->Alloc(alloc, p->AlignOffset + size
134 ptr = (Byte *)ptr + U2B(I2U(newIndx));
138 InsertNode(p, ((Byte *)ptr) + U2B(k), nu - k - 1);
309 s->Symbol = (Byte)i;
    [all...]
LzmaEnc.c 107 void LzmaEnc_FastPosInit(Byte *g_FastPos)
118 g_FastPos[c] = (Byte)slotFast;
224 Byte cache;
227 Byte *buf;
228 Byte *bufLim;
229 Byte *bufBase;
270 Byte pad[128];
282 Byte g_FastPos[1 << kNumLogBits];
469 p->bufBase = (Byte *)alloc->Alloc(alloc, RC_BUF_SIZE);
513 Byte temp = p->cache;
    [all...]
Ppmd7Dec.c 89 Byte symbol;
102 Byte symbol;
125 Byte symbol;
170 Byte symbol;
Ppmd7Enc.c 21 Byte temp = p->Cache;
24 p->Stream->Write(p->Stream, (Byte)(temp + (Byte)(p->Low >> 32)));
28 p->Cache = (Byte)((UInt32)p->Low >> 24);
  /external/lzma/CPP/7zip/Common/
InOutTempBuffer.cpp 23 _buf = new Byte[kTempBufSize];
71 data = ((const Byte *)data) + cur;
  /external/lzma/CS/7zip/Compress/LZ/
LzInWindow.cs 9 public Byte[] _bufferBase = null; // pointer to buffer with data
11 UInt32 _posLimit; // offset (from _buffer) of first byte when new block reading must be done
19 public UInt32 _pos; // offset (from _buffer) of curent byte
22 public UInt32 _streamPos; // offset (from _buffer) of first not read byte from Stream
27 // we need one additional byte, since MovePos moves on 1 byte.
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/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 107 void LzmaEnc_FastPosInit(Byte *g_FastPos)
118 g_FastPos[c] = (Byte)slotFast;
224 Byte cache;
227 Byte *buf;
228 Byte *bufLim;
229 Byte *bufBase;
270 Byte pad[128];
282 Byte g_FastPos[1 << kNumLogBits];
469 p->bufBase = (Byte *)alloc->Alloc(alloc, RC_BUF_SIZE);
513 Byte temp = p->cache
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 108 void LzmaEnc_FastPosInit(Byte *g_FastPos)
119 g_FastPos[c] = (Byte)slotFast;
225 Byte cache;
228 Byte *buf;
229 Byte *bufLim;
230 Byte *bufBase;
271 Byte pad[128];
283 Byte g_FastPos[1 << kNumLogBits];
470 p->bufBase = (Byte *)alloc->Alloc(alloc, RC_BUF_SIZE);
514 Byte temp = p->cache
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
NfcUtils.java 24 /** Class with utility methods for testing equality of messages and displaying byte payloads. */
49 static CharSequence displayByteArray(byte[] bytes) {
52 builder.append(Byte.toString(bytes[i]));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/or_int_lit8/
Test_or_int_lit8.java 66 assertEquals(0xffffffff, t.run(Byte.MIN_VALUE));
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
BoundedByteString.java 37 * single byte array. In terms of the public API of {@link ByteString}, you end
38 * up here by calling {@link ByteString#copyFrom(byte[])} followed by {@link
57 * @param offset index to first byte to use in bytes
63 BoundedByteString(byte[] bytes, int offset, int length) {
81 * Gets the byte at the given index.
86 * @param index index of byte
91 public byte byteAt(int index) {
116 // ByteString -> byte[]
119 protected void copyToInternal(byte[] target, int sourceOffset,
147 public Byte next()
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 189 char Pad = ' ', Byte = ' ';
197 Byte = '~';
198 char Buffer[] = { Pad, Pad, P == Loc ? '^' : Byte, Byte, 0 };
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
StringSerializer.java 51 byte type = data.get();
52 if (type == (byte)0) {
54 } else if (type == (byte)1) {
55 // Byte
57 } else if (type == (byte)2) {
60 } else if (type == (byte)3) {
66 byte[] buffer = new byte[length];
76 buffer.put((byte)0);
79 byte[] stringBytes = string.getBytes("UTF-8")
    [all...]
  /external/lzma/C/Util/Lzma/
LzmaUtil.c 59 Byte inBuf[IN_BUF_SIZE];
60 Byte outBuf[OUT_BUF_SIZE];
151 Byte header[LZMA_PROPS_SIZE + 8];
157 header[headerSize++] = (Byte)(fileSize >> (8 * i));
  /external/lzma/CPP/7zip/Compress/
CopyCoder.cpp 27 _buffer = (Byte *)::MidAlloc(kBufferSize);
Lzma2Decoder.cpp 44 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *prop, UInt32 size)
50 _inBuf = (Byte *)MyAlloc(kInBufSize);
169 SRes res = Lzma2Dec_DecodeToBuf(&_state, (Byte *)data, &outProcessed,
175 data = (Byte *)data + outProcessed;
  /frameworks/base/core/java/android/hardware/camera2/
CaptureRequest.java 783 public static final Key<Byte> JPEG_QUALITY =
784 new Key<Byte>("android.jpeg.quality", byte.class);
792 public static final Key<Byte> JPEG_THUMBNAIL_QUALITY =
793 new Key<Byte>("android.jpeg.thumbnailQuality", byte.class);
    [all...]
CaptureResult.java 474 public static final Key<Byte> JPEG_QUALITY =
475 new Key<Byte>("android.jpeg.quality", byte.class);
483 public static final Key<Byte> JPEG_THUMBNAIL_QUALITY =
484 new Key<Byte>("android.jpeg.thumbnailQuality", byte.class);
825 public static final Key<byte[]> STATISTICS_FACE_SCORES =
826 new Key<byte[]>("android.statistics.faceScores", byte[].class);
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
ForgettingCurveTests.java 25 for (int i = 0; i < Byte.MAX_VALUE; ++i) {
26 final byte fc = (byte)i;
30 final byte fc2 = UserHistoryForgettingCurveUtils.calcFc(e, c, l);
33 byte fc = 0;
  /external/easymock/src/org/easymock/internal/
RecordState.java 44 emptyReturnValues.put(Byte.TYPE, Byte.valueOf((byte) 0));
57 primitiveToWrapperType.put(Byte.TYPE, Byte.class);
231 if (returnType.equals(Byte.TYPE)) {
  /frameworks/base/core/java/com/android/internal/util/
TypedProperties.java 115 } else if ("byte".equals(typeName)) {
268 if (value < Byte.MIN_VALUE || value > Byte.MAX_VALUE) {
271 return new Byte((byte)value);
368 * &lt;type&gt; is one of {boolean, byte, short, int, long,
377 * <li> byte, short, int, long: a valid Java integer constant
446 * Returns the value of a byte property, or the default if the property
452 * @throws TypeException if the property is set and is not a byte
454 public byte getByte(String property, byte def)
    [all...]

Completed in 881 milliseconds

<<11121314151617181920>>