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

<<11121314151617181920>>

  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
zconf.h 50 # define Byte z_Byte
261 typedef unsigned char Byte; /* 8 bits */
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
  /sdk/emulator/mksdcard/src/source/
mksdcard.c 51 typedef unsigned char Byte;
52 typedef Byte* Bytes;
56 #define POKEB(p,v) BYTE_(p,0) = (Byte)(v)
57 #define POKES(p,v) ( BYTE_(p,0) = (Byte)(v), BYTE_(p,1) = (Byte)((v) >> 8) )
58 #define POKEW(p,v) ( BYTE_(p,0) = (Byte)(v), BYTE_(p,1) = (Byte)((v) >> 8), BYTE_(p,2) = (Byte)((v) >> 16), BYTE_(p,3) = (Byte)((v) >> 24) )
60 static Byte s_boot_sector [ BYTES_PER_SECTOR ]; /* boot sector *
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
7zIn.c 10 Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C};
301 static int TestSignatureCandidate(Byte *testBytes)
312 Byte *Data;
316 static SRes SzReadByte(CSzData *sd, Byte *b)
325 static SRes SzReadBytes(CSzData *sd, Byte *data, size_t size)
341 Byte b;
350 Byte firstByte;
351 Byte mask = 0x80;
357 Byte b;
431 static SRes SzReadBoolVector(CSzData *sd, size_t numItems, Byte **v, ISzAlloc *alloc
    [all...]
  /external/lzma/C/
7zIn.c 10 Byte k7zSignature[k7zSignatureSize] = {'7', 'z', 0xBC, 0xAF, 0x27, 0x1C};
301 static int TestSignatureCandidate(Byte *testBytes)
312 Byte *Data;
316 static SRes SzReadByte(CSzData *sd, Byte *b)
325 static SRes SzReadBytes(CSzData *sd, Byte *data, size_t size)
341 Byte b;
350 Byte firstByte;
351 Byte mask = 0x80;
357 Byte b;
431 static SRes SzReadBoolVector(CSzData *sd, size_t numItems, Byte **v, ISzAlloc *alloc)
    [all...]
Ppmd7.h 51 Byte *Base, *LoUnit, *HiUnit, *Text, *UnitsStart;
54 Byte Indx2Units[PPMD_NUM_INDEXES];
55 Byte Units2Indx[128];
57 Byte NS2Indx[256], NS2BSIndx[256], HB2Flag[256];
71 extern const Byte PPMD7_kExpEscape[16];
128 Byte Cache;
  /external/freetype/src/gzip/
zconf.h 39 # define Byte z_Byte
219 typedef unsigned char Byte; /* 8 bits */
226 # define Bytef Byte FAR
228 typedef Byte FAR Bytef;
239 typedef Byte FAR *voidpf;
240 typedef Byte *voidp;
  /external/lzma/CPP/7zip/Archive/7z/
7zOut.h 18 Byte *_data;
23 void Init(Byte *data, size_t size)
36 void WriteByte(Byte b)
69 void WriteByte(Byte b);
98 void WriteAlignedBoolHeader(const CBoolVector &v, int numDefined, Byte type, unsigned itemSize);
99 void WriteUInt64DefVector(const CUInt64DefVector &v, Byte type);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/mul_int_lit8/
Test_mul_int_lit8.java 71 * @title Arguments = 0, Byte.MAX_VALUE
75 assertEquals(0, t.run(Byte.MAX_VALUE));
79 * @title Arguments = 1, Byte.MAX_VALUE
83 assertEquals(Byte.MAX_VALUE, t.run(Byte.MAX_VALUE));
  /external/libpng/contrib/tools/
checksum-icc.c 24 Byte header[132];
29 Byte b;
33 b = (Byte)ch;
  /external/mockito/src/org/mockito/internal/util/
Primitives.java 60 primitiveTypes.put(Byte.class, Byte.TYPE);
71 primitiveOrWrapperDefaultValues.put(Byte.class, (byte) 0);
80 primitiveOrWrapperDefaultValues.put(byte.class, (byte) 0);
  /external/llvm/include/llvm/CodeGen/
JITCodeEmitter.h 47 /// location of the next byte to emit. In the case of a buffer overflow (we
77 /// emitByte - This callback is invoked when a byte needs to be written to the
159 /// extra bytes are filled with the provided byte.
178 uint8_t Byte = Value & 0x7f;
180 if (Value || PadTo != 0) Byte |= 0x80;
181 emitByte(Byte);
186 uint8_t Byte = (PadTo > 1) ? 0x80 : 0x0;
187 emitByte(Byte);
199 uint8_t Byte = Value & 0x7f;
201 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0
    [all...]

Completed in 775 milliseconds

<<11121314151617181920>>