Home
last modified time | relevance | path

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

123456

/freebsd-12.1/sys/contrib/dev/acpica/compiler/
H A Daslascii.c196 UINT8 Byte; in FlIsFileAsciiSource() local
225 if (Byte == '*') in FlIsFileAsciiSource()
230 if (Byte == '/') in FlIsFileAsciiSource()
239 else if (Byte == '/') in FlIsFileAsciiSource()
260 else if (!isprint (Byte) && !isspace (Byte)) in FlIsFileAsciiSource()
274 if (Byte == 0x0A) in FlIsFileAsciiSource()
336 if (Byte == '/') in FlConsumeAnsiComment()
342 if (Byte != '*') in FlConsumeAnsiComment()
349 else if (Byte == '*') in FlConsumeAnsiComment()
356 if (Byte == 0x0A) in FlConsumeAnsiComment()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DLEB128.h29 uint8_t Byte = Value & 0x7f; variable
37 OS << char(Byte);
58 uint8_t Byte = Value & 0x7f; variable
66 *p++ = Byte;
85 uint8_t Byte = Value & 0x7f; variable
90 OS << char(Byte);
115 *p++ = Byte;
168 uint8_t Byte; variable
177 Byte = *p++;
180 } while (Byte >= 128);
[all …]
/freebsd-12.1/sys/contrib/zstd/zlibWrapper/examples/
H A Dexample_original.c106 Byte *compr, *uncompr; in test_compress()
133 Byte *uncompr;
218 Byte *compr; in test_deflate()
256 Byte *compr, *uncompr; in test_inflate()
297 Byte *compr, *uncompr; in test_large_deflate()
352 Byte *compr, *uncompr; in test_large_inflate()
393 Byte *compr; in test_flush()
431 Byte *compr, *uncompr; in test_sync()
475 Byte *compr; in test_dict_deflate()
512 Byte *compr, *uncompr; in test_dict_inflate()
[all …]
H A Dexample.c114 Byte *compr, *uncompr; in test_compress()
141 Byte *uncompr;
226 Byte *compr; in test_deflate()
264 Byte *compr, *uncompr; in test_inflate()
305 Byte *compr, *uncompr; in test_large_deflate()
360 Byte *compr, *uncompr; in test_large_inflate()
401 Byte *compr; in test_flush()
439 Byte *compr, *uncompr; in test_sync()
483 Byte *compr; in test_dict_deflate()
520 Byte *compr, *uncompr; in test_dict_inflate()
[all …]
/freebsd-12.1/sys/contrib/zlib/test/
H A Dexample.c89 Byte *compr, *uncompr; in test_compress()
116 Byte *uncompr;
201 Byte *compr; in test_deflate()
239 Byte *compr, *uncompr; in test_inflate()
280 Byte *compr, *uncompr; in test_large_deflate()
335 Byte *compr, *uncompr; in test_large_inflate()
376 Byte *compr; in test_flush()
414 Byte *compr, *uncompr; in test_sync()
458 Byte *compr; in test_dict_deflate()
495 Byte *compr, *uncompr; in test_dict_inflate()
[all …]
/freebsd-12.1/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_ppmd8.c74 p->Indx2Units[i] = (Byte)k; in Ppmd8_Construct()
83 p->NS2Indx[i] = (Byte)i; in Ppmd8_Construct()
86 p->NS2Indx[i] = (Byte)m; in Ppmd8_Construct()
372 s->Symbol = (Byte)i; in RestartModel()
433 ctx->Flags = (Byte)flags; in Refresh()
614 Byte flags; in CreateSuccessors()
960 s2->Freq = (Byte)cf; in UpdateModel()
1168 Byte symbol; in Ppmd8_DecodeSymbol()
1181 Byte symbol; in Ppmd8_DecodeSymbol()
1203 Byte symbol; in Ppmd8_DecodeSymbol()
[all …]
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_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.c97 p->Indx2Units[i] = (Byte)k; in Ppmd7_Construct()
106 p->NS2Indx[i] = (Byte)i; in Ppmd7_Construct()
109 p->NS2Indx[i] = (Byte)m; in Ppmd7_Construct()
343 s->Symbol = (Byte)i; in RestartModel()
596 s->Freq = (Byte)cf; in UpdateModel()
872 Byte symbol; in Ppmd7_DecodeSymbol()
885 Byte symbol; in Ppmd7_DecodeSymbol()
908 Byte symbol; in Ppmd7_DecodeSymbol()
953 Byte symbol; in Ppmd7_DecodeSymbol()
988 Byte temp = p->Cache; in RangeEnc_ShiftLow()
[all …]
/freebsd-12.1/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) 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()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DYAML.cpp47 uint8_t Byte; in writeAsBinary() local
48 StringRef((const char *)&Data[I], 2).getAsInteger(16, Byte); in writeAsBinary()
49 OS.write(Byte); in writeAsBinary()
60 for (uint8_t Byte : Data) in writeAsHex() local
61 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in writeAsHex()
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DByteStreamer.h33 virtual void EmitInt8(uint8_t Byte, const Twine &Comment = "") = 0;
44 void EmitInt8(uint8_t Byte, const Twine &Comment) override { in EmitInt8() argument
46 AP.emitInt8(Byte); in EmitInt8()
63 void EmitInt8(uint8_t Byte, const Twine &Comment) override { in EmitInt8() argument
64 Hash.update(Byte); in EmitInt8()
89 void EmitInt8(uint8_t Byte, const Twine &Comment) override { in EmitInt8() argument
90 Buffer.push_back(Byte); in EmitInt8()
H A DDIEHash.cpp58 uint8_t Byte = Value & 0x7f; in addULEB128() local
61 Byte |= 0x80; // Mark this byte to show that more bytes will follow. in addULEB128()
62 Hash.update(Byte); in addULEB128()
70 uint8_t Byte = Value & 0x7f; in addSLEB128() local
72 More = !((((Value == 0) && ((Byte & 0x40) == 0)) || in addSLEB128()
73 ((Value == -1) && ((Byte & 0x40) != 0)))); in addSLEB128()
75 Byte |= 0x80; // Mark this byte to show that more bytes will follow. in addSLEB128()
76 Hash.update(Byte); in addSLEB128()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCTargetDesc.cpp166 for (uint64_t Byte = 0, End = PltContents.size(); Byte + 7 < End; in findPltEntries() local
167 Byte += 4) { in findPltEntries()
168 uint32_t Insn = support::endian::read32le(PltContents.data() + Byte); in findPltEntries()
172 uint64_t Imm = (((PltSectionVA + Byte) >> 12) << 12) + in findPltEntries()
174 uint32_t Insn2 = support::endian::read32le(PltContents.data() + Byte + 4); in findPltEntries()
178 Result.push_back(std::make_pair(PltSectionVA + Byte, Imm)); in findPltEntries()
179 Byte += 4; in findPltEntries()
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp761 uint8_t Byte = *I++; in emitTable() local
764 Byte = *I++; in emitTable()
767 Byte = *I++; in emitTable()
784 uint8_t Byte = *I++; in emitTable() local
787 Byte = *I++; in emitTable()
790 Byte = *I++; in emitTable()
804 uint8_t Byte = *I++; in emitTable() local
807 Byte = *I++; in emitTable()
810 Byte = *I++; in emitTable()
849 Byte = *I++; in emitTable()
[all …]
/freebsd-12.1/contrib/compiler-rt/lib/fuzzer/
H A DFuzzerUtil.cpp39 void PrintASCIIByte(uint8_t Byte) { in PrintASCIIByte() argument
40 if (Byte == '\\') in PrintASCIIByte()
42 else if (Byte == '"') in PrintASCIIByte()
44 else if (Byte >= 32 && Byte < 127) in PrintASCIIByte()
45 Printf("%c", Byte); in PrintASCIIByte()
47 Printf("\\x%02x", Byte); in PrintASCIIByte()
/freebsd-12.1/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-12.1/contrib/llvm/lib/DebugInfo/CodeView/
H A DFormatters.cpp33 uint8_t Byte = Item[i]; in format() local
34 uint8_t HighNibble = (Byte >> 4) & 0xF; in format()
35 uint8_t LowNibble = Byte & 0xF; in format()
/freebsd-12.1/contrib/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.cpp454 for (uint64_t Byte = 0, End = PltContents.size(); Byte + 6 < End; ) { in findX86PltEntries() local
456 if (PltContents[Byte] == 0xff && PltContents[Byte + 1] == 0xa3) { in findX86PltEntries()
462 Byte += 6; in findX86PltEntries()
463 } else if (PltContents[Byte] == 0xff && PltContents[Byte + 1] == 0x25) { in findX86PltEntries()
468 Byte += 6; in findX86PltEntries()
470 Byte++; in findX86PltEntries()
479 for (uint64_t Byte = 0, End = PltContents.size(); Byte + 6 < End; ) { in findX86_64PltEntries() local
481 if (PltContents[Byte] == 0xff && PltContents[Byte + 1] == 0x25) { in findX86_64PltEntries()
486 std::make_pair(PltSectionVA + Byte, PltSectionVA + Byte + 6 + Imm)); in findX86_64PltEntries()
487 Byte += 6; in findX86_64PltEntries()
[all …]
/freebsd-12.1/sys/sys/
H A Dzlib.h99 # define Byte z_Byte macro
214 typedef unsigned char Byte; /* 8 bits */ typedef
220 # define Bytef Byte FAR
222 typedef Byte FAR Bytef;
233 typedef Byte FAR *voidpf;
234 typedef Byte *voidp;
/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.c315 s->method = (Byte)method;
528 put_byte(s, (Byte)(b >> 8));
529 put_byte(s, (Byte)(b & 0xff));
751 put_byte(s, (Byte)(strm->adler & 0xff));
841 put_byte(s, (Byte)(strm->adler & 0xff));
842 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
843 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
844 put_byte(s, (Byte)((strm->adler >> 24) & 0xff));
845 put_byte(s, (Byte)(strm->total_in & 0xff));
1060 register Byte scan_end1 = scan[best_len-1];
[all …]
/freebsd-12.1/contrib/llvm/lib/Support/
H A DJamCRC.cpp93 for (char Byte : Data) { in update() local
94 int TableIdx = (CRC ^ Byte) & 0xff; in update()
H A DLEB128.cpp36 unsigned Byte = Value & 0x7f; in getSLEB128Size() local
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0; in getSLEB128Size()

123456