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

123

/freebsd-10.0-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-10.0-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 that that more bytes will follow.
33 OS << char(Byte);
41 uint8_t Byte = Value & 0x7f; local
44 Byte |= 0x80; // Mark this byte that that more bytes will follow.
45 OS << char(Byte);
62 uint8_t Byte = Value & 0x7f; local
65 Byte |
[all...]
/freebsd-10.0-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-10.0-release/contrib/libarchive/libarchive/
H A Darchive_ppmd_private.h19 typedef unsigned char Byte; typedef
63 Byte (*Read)(void *p); /* reads one byte, returns 0 in case of EOF or error */
69 void (*Write)(void *p, Byte b);
115 Byte Shift; /* Speed of Freq change; low Shift is for fast change */
116 Byte Count; /* Count to next change of Shift */
120 { (p)->Summ <<= 1; (p)->Count = (Byte)(3 << (p)->Shift++); }
124 Byte Symbol;
125 Byte Freq;
148 Byte *
H A Darchive_ppmd7_private.h53 Byte *Base, *LoUnit, *HiUnit, *Text, *UnitsStart;
56 Byte Indx2Units[PPMD_NUM_INDEXES];
57 Byte Units2Indx[128];
59 Byte NS2Indx[256], NS2BSIndx[256], HB2Flag[256];
89 Byte Cache;
H A Darchive_ppmd7.c39 #define REF(ptr) ((UInt32)((Byte *)(ptr) - (p)->Base))
50 static const Byte PPMD7_kExpEscape[16] = { 25, 14, 9, 7, 5, 5, 4, 4, 4, 3, 3, 3, 2, 2, 2, 2 };
96 do { p->Units2Indx[k++] = (Byte)i; } while(--step);
97 p->Indx2Units[i] = (Byte)k;
106 p->NS2Indx[i] = (Byte)i;
109 p->NS2Indx[i] = (Byte)m;
136 if ((p->Base = (Byte *)alloc->Alloc(alloc, p->AlignOffset + size
163 ptr = (Byte *)ptr + U2B(I2U(newIndx));
167 InsertNode(p, ((Byte *)ptr) + U2B(k), nu - k - 1);
338 s->Symbol = (Byte)
[all...]
/freebsd-10.0-release/contrib/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h47 int readByte(uint64_t Addr, uint8_t *Byte) const {
50 *Byte = Bytes[Addr];
/freebsd-10.0-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-10.0-release/sys/contrib/dev/acpica/compiler/
H A Daslcompile.c293 UINT8 Byte; local
297 while (fread (&Byte, 1, 1, Handle) == 1)
303 if (Byte == '/')
308 if (Byte != '*')
315 else if (Byte == '*')
322 if (Byte == 0x0A)
337 UINT8 Byte; local
340 while (fread (&Byte, 1, 1, Handle) == 1)
346 if (Byte == 0x0A)
463 UINT8 Byte; local
[all...]
/freebsd-10.0-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-10.0-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-10.0-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-10.0-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-10.0-release/contrib/llvm/lib/MC/
H A DMCAsmInfo.cpp115 unsigned Byte = Value & 0x7f; local
117 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/freebsd-10.0-release/contrib/llvm/tools/llvm-mc/
H A DDisassembler.cpp42 int readByte(uint64_t Addr, uint8_t *Byte) const {
45 *Byte = Bytes[Addr].first;
/freebsd-10.0-release/contrib/gcclibs/libdecnumber/
H A DdecNumberLocal.h45 #define Byte int8_t macro
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCRegisterInfo.h73 unsigned Byte = Reg / 8;
74 if (Byte >= RegSetSize)
76 return (RegSet[Byte] & (1 << InByte)) != 0;
/freebsd-10.0-release/contrib/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp765 uint8_t Byte = *I++;
766 uint32_t NumToSkip = Byte;
767 OS << utostr(Byte) << ", ";
768 Byte = *I++;
769 OS << utostr(Byte) << ", ";
770 NumToSkip |= Byte << 8;
785 uint8_t Byte = *I++;
786 uint32_t NumToSkip = Byte;
787 OS << utostr(Byte) << ", ";
788 Byte
[all...]

Completed in 160 milliseconds

123