| /freebsd-14.2/sys/contrib/dev/acpica/compiler/ |
| H A D | aslascii.c | 196 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-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | LEB128.h | 28 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; 171 uint8_t Byte; variable 180 Byte = *p; [all …]
|
| /freebsd-14.2/sys/contrib/zstd/zlibWrapper/examples/ |
| H A D | example.c | 114 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 D | example_original.c | 106 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-14.2/contrib/libarchive/libarchive/ |
| H A D | archive_ppmd_private.h | 19 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 D | archive_ppmd8.c | 74 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() 959 s2->Freq = (Byte)cf; in UpdateModel() 1167 Byte symbol; in Ppmd8_DecodeSymbol() 1180 Byte symbol; in Ppmd8_DecodeSymbol() 1202 Byte symbol; in Ppmd8_DecodeSymbol() [all …]
|
| H A D | archive_ppmd8_private.h | 29 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 D | archive_ppmd7_private.h | 53 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 D | archive_ppmd7.c | 97 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-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | YAML.cpp | 47 uint8_t Byte = llvm::hexDigitValue(Data[I * 2]); in writeAsBinary() local 48 Byte <<= 4; in writeAsBinary() 49 Byte |= llvm::hexDigitValue(Data[I * 2 + 1]); in writeAsBinary() 50 OS.write(Byte); in writeAsBinary() 61 for (uint8_t Byte : Data) in writeAsHex() local 62 OS << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf); in writeAsHex()
|
| /freebsd-14.2/sys/contrib/zlib/test/ |
| H A D | example.c | 60 static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr, in test_compress() 166 static void test_deflate(Byte *compr, uLong comprLen) { in test_deflate() 201 static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr, in test_inflate() 240 static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr, in test_large_deflate() 293 static void test_large_inflate(Byte *compr, uLong comprLen, Byte *uncompr, in test_large_inflate() 332 static void test_flush(Byte *compr, uLong *comprLen) { in test_flush() 367 static void test_sync(Byte *compr, uLong comprLen, Byte *uncompr, in test_sync() 442 static void test_dict_inflate(Byte *compr, uLong comprLen, Byte *uncompr, in test_dict_inflate() 492 Byte *compr, *uncompr; in main() 509 compr = (Byte*)calloc((uInt)comprLen, 1); in main() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | ByteStreamer.h | 32 virtual void emitInt8(uint8_t Byte, const Twine &Comment = "") = 0; 45 void emitInt8(uint8_t Byte, const Twine &Comment) override { in emitInt8() argument 47 AP.emitInt8(Byte); in emitInt8() 74 void emitInt8(uint8_t Byte, const Twine &Comment) override { in emitInt8() argument 75 Hash.update(Byte); in emitInt8() 105 void emitInt8(uint8_t Byte, const Twine &Comment) override { in emitInt8() argument 106 Buffer.push_back(Byte); in emitInt8()
|
| H A D | DIEHash.cpp | 55 uint8_t Byte = Value & 0x7f; in addULEB128() local 58 Byte |= 0x80; // Mark this byte to show that more bytes will follow. in addULEB128() 59 Hash.update(Byte); in addULEB128() 67 uint8_t Byte = Value & 0x7f; in addSLEB128() local 69 More = !((((Value == 0) && ((Byte & 0x40) == 0)) || in addSLEB128() 70 ((Value == -1) && ((Byte & 0x40) != 0)))); in addSLEB128() 72 Byte |= 0x80; // Mark this byte to show that more bytes will follow. in addSLEB128() 73 Hash.update(Byte); in addSLEB128()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZSelectionDAGInfo.cpp | 26 SDValue LenAdj, SDValue Byte) { in createMemMemNode() argument 31 Ops = { Chain, Dst, LenAdj, Byte }; in createMemMemNode() 43 uint64_t Size, SDValue Byte = SDValue()) { in emitMemMemImm() argument 47 return createMemMemNode(DAG, DL, Op, Chain, Dst, Src, LenAdj, Byte); in emitMemMemImm() 52 SDValue Size, SDValue Byte = SDValue()) { in emitMemMemReg() argument 57 return createMemMemNode(DAG, DL, Op, Chain, Dst, Src, LenAdj, Byte); in emitMemMemReg() 90 SDValue Byte, SDValue Size, Align Alignment, bool IsVolatile, in EmitTargetCodeForMemset() argument 97 auto *CByte = dyn_cast<ConstantSDNode>(Byte); in EmitTargetCodeForMemset() 129 DAG.getStore(Chain, DL, Byte, Dst, DstPtrInfo, Alignment); in EmitTargetCodeForMemset() 134 SDValue Chain2 = DAG.getStore(Chain, DL, Byte, Dst2, in EmitTargetCodeForMemset() [all …]
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerUtil.cpp | 38 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("\\%03o", Byte); in PrintASCIIByte()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Base64.cpp | 57 const char Byte = Input[ByteIdx]; in decodeBase64() local 58 const char DecodedByte = decodeBase64Byte(Byte); in decodeBase64() 60 if (!Illegal && Byte == '=') { in decodeBase64() 74 "Invalid Base64 character %#2.2x at index %" PRIu64, Byte, ByteIdx); in decodeBase64()
|
| H A D | LEB128.cpp | 35 unsigned Byte = Value & 0x7f; in getSLEB128Size() local 37 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0; in getSLEB128Size()
|
| H A D | CRC.cpp | 77 for (uint8_t Byte : Data) { in crc32() local 78 int TableIdx = (CRC ^ Byte) & 0xff; in crc32()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | DIEGenerator.h | 61 for (auto Byte : Bytes) in addLocationAttribute() local 64 DIEInteger(Byte)); in addLocationAttribute() 83 for (auto Byte : Bytes) in addBlockAttribute() local 86 DIEInteger(Byte)); in addBlockAttribute() 119 for (auto Byte : String.bytes()) in addInplaceString() local 122 DIEInteger(Byte)); in addInplaceString()
|
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | DecoderEmitter.cpp | 807 uint8_t Byte = *I++; in emitTable() local 810 Byte = *I++; in emitTable() 813 Byte = *I++; in emitTable() 830 uint8_t Byte = *I++; in emitTable() local 833 Byte = *I++; in emitTable() 836 Byte = *I++; in emitTable() 850 uint8_t Byte = *I++; in emitTable() local 853 Byte = *I++; in emitTable() 856 Byte = *I++; in emitTable() 895 Byte = *I++; in emitTable() [all …]
|
| /freebsd-14.2/contrib/libcbor/doc/source/api/ |
| H A D | type_2.rst | 1 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-14.2/sys/contrib/zlib/ |
| H A D | zconf.h | 155 # define Byte z_Byte macro 404 typedef unsigned char Byte; /* 8 bits */ typedef 411 # define Bytef Byte FAR 413 typedef Byte FAR Bytef; 425 typedef Byte const *voidpc; 426 typedef Byte FAR *voidpf; 427 typedef Byte *voidp;
|
| H A D | deflate.c | 521 s->method = (Byte)method; in deflateInit2_() 905 put_byte(s, (Byte)(b >> 8)); in putShortMSB() 906 put_byte(s, (Byte)(b & 0xff)); in putShortMSB() 1063 put_byte(s, (Byte)(s->gzhead->time & 0xff)); in deflate() 1161 put_byte(s, (Byte)(strm->adler & 0xff)); in deflate() 1234 put_byte(s, (Byte)(strm->adler & 0xff)); in deflate() 1235 put_byte(s, (Byte)((strm->adler >> 8) & 0xff)); in deflate() 1236 put_byte(s, (Byte)((strm->adler >> 16) & 0xff)); in deflate() 1238 put_byte(s, (Byte)(strm->total_in & 0xff)); in deflate() 1372 register Byte scan_end1 = scan[best_len - 1]; in longest_match() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
| H A D | X86MCTargetDesc.cpp | 589 for (uint64_t Byte = 0, End = PltContents.size(); Byte + 6 < End; ) { in findX86PltEntries() local 591 if (PltContents[Byte] == 0xff && PltContents[Byte + 1] == 0xa3) { in findX86PltEntries() 599 Byte += 6; in findX86PltEntries() 600 } else if (PltContents[Byte] == 0xff && PltContents[Byte + 1] == 0x25) { in findX86PltEntries() 605 Byte += 6; in findX86PltEntries() 607 Byte++; in findX86PltEntries() 616 for (uint64_t Byte = 0, End = PltContents.size(); Byte + 6 < End; ) { in findX86_64PltEntries() local 618 if (PltContents[Byte] == 0xff && PltContents[Byte + 1] == 0x25) { in findX86_64PltEntries() 623 std::make_pair(PltSectionVA + Byte, PltSectionVA + Byte + 6 + Imm)); in findX86_64PltEntries() 624 Byte += 6; in findX86_64PltEntries() [all …]
|
| /freebsd-14.2/sys/dev/smbus/ |
| H A D | smbus_if.m | 62 # Send Byte command 71 # Receive Byte command 80 # Write Byte command 100 # Read Byte command
|