Home
last modified time | relevance | path

Searched refs:Byte (Results 1 – 25 of 70) sorted by relevance

123

/minix3/external/bsd/llvm/dist/llvm/include/llvm/Support/
H A DLEB128.h26 uint8_t Byte = Value & 0x7f; in encodeSLEB128() local
29 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) || in encodeSLEB128()
30 ((Value == -1) && ((Byte & 0x40) != 0)))); in encodeSLEB128()
32 Byte |= 0x80; // Mark this byte to show that more bytes will follow. in encodeSLEB128()
33 OS << char(Byte); in encodeSLEB128()
41 uint8_t Byte = Value & 0x7f; variable
44 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
45 OS << char(Byte);
62 uint8_t Byte = Value & 0x7f; variable
65 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
[all …]
/minix3/usr.bin/make/
H A Dbuf.h83 typedef char Byte; typedef
88 Byte *buffer; /* The buffer itself (zero terminated) */
112 void Buf_AddBytes(Buffer *, int, const Byte *);
113 Byte *Buf_GetAll(Buffer *, int *);
116 Byte *Buf_Destroy(Buffer *, Boolean);
117 Byte *Buf_DestroyCompact(Buffer *);
H A Dbuf.c127 Buf_AddBytes(Buffer *bp, int numBytes, const Byte *bytesPtr) in Buf_AddBytes()
130 Byte *ptr; in Buf_AddBytes()
156 Byte *
234 Byte *
237 Byte *data; in Buf_Destroy()
274 Byte *
278 Byte *data; in Buf_DestroyCompact()
/minix3/common/dist/zlib/
H A Dexample.c39 void test_compress OF((Byte *compr, uLong comprLen,
40 Byte *uncompr, uLong uncomprLen));
42 Byte *uncompr, uLong uncomprLen));
43 void test_deflate OF((Byte *compr, uLong comprLen));
44 void test_inflate OF((Byte *compr, uLong comprLen,
45 Byte *uncompr, uLong uncomprLen));
46 void test_large_deflate OF((Byte *compr, uLong comprLen,
47 Byte *uncompr, uLong uncomprLen));
48 void test_large_inflate OF((Byte *compr, uLong comprLen,
49 Byte *uncompr, uLong uncomprLen));
[all …]
H A Dzconf.h54 # define Byte z_Byte macro
265 typedef unsigned char Byte; /* 8 bits */ typedef
272 # define Bytef Byte FAR
274 typedef Byte FAR Bytef;
286 typedef Byte const *voidpc;
287 typedef Byte FAR *voidpf;
288 typedef Byte *voidp;
H A Dzconf.in.h52 # define Byte z_Byte macro
263 typedef unsigned char Byte; /* 8 bits */ typedef
270 # define Bytef Byte FAR
272 typedef Byte FAR Bytef;
284 typedef Byte const *voidpc;
285 typedef Byte FAR *voidpf;
286 typedef Byte *voidp;
H A Ddeflate.c289 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
311 s->method = (Byte)method;
524 put_byte(s, (Byte)(b >> 8));
525 put_byte(s, (Byte)(b & 0xff));
605 put_byte(s, (Byte)(s->gzhead->time & 0xff));
606 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
607 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
608 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
747 put_byte(s, (Byte)(strm->adler & 0xff));
748 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
[all …]
H A Dgzio.c63 Byte *inbuf; /* input buffer */
64 Byte *outbuf; /* output buffer */
167 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
173 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
410 Byte *next_out; /* == stream.next_out but not forced far (for MSDOS) */
417 next_out = (Byte*)buf;
799 s->inbuf = (Byte*)ALLOC(Z_BUFSIZE); /* for seeking */
843 s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
/minix3/external/bsd/llvm/dist/llvm/lib/MC/
H A DYAML.cpp46 uint8_t Byte; in writeAsBinary() local
47 StringRef((const char *)&Data[I], 2).getAsInteger(16, Byte); in writeAsBinary()
48 OS.write(Byte); in writeAsBinary()
61 uint8_t Byte = *I; in writeAsHex() local
62 OS << hexdigit(Byte >> 4); in writeAsHex()
63 OS << hexdigit(Byte & 0xf); in writeAsHex()
/minix3/external/bsd/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DByteStreamer.h29 virtual void EmitInt8(uint8_t Byte, const Twine &Comment = "") = 0;
40 void EmitInt8(uint8_t Byte, const Twine &Comment) override { in EmitInt8() argument
42 AP.EmitInt8(Byte); in EmitInt8()
59 void EmitInt8(uint8_t Byte, const Twine &Comment) override { in EmitInt8() argument
60 Hash.update(Byte); in EmitInt8()
H A DDIEHash.cpp65 uint8_t Byte = Value & 0x7f; in addULEB128() local
68 Byte |= 0x80; // Mark this byte to show that more bytes will follow. in addULEB128()
69 Hash.update(Byte); in addULEB128()
77 uint8_t Byte = Value & 0x7f; in addSLEB128() local
79 More = !((((Value == 0) && ((Byte & 0x40) == 0)) || in addSLEB128()
80 ((Value == -1) && ((Byte & 0x40) != 0)))); in addSLEB128()
82 Byte |= 0x80; // Mark this byte to show that more bytes will follow. in addSLEB128()
83 Hash.update(Byte); in addSLEB128()
/minix3/external/bsd/llvm/dist/llvm/lib/Support/
H A DLEB128.cpp36 unsigned Byte = Value & 0x7f; in getSLEB128Size() local
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0; in getSLEB128Size()
/minix3/external/bsd/llvm/dist/clang/test/Analysis/
H A Dcasts.c56 typedef unsigned char Byte; typedef
59 Byte buf[len]; in doit()
/minix3/crypto/external/bsd/netpgp/dist/src/netpgpverify/
H A Dzlib.h91 # define Byte z_Byte macro
302 typedef unsigned char Byte; /* 8 bits */ typedef
309 # define Bytef Byte FAR
311 typedef Byte FAR Bytef;
323 typedef Byte const *voidpc;
324 typedef Byte FAR *voidpf;
325 typedef Byte *voidp;
/minix3/external/bsd/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp87 SDValue Dst, SDValue Byte, SDValue Size, in EmitTargetCodeForMemset() argument
99 if (auto *CByte = dyn_cast<ConstantSDNode>(Byte)) { in EmitTargetCodeForMemset()
124 SDValue Chain1 = DAG.getStore(Chain, DL, Byte, Dst, DstPtrInfo, in EmitTargetCodeForMemset()
130 SDValue Chain2 = DAG.getStore(Chain, DL, Byte, Dst2, in EmitTargetCodeForMemset()
139 auto *CByte = dyn_cast<ConstantSDNode>(Byte); in EmitTargetCodeForMemset()
146 Chain = DAG.getStore(Chain, DL, Byte, Dst, DstPtrInfo, in EmitTargetCodeForMemset()
H A DSystemZSelectionDAGInfo.h36 SDValue Chain, SDValue Dst, SDValue Byte,
/minix3/external/bsd/llvm/dist/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp736 uint8_t Byte = *I++; in emitTable() local
737 uint32_t NumToSkip = Byte; in emitTable()
738 OS << utostr(Byte) << ", "; in emitTable()
739 Byte = *I++; in emitTable()
740 OS << utostr(Byte) << ", "; in emitTable()
741 NumToSkip |= Byte << 8; in emitTable()
756 uint8_t Byte = *I++; in emitTable() local
757 uint32_t NumToSkip = Byte; in emitTable()
758 OS << utostr(Byte) << ", "; in emitTable()
759 Byte = *I++; in emitTable()
[all …]
/minix3/external/bsd/llvm/dist/llvm/test/CodeGen/XCore/
H A Dunaligned_store.ll3 ; Byte aligned store.
H A Dunaligned_load.ll3 ; Byte aligned load.
/minix3/external/bsd/llvm/dist/llvm/lib/Target/R600/MCTargetDesc/
H A DR600MCCodeEmitter.cpp146 void R600MCCodeEmitter::EmitByte(unsigned int Byte, raw_ostream &OS) const { in EmitByte() argument
147 OS.write((uint8_t) Byte & 0xff); in EmitByte()
/minix3/common/dist/zlib/old/
H A Dvisual-basic.txt98 Dim bytaryOri() As Byte
99 Dim bytaryCpr() As Byte
129 Dim bytaryCpr() As Byte
130 Dim bytaryOri() As Byte
/minix3/external/bsd/llvm/dist/clang/
H A D.gitignore16 # Byte compiled python modules.
/minix3/external/bsd/llvm/dist/llvm/include/llvm/MC/
H A DMCRegisterInfo.h69 unsigned Byte = Reg / 8; in contains() local
70 if (Byte >= RegSetSize) in contains()
72 return (RegSet[Byte] & (1 << InByte)) != 0; in contains()
/minix3/external/bsd/llvm/dist/llvm/
H A D.gitignore16 # Byte compiled python modules.
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DMicrosoftMangle.cpp2465 auto UpdateCRC = [&CRC](char Byte) { in mangleStringLiteral() argument
2468 if (Byte & (1U << i)) in mangleStringLiteral()
2512 auto MangleByte = [&Mangler](char Byte) { in mangleStringLiteral() argument
2519 if (isIdentifierBody(Byte, /*AllowDollar=*/true)) { in mangleStringLiteral()
2520 Mangler.getStream() << Byte; in mangleStringLiteral()
2521 } else if (isLetter(Byte & 0x7f)) { in mangleStringLiteral()
2522 Mangler.getStream() << '?' << static_cast<char>(Byte & 0x7f); in mangleStringLiteral()
2527 std::find(std::begin(SpecialChars), std::end(SpecialChars), Byte); in mangleStringLiteral()
2532 Mangler.getStream() << static_cast<char>('A' + ((Byte >> 4) & 0xf)); in mangleStringLiteral()
2533 Mangler.getStream() << static_cast<char>('A' + (Byte & 0xf)); in mangleStringLiteral()

123