Home
last modified time | relevance | path

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

123456

/freebsd-13.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-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DLEB128.h28 uint8_t Byte = Value & 0x7f; variable
36 OS << char(Byte);
57 uint8_t Byte = Value & 0x7f; variable
65 *p++ = Byte;
84 uint8_t Byte = Value & 0x7f; variable
89 OS << char(Byte);
109 uint8_t Byte = Value & 0x7f; variable
114 *p++ = Byte;
167 uint8_t Byte; variable
178 Byte = *p;
[all …]
/freebsd-13.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()
457 Byte *compr; in test_dict_deflate()
494 Byte *compr, *uncompr; in test_dict_inflate()
[all …]
/freebsd-13.1/sys/contrib/zstd/zlibWrapper/examples/
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 …]
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 …]
/freebsd-13.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-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DYAML.cpp48 uint8_t Byte = llvm::hexDigitValue(Data[I * 2]); in writeAsBinary() local
49 Byte <<= 4; in writeAsBinary()
50 Byte |= llvm::hexDigitValue(Data[I * 2 + 1]); in writeAsBinary()
51 OS.write(Byte); in writeAsBinary()
62 for (uint8_t Byte : Data) in writeAsHex() local
63 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in writeAsHex()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DByteStreamer.h32 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()
64 void emitInt8(uint8_t Byte, const Twine &Comment) override { in emitInt8() argument
65 Hash.update(Byte); in emitInt8()
91 void emitInt8(uint8_t Byte, const Twine &Comment) override { in emitInt8() argument
92 Buffer.push_back(Byte); in emitInt8()
H A DDIEHash.cpp56 uint8_t Byte = Value & 0x7f; in addULEB128() local
59 Byte |= 0x80; // Mark this byte to show that more bytes will follow. in addULEB128()
60 Hash.update(Byte); in addULEB128()
68 uint8_t Byte = Value & 0x7f; in addSLEB128() local
70 More = !((((Value == 0) && ((Byte & 0x40) == 0)) || in addSLEB128()
71 ((Value == -1) && ((Byte & 0x40) != 0)))); in addSLEB128()
73 Byte |= 0x80; // Mark this byte to show that more bytes will follow. in addSLEB128()
74 Hash.update(Byte); in addSLEB128()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtil.cpp38 void PrintASCIIByte(uint8_t Byte) { in PrintASCIIByte() argument
39 if (Byte == '\\') in PrintASCIIByte()
41 else if (Byte == '"') in PrintASCIIByte()
43 else if (Byte >= 32 && Byte < 127) in PrintASCIIByte()
44 Printf("%c", Byte); in PrintASCIIByte()
46 Printf("\\x%02x", Byte); in PrintASCIIByte()
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DFixedLenDecoderEmitter.cpp794 uint8_t Byte = *I++; in emitTable() local
797 Byte = *I++; in emitTable()
800 Byte = *I++; in emitTable()
817 uint8_t Byte = *I++; in emitTable() local
820 Byte = *I++; in emitTable()
823 Byte = *I++; in emitTable()
837 uint8_t Byte = *I++; in emitTable() local
840 Byte = *I++; in emitTable()
843 Byte = *I++; in emitTable()
882 Byte = *I++; in emitTable()
[all …]
/freebsd-13.1/contrib/libcbor/doc/source/api/
H A Dtype_2.rst1 Type 2 – Byte strings
4 …s without further interpretation (unless there is a :doc:`tag <type_6>`). Byte string's length may…
11 0x41 Byte string (1B long)
13 0x41 Byte string (1B long)
/freebsd-13.1/sys/contrib/zlib/
H A Dzconf.h152 # define Byte z_Byte macro
402 typedef unsigned char Byte; /* 8 bits */ typedef
409 # define Bytef Byte FAR
411 typedef Byte FAR Bytef;
423 typedef Byte const *voidpc;
424 typedef Byte FAR *voidpf;
425 typedef Byte *voidp;
H A Ddeflate.c385 s->method = (Byte)method;
761 put_byte(s, (Byte)(b >> 8));
762 put_byte(s, (Byte)(b & 0xff));
924 put_byte(s, (Byte)(s->gzhead->time & 0xff));
1022 put_byte(s, (Byte)(strm->adler & 0xff));
1095 put_byte(s, (Byte)(strm->adler & 0xff));
1096 put_byte(s, (Byte)((strm->adler >> 8) & 0xff));
1097 put_byte(s, (Byte)((strm->adler >> 16) & 0xff));
1099 put_byte(s, (Byte)(strm->total_in & 0xff));
1303 register Byte scan_end1 = scan[best_len-1];
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.cpp472 for (uint64_t Byte = 0, End = PltContents.size(); Byte + 6 < End; ) { in findX86PltEntries() local
474 if (PltContents[Byte] == 0xff && PltContents[Byte + 1] == 0xa3) { in findX86PltEntries()
480 Byte += 6; in findX86PltEntries()
481 } else if (PltContents[Byte] == 0xff && PltContents[Byte + 1] == 0x25) { in findX86PltEntries()
486 Byte += 6; in findX86PltEntries()
488 Byte++; in findX86PltEntries()
497 for (uint64_t Byte = 0, End = PltContents.size(); Byte + 6 < End; ) { in findX86_64PltEntries() local
499 if (PltContents[Byte] == 0xff && PltContents[Byte + 1] == 0x25) { in findX86_64PltEntries()
504 std::make_pair(PltSectionVA + Byte, PltSectionVA + Byte + 6 + Imm)); in findX86_64PltEntries()
505 Byte += 6; in findX86_64PltEntries()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DLEB128.cpp35 unsigned Byte = Value & 0x7f; in getSLEB128Size() local
37 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0; in getSLEB128Size()
H A DCRC.cpp77 for (uint8_t Byte : Data) { in crc32() local
78 int TableIdx = (CRC ^ Byte) & 0xff; in crc32()
/freebsd-13.1/sys/dev/smbus/
H A Dsmbus_if.m63 # Send Byte command
72 # Receive Byte command
81 # Write Byte command
101 # Read Byte command
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCTargetDesc.cpp338 for (uint64_t Byte = 0, End = PltContents.size(); Byte + 7 < End; in findPltEntries() local
339 Byte += 4) { in findPltEntries()
340 uint32_t Insn = support::endian::read32le(PltContents.data() + Byte); in findPltEntries()
345 Insn = support::endian::read32le(PltContents.data() + Byte + Off); in findPltEntries()
351 uint64_t Imm = (((PltSectionVA + Byte) >> 12) << 12) + in findPltEntries()
354 support::endian::read32le(PltContents.data() + Byte + Off); in findPltEntries()
358 Result.push_back(std::make_pair(PltSectionVA + Byte, Imm)); in findPltEntries()
359 Byte += 4; in findPltEntries()
/freebsd-13.1/sys/contrib/dev/acpica/common/
H A Dacfileio.c492 UINT8 Byte; in AcIsFileBinary() local
500 while (fread (&Byte, 1, 1, File) == 1) in AcIsFileBinary()
502 if (!isprint (Byte) && !isspace (Byte)) in AcIsFileBinary()
/freebsd-13.1/sys/contrib/edk2/Include/Uefi/
H A DUefiPxe.h1206 UINT8 Byte[256]; member
1232 PXE_UINT8 Byte[256]; member
1503 PXE_UINT8 Byte; member
1518 PXE_UINT8 Byte[MAX_EEPROM_LEN << 2]; member
1539 PXE_UINT8 Byte[MAX_EEPROM_LEN << 2]; member

123456