Searched defs:Byte (Results 1 - 25 of 35) sorted by path

12

/external/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dzconf.h50 # define Byte z_Byte macro
261 typedef unsigned char Byte; /* 8 bits */ typedef
268 # define Bytef Byte FAR
270 typedef Byte FAR Bytef;
282 typedef Byte const *voidpc;
283 typedef Byte FAR *voidpf;
284 typedef Byte *voidp;
/external/chromium_org/third_party/freetype/src/raster/
H A Dftraster.c315 typedef unsigned char Byte, *PByte; typedef
525 Byte dropOutControl; /* current drop_out control method */
541 Byte* grays;
543 Byte gray_lines[RASTER_GRAY_LINES];
567 Byte grays[5];
1849 ras.dropOutControl = (Byte)tags[0] >> 5;
2283 Byte* target;
2302 Byte f1, f2;
2313 f1 = (Byte) ( 0xFF >> ( e1 & 7 ) );
2314 f2 = (Byte) ~(
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A DdecNumberLocal.h69 #define Byte int8_t macro
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/lzma_sdk/
H A DTypes.h55 typedef unsigned char Byte; typedef
129 Byte (*Read)(void *p); /* reads one byte, returns 0 in case of EOF or error */
134 void (*Write)(void *p, Byte b);
147 SRes SeqInStream_ReadByte(ISeqInStream *stream, Byte *buf);
198 Byte buf[LookToRead_BUF_SIZE];
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/MCTargetDesc/
H A DR600MCCodeEmitter.cpp553 void R600MCCodeEmitter::EmitByte(unsigned int Byte, raw_ostream &OS) const { argument
554 OS.write((uint8_t) Byte & 0xff);
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DTypes.h56 typedef unsigned char Byte; typedef
130 Byte (*Read)(void *p); /* reads one byte, returns 0 in case of EOF or error */
135 void (*Write)(void *p, Byte b);
148 SRes SeqInStream_ReadByte(ISeqInStream *stream, Byte *buf);
199 Byte buf[LookToRead_BUF_SIZE];
/external/chromium_org/third_party/zlib/
H A Dmozzconf.h162 /* Mangle Byte types except on Mac. */
164 #define Byte MOZ_Z_Byte macro
H A Dzconf.h112 # define Byte z_Byte macro
336 typedef unsigned char Byte; /* 8 bits */ typedef
343 # define Bytef Byte FAR
345 typedef Byte FAR Bytef;
357 typedef Byte const *voidpc;
358 typedef Byte FAR *voidpf;
359 typedef Byte *voidp;
/external/clang/test/Analysis/
H A Dcasts.c56 typedef unsigned char Byte; typedef
59 Byte buf[len];
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.cc227 char Pad = ' ', Byte = ' '; local
235 Byte = '~';
236 char Buffer[] = { Pad, Pad, P == Loc ? '^' : Byte, Byte, 0 };
/external/deqp/modules/glshared/
H A DglsVertexArrayTests.hpp274 typedef WrappedType<deInt8> Byte; typedef in class:deqp::gls::GLValue
349 explicit GLValue (Byte value) : type(Array::INPUTTYPE_BYTE), b(value) {}
370 Byte b;
/external/freetype/src/gzip/
H A Dzconf.h39 # define Byte z_Byte macro
219 typedef unsigned char Byte; /* 8 bits */ typedef
226 # define Bytef Byte FAR
228 typedef Byte FAR Bytef;
239 typedef Byte FAR *voidpf;
240 typedef Byte *voidp;
/external/freetype/src/raster/
H A Dftraster.c315 typedef unsigned char Byte, *PByte; typedef
527 Byte dropOutControl; /* current drop_out control method */
543 Byte* grays;
545 Byte gray_lines[RASTER_GRAY_LINES];
569 Byte grays[5];
1851 ras.dropOutControl = (Byte)tags[0] >> 5;
2285 Byte* target;
2307 Byte f1, f2;
2318 f1 = (Byte) ( 0xFF >> ( e1 & 7 ) );
2319 f2 = (Byte) ~(
[all...]
/external/icu/icu4c/source/i18n/
H A DdecNumberLocal.h69 #define Byte int8_t macro
/external/llvm/include/llvm/CodeGen/
H A DJITCodeEmitter.h178 uint8_t Byte = Value & 0x7f; local
180 if (Value || PadTo != 0) Byte |= 0x80;
181 emitByte(Byte);
186 uint8_t Byte = (PadTo > 1) ? 0x80 : 0x0; local
187 emitByte(Byte);
199 uint8_t Byte = Value & 0x7f; local
201 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
202 if (IsMore) Byte |= 0x80;
203 emitByte(Byte);
H A DMachineCodeEmitter.h181 uint8_t Byte = Value & 0x7f; local
183 if (Value) Byte |= 0x80;
184 emitByte(Byte);
195 uint8_t Byte = Value & 0x7f; local
197 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
198 if (IsMore) Byte |= 0x80;
199 emitByte(Byte);
/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/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp1711 uint8_t Byte = static_cast<uint8_t>(Value);
1715 if (static_cast<uint8_t>(Value) != Byte) return -1;
1717 return Byte;
1723 int Byte = isRepeatedByteSequence(CA->getOperand(0), TM); local
1724 if (Byte == -1) return -1;
1729 if (Byte != ThisByte) return -1;
1731 return Byte;
H A DDIEHash.cpp65 uint8_t Byte = Value & 0x7f; local
68 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
69 Hash.update(Byte);
77 uint8_t Byte = Value & 0x7f; local
79 More = !((((Value == 0) && ((Byte & 0x40) == 0)) ||
80 ((Value == -1) && ((Byte & 0x40) != 0))));
82 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
83 Hash.update(Byte);
/external/llvm/lib/MC/
H A DYAML.cpp46 uint8_t Byte; local
47 StringRef((const char *)&Data[I], 2).getAsInteger(16, Byte);
48 OS.write(Byte);
61 uint8_t Byte = *I; local
62 OS << hexdigit(Byte >> 4);
63 OS << hexdigit(Byte & 0xf);
/external/llvm/lib/Support/
H A DLEB128.cpp36 unsigned Byte = Value & 0x7f; local
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/external/llvm/lib/Target/R600/MCTargetDesc/
H A DR600MCCodeEmitter.cpp146 void R600MCCodeEmitter::EmitByte(unsigned int Byte, raw_ostream &OS) const { argument
147 OS.write((uint8_t) Byte & 0xff);
/external/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp87 SDValue Dst, SDValue Byte, SDValue Size,
99 if (auto *CByte = dyn_cast<ConstantSDNode>(Byte)) {
124 SDValue Chain1 = DAG.getStore(Chain, DL, Byte, Dst, DstPtrInfo,
130 SDValue Chain2 = DAG.getStore(Chain, DL, Byte, Dst2,
139 auto *CByte = dyn_cast<ConstantSDNode>(Byte);
146 Chain = DAG.getStore(Chain, DL, Byte, Dst, DstPtrInfo,
86 EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Dst, SDValue Byte, SDValue Size, unsigned Align, bool IsVolatile, MachinePointerInfo DstPtrInfo) const argument
/external/lzma/C/
H A DTypes.h55 typedef unsigned char Byte; typedef
129 Byte (*Read)(void *p); /* reads one byte, returns 0 in case of EOF or error */
134 void (*Write)(void *p, Byte b);
147 SRes SeqInStream_ReadByte(ISeqInStream *stream, Byte *buf);
198 Byte buf[LookToRead_BUF_SIZE];

Completed in 3336 milliseconds

12