Searched refs:Byte (Results 1 - 25 of 51) sorted by relevance

123

/freebsd-9.3-release/usr.bin/make/
H A Dbuf.h69 typedef char Byte; typedef
73 Byte *buf; /* The buffer itself */
74 Byte *end; /* Place to write to */
77 void Buf_AddByte(Buffer *, Byte);
78 void Buf_AddBytes(Buffer *, size_t, const Byte *);
85 Byte *Buf_GetAll(Buffer *, size_t *);
88 void Buf_ReplaceLastByte(Buffer *, Byte);
H A Dbuf.c102 Buf_AddByte(Buffer *bp, Byte byte)
116 Buf_AddBytes(Buffer *bp, size_t len, const Byte *bytes)
135 Byte *
212 Buf_ReplaceLastByte(Buffer *bp, Byte byte)
H A Dvar.c256 Buf_AddByte(buf, (Byte)' ');
266 Buf_AddByte(buf, (Byte)'.');
289 Buf_AddByte (buf, (Byte)' ');
320 Buf_AddByte(buf, (Byte)' ');
346 Buf_AddByte(buf, (Byte)' ');
377 Buf_AddByte(buf, (Byte)' ');
406 Buf_AddByte(buf, (Byte)' ');
437 Buf_AddByte(buf, (Byte)' ');
482 Buf_AddByte(buf, (Byte)' ');
502 Buf_AddByte(buf, (Byte)' ');
[all...]
H A Dcond.c248 Buf_AddByte(buf, (Byte)*cp);
253 Buf_AddByte(buf, (Byte)'\0');
514 Buf_AddByte(buf, (Byte)*condExpr);
516 Buf_AddByte(buf, (Byte)'\0');
593 Buf_AddByte(buf, (Byte)*cp);
609 (Byte)*cp);
612 Buf_AddByte(buf, (Byte)*cp);
/freebsd-9.3-release/contrib/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...]
H A DStringRefMemoryObject.h35 int readByte(uint64_t Addr, uint8_t *Byte) const LLVM_OVERRIDE;
/freebsd-9.3-release/contrib/bmake/
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)
130 Byte *ptr;
156 Byte *
234 Byte *
237 Byte *data;
274 Byte *
278 Byte *data;
/freebsd-9.3-release/contrib/llvm/lib/Object/
H A DYAML.cpp47 uint8_t Byte; local
48 StringRef((const char *)&Data[I], 2).getAsInteger(16, Byte);
49 OS.write(Byte);
64 uint8_t Byte = *I; local
65 OS << hexdigit(Byte >> 4);
66 OS << hexdigit(Byte & 0xf);
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DStringRefMemoryObject.cpp14 int StringRefMemoryObject::readByte(uint64_t Addr, uint8_t *Byte) const {
17 *Byte = Bytes[Addr - Base];
/freebsd-9.3-release/sys/contrib/dev/acpica/compiler/
H A Daslcompile.c269 UINT8 Byte; local
273 while (fread (&Byte, 1, 1, FileInfo->Handle))
279 if (Byte == '/')
284 if (Byte != '*')
291 else if (Byte == '*')
298 if (Byte == 0x0A)
313 UINT8 Byte; local
316 while (fread (&Byte, 1, 1, FileInfo->Handle))
322 if (Byte == 0x0A)
352 UINT8 Byte; local
[all...]
/freebsd-9.3-release/lib/libz/test/
H A Dexample.c37 void test_deflate OF((Byte *compr, uLong comprLen));
38 void test_inflate OF((Byte *compr, uLong comprLen,
39 Byte *uncompr, uLong uncomprLen));
40 void test_large_deflate OF((Byte *compr, uLong comprLen,
41 Byte *uncompr, uLong uncomprLen));
42 void test_large_inflate OF((Byte *compr, uLong comprLen,
43 Byte *uncompr, uLong uncomprLen));
44 void test_flush OF((Byte *compr, uLong *comprLen));
45 void test_sync OF((Byte *compr, uLong comprLen,
46 Byte *uncomp
[all...]
/freebsd-9.3-release/contrib/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);
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzconf.h101 typedef unsigned char Byte; typedef
104 typedef Byte Bytef;
H A Ddeflate.c293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
315 s->method = (Byte)method;
528 put_byte(s, (Byte)(b >> 8));
529 put_byte(s, (Byte)(b & 0xff));
609 put_byte(s, (Byte)(s->gzhead->time & 0xff));
610 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
611 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
612 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
751 put_byte(s, (Byte)(strm->adler & 0xff));
752 put_byte(s, (Byte)((str
[all...]
/freebsd-9.3-release/sys/net/
H A Dzlib.h97 # define Byte z_Byte macro
212 typedef unsigned char Byte; /* 8 bits */ typedef
218 # define Bytef Byte FAR
220 typedef Byte FAR Bytef;
231 typedef Byte FAR *voidpf;
232 typedef Byte *voidp;
/freebsd-9.3-release/lib/libz/
H A Dzconf.h128 # define Byte z_Byte macro
368 typedef unsigned char Byte; /* 8 bits */ typedef
375 # define Bytef Byte FAR
377 typedef Byte FAR Bytef;
389 typedef Byte const *voidpc;
390 typedef Byte FAR *voidpf;
391 typedef Byte *voidp;
H A Ddeflate.c293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
317 s->method = (Byte)method;
632 put_byte(s, (Byte)(b >> 8));
633 put_byte(s, (Byte)(b & 0xff));
716 put_byte(s, (Byte)(s->gzhead->time & 0xff));
717 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
718 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
719 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
858 put_byte(s, (Byte)(strm->adler & 0xff));
859 put_byte(s, (Byte)((str
[all...]
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.cpp64 uint8_t Byte = Value & 0x7f; local
67 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
68 Hash.update(Byte);
76 uint8_t Byte = Value & 0x7f; local
78 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
79 ((Value == -1) && ((Byte & 0x40) != 0))));
81 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
82 Hash.update(Byte);
/freebsd-9.3-release/contrib/llvm/lib/MC/
H A DMCAsmInfo.cpp114 unsigned Byte = Value & 0x7f; local
116 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/freebsd-9.3-release/contrib/gcclibs/libdecnumber/
H A DdecNumberLocal.h45 #define Byte int8_t macro
/freebsd-9.3-release/contrib/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp88 SDValue Dst, SDValue Byte, SDValue Size,
100 if (ConstantSDNode *CByte = dyn_cast<ConstantSDNode>(Byte)) {
125 SDValue Chain1 = DAG.getStore(Chain, DL, Byte, Dst, DstPtrInfo,
131 SDValue Chain2 = DAG.getStore(Chain, DL, Byte, Dst2,
140 ConstantSDNode *CByte = dyn_cast<ConstantSDNode>(Byte);
147 Chain = DAG.getStore(Chain, DL, Byte, Dst, DstPtrInfo,
87 EmitTargetCodeForMemset(SelectionDAG &DAG, SDLoc DL, SDValue Chain, SDValue Dst, SDValue Byte, SDValue Size, unsigned Align, bool IsVolatile, MachinePointerInfo DstPtrInfo) const argument
/freebsd-9.3-release/contrib/llvm/lib/Target/R600/MCTargetDesc/
H A DR600MCCodeEmitter.cpp145 void R600MCCodeEmitter::EmitByte(unsigned int Byte, raw_ostream &OS) const { argument
146 OS.write((uint8_t) Byte & 0xff);
/freebsd-9.3-release/contrib/llvm/tools/llvm-mc/
H A DDisassembler.cpp42 int readByte(uint64_t Addr, uint8_t *Byte) const {
45 *Byte = Bytes[Addr].first;

Completed in 235 milliseconds

123