Searched defs:Byte (Results 1 - 16 of 16) sorted by relevance

/external/kernel-headers/original/linux/
H A Dzconf.h52 typedef unsigned char Byte; /* 8 bits */ typedef
/external/llvm/lib/MC/
H A DMCAsmInfo.cpp119 unsigned Byte = Value & 0x7f; local
121 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
H A DMCObjectWriter.cpp24 uint8_t Byte = Value & 0x7f; local
27 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
28 ((Value == -1) && ((Byte & 0x40) != 0))));
30 Byte |= 0x80; // Mark this byte that that more bytes will follow.
31 OS << char(Byte);
38 uint8_t Byte = Value & 0x7f; local
41 Byte |= 0x80; // Mark this byte that that more bytes will follow.
42 OS << char(Byte);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp49 unsigned char Byte = static_cast<unsigned char>(Value & 0x7f); local
51 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
52 if (IsMore) Byte |= 0x80;
53 OutStreamer.EmitIntValue(Byte, 1, /*addrspace*/0);
71 unsigned char Byte = static_cast<unsigned char>(Value & 0x7f); local
73 if (Value || PadTo != 0) Byte |= 0x80;
74 OutStreamer.EmitIntValue(Byte, 1, /*addrspace*/0);
H A DAsmPrinter.cpp1577 uint8_t Byte = static_cast<uint8_t>(Value);
1581 if (static_cast<uint8_t>(Value) != Byte) return -1;
1583 return Byte;
1590 int Byte = isRepeatedByteSequence(CA->getOperand(0), TM); local
1591 if (Byte == -1) return -1;
1596 if (Byte != ThisByte) return -1;
1598 return Byte;
/external/clang/test/Analysis/
H A Dcasts.c54 typedef unsigned char Byte; typedef
57 Byte buf[len];
/external/llvm/include/llvm/CodeGen/
H A DJITCodeEmitter.h177 uint8_t Byte = Value & 0x7f; local
179 if (Value || PadTo != 0) Byte |= 0x80;
180 emitByte(Byte);
185 uint8_t Byte = (PadTo > 1) ? 0x80 : 0x0; local
186 emitByte(Byte);
198 uint8_t Byte = Value & 0x7f; local
200 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
201 if (IsMore) Byte |= 0x80;
202 emitByte(Byte);
H A DBinaryObject.h304 uint8_t Byte = (uint8_t)(Value & 0x7f); local
306 if (Value) Byte |= 0x80;
307 emitByte(Byte);
318 uint8_t Byte = (uint8_t)(Value & 0x7f); local
320 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
321 if (IsMore) Byte |= 0x80;
322 emitByte(Byte);
H A DMachineCodeEmitter.h179 uint8_t Byte = Value & 0x7f; local
181 if (Value) Byte |= 0x80;
182 emitByte(Byte);
193 uint8_t Byte = Value & 0x7f; local
195 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
196 if (IsMore) Byte |= 0x80;
197 emitByte(Byte);
/external/chromium/sdch/open-vcdiff/src/
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/qemu/distrib/zlib-1.2.3/
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/zlib/
H A Dzconf.in.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;
H A Dzconf.h109 # define Byte z_Byte macro
333 typedef unsigned char Byte; /* 8 bits */ typedef
340 # define Bytef Byte FAR
342 typedef Byte FAR Bytef;
354 typedef Byte const *voidpc;
355 typedef Byte FAR *voidpf;
356 typedef Byte *voidp;
/external/icu4c/i18n/
H A DdecNumberLocal.h69 #define Byte int8_t macro
/external/freetype/src/raster/
H A Dftraster.c306 typedef unsigned char Byte, *PByte; typedef
507 Byte dropOutControl; /* current drop_out control method */
523 Byte* grays;
525 Byte gray_lines[RASTER_GRAY_LINES];
549 Byte grays[5];
1825 ras.dropOutControl = (Byte)tags[0] >> 5;
2261 Byte f1, f2;
2262 Byte* target;
2288 f1 = (Byte) ( 0xFF >> ( e1 & 7 ) );
2289 f2 = (Byte) ~(
[all...]
/external/tcpdump/
H A Ddecnet.h30 typedef unsigned char Byte[1]; /* single byte field */ typedef
31 #define byte Byte

Completed in 416 milliseconds