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

1234

/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
H A Daslascii.c196 UINT8 Byte; local
217 while (fread (&Byte, 1, 1, Handle) == 1)
225 if (Byte == '*')
230 if (Byte == '/')
239 else if (Byte == '/')
246 if (!ACPI_IS_ASCII (Byte))
253 Byte, Status.Line, Status.Offset);
260 else if (!isprint (Byte) && !isspace (Byte))
267 Byte, Statu
326 UINT8 Byte; local
384 UINT8 Byte; local
[all...]
/freebsd-11-stable/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-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DLEB128.h28 uint8_t Byte = Value & 0x7f; local
31 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
32 ((Value == -1) && ((Byte & 0x40) != 0))));
35 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
36 OS << char(Byte);
57 uint8_t Byte = Value & 0x7f;
60 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
61 ((Value == -1) && ((Byte & 0x40) != 0))));
64 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
65 *p++ = Byte;
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DLEB128.cpp35 unsigned Byte = Value & 0x7f; local
37 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DYAML.cpp48 uint8_t Byte = llvm::hexDigitValue(Data[I * 2]); local
49 Byte <<= 4;
50 Byte |= llvm::hexDigitValue(Data[I * 2 + 1]);
51 OS.write(Byte);
62 for (uint8_t Byte : Data)
63 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf);
/freebsd-11-stable/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);
108 Byte Shift; /* Speed of Freq change; low Shift is for fast change */
109 Byte Count; /* Count to next change of Shift */
113 { (p)->Summ <<= 1; (p)->Count = (Byte)(3 << (p)->Shift++); }
117 Byte Symbol;
118 Byte Freq;
141 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_ppmd8_private.h29 Byte NumStats;
30 Byte Flags;
62 Byte *Base, *LoUnit, *HiUnit, *Text, *UnitsStart;
76 Byte Indx2Units[PPMD_NUM_INDEXES];
77 Byte Units2Indx[128];
81 Byte NS2BSIndx[256], NS2Indx[260];
95 extern const Byte PPMD8_kExpEscape[16];
H A Darchive_ppmd8.c11 const Byte PPMD8_kExpEscape[16] = { 25, 14, 9, 7, 5, 5, 4, 4, 4, 3, 3, 3, 2, 2, 2, 2 };
24 #define REF(ptr) ((UInt32)((Byte *)(ptr) - (p)->Base))
73 do { p->Units2Indx[k++] = (Byte)i; } while (--step);
74 p->Indx2Units[i] = (Byte)k;
83 p->NS2Indx[i] = (Byte)i;
86 p->NS2Indx[i] = (Byte)m;
110 if ((p->Base = (Byte *)malloc(p->AlignOffset + size)) == 0)
137 ptr = (Byte *)ptr + U2B(I2U(newIndx));
141 InsertNode(p, ((Byte *)ptr) + U2B(k), nu - k - 1);
273 if ((Byte *)pt
[all...]
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;
141 if ((p->Base = (Byte *)malloc(p->AlignOffset + size
168 ptr = (Byte *)ptr + U2B(I2U(newIndx));
172 InsertNode(p, ((Byte *)ptr) + U2B(k), nu - k - 1);
343 s->Symbol = (Byte)
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DFormatters.cpp32 uint8_t Byte = Item[i]; local
33 uint8_t HighNibble = (Byte >> 4) & 0xF;
34 uint8_t LowNibble = Byte & 0xF;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DByteStreamer.h32 virtual void EmitInt8(uint8_t Byte, const Twine &Comment = "") = 0;
43 void EmitInt8(uint8_t Byte, const Twine &Comment) override {
45 AP.emitInt8(Byte);
62 void EmitInt8(uint8_t Byte, const Twine &Comment) override {
63 Hash.update(Byte);
88 void EmitInt8(uint8_t Byte, const Twine &Comment) override {
89 Buffer.push_back(Byte);
H A DDIEHash.cpp57 uint8_t Byte = Value & 0x7f; local
60 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
61 Hash.update(Byte);
69 uint8_t Byte = Value & 0x7f; local
71 More = !((((Value == 0) && ((Byte & 0x40) == 0)) ||
72 ((Value == -1) && ((Byte & 0x40) != 0))));
74 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
75 Hash.update(Byte);
/freebsd-11-stable/sys/contrib/zlib/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-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzconf.h101 typedef unsigned char Byte; typedef
104 typedef Byte Bytef;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtil.cpp38 void PrintASCIIByte(uint8_t Byte) { argument
39 if (Byte == '\\')
41 else if (Byte == '"')
43 else if (Byte >= 32 && Byte < 127)
44 Printf("%c", Byte);
46 Printf("\\x%02x", Byte);
/freebsd-11-stable/sys/sys/
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-11-stable/sys/contrib/zlib/
H A Dzconf.h141 # define Byte z_Byte macro
391 typedef unsigned char Byte; /* 8 bits */ typedef
398 # define Bytef Byte FAR
400 typedef Byte FAR Bytef;
412 typedef Byte const *voidpc;
413 typedef Byte FAR *voidpf;
414 typedef Byte *voidp;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.cpp469 for (uint64_t Byte = 0, End = PltContents.size(); Byte + 6 < End; ) {
471 if (PltContents[Byte] == 0xff && PltContents[Byte + 1] == 0xa3) {
474 uint32_t Imm = support::endian::read32le(PltContents.data() + Byte + 2);
476 std::make_pair(PltSectionVA + Byte, GotPltSectionVA + Imm));
477 Byte += 6;
478 } else if (PltContents[Byte] == 0xff && PltContents[Byte + 1] == 0x25) {
481 uint32_t Imm = support::endian::read32le(PltContents.data() + Byte
[all...]
/freebsd-11-stable/contrib/gcclibs/libdecnumber/
H A DdecNumberLocal.h45 #define Byte int8_t macro
/freebsd-11-stable/sys/contrib/dev/acpica/common/
H A Dacfileio.c487 UINT8 Byte; local
495 while (fread (&Byte, 1, 1, File) == 1)
497 if (!isprint (Byte) && !isspace (Byte))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCTargetDesc.cpp334 for (uint64_t Byte = 0, End = PltContents.size(); Byte + 7 < End;
335 Byte += 4) {
336 uint32_t Insn = support::endian::read32le(PltContents.data() + Byte);
341 Insn = support::endian::read32le(PltContents.data() + Byte + Off);
347 uint64_t Imm = (((PltSectionVA + Byte) >> 12) << 12) +
350 support::endian::read32le(PltContents.data() + Byte + Off);
354 Result.push_back(std::make_pair(PltSectionVA + Byte, Imm));
355 Byte += 4;
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp793 uint8_t Byte = *I++;
794 uint32_t NumToSkip = Byte;
795 OS << (unsigned)Byte << ", ";
796 Byte = *I++;
797 OS << (unsigned)Byte << ", ";
798 NumToSkip |= Byte << 8;
799 Byte = *I++;
800 OS << utostr(Byte) << ", ";
801 NumToSkip |= Byte << 16;
816 uint8_t Byte
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZSelectionDAGInfo.cpp77 SDValue Byte, SDValue Size, unsigned Align, bool IsVolatile,
88 if (auto *CByte = dyn_cast<ConstantSDNode>(Byte)) {
113 SDValue Chain1 = DAG.getStore(Chain, DL, Byte, Dst, DstPtrInfo, Align);
119 DAG.getStore(Chain, DL, Byte, Dst2, DstPtrInfo.getWithOffset(1),
127 auto *CByte = dyn_cast<ConstantSDNode>(Byte);
134 Chain = DAG.getStore(Chain, DL, Byte, Dst, DstPtrInfo, Align);
75 EmitTargetCodeForMemset( SelectionDAG &DAG, const SDLoc &DL, SDValue Chain, SDValue Dst, SDValue Byte, SDValue Size, unsigned Align, bool IsVolatile, MachinePointerInfo DstPtrInfo) const argument

Completed in 231 milliseconds

1234