/freebsd/sys/contrib/dev/acpica/compiler/ |
H A D | aslascii.c | 196 UINT8 Byte; in FlIsFileAsciiSource() local 217 while (fread (&Byte, 1, 1, Handle) == 1) in FlIsFileAsciiSource() 225 if (Byte == '*') in FlIsFileAsciiSource() 230 if (Byte == '/') in FlIsFileAsciiSource() 239 else if (Byte == '/') in FlIsFileAsciiSource() 246 if (!ACPI_IS_ASCII (Byte)) in FlIsFileAsciiSource() 253 Byte, Status.Line, Status.Offset); in FlIsFileAsciiSource() 260 else if (!isprint (Byte) && !isspace (Byte)) in FlIsFileAsciiSource() 267 Byte, Status.Line, Status.Offset); in FlIsFileAsciiSource() 274 if (Byte == 0x0A) in FlIsFileAsciiSource() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | LEB128.h | 28 uint8_t Byte = Value & 0x7f; variable 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; variable 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/sys/contrib/zstd/zlibWrapper/examples/ |
H A D | example.c | 59 void test_deflate OF((Byte *compr, uLong comprLen)); 60 void test_inflate OF((Byte *compr, uLong comprLen, 61 Byte *uncompr, uLong uncomprLen)); 62 void test_large_deflate OF((Byte *compr, uLong comprLen, 63 Byte *uncompr, uLong uncomprLen)); 64 void test_large_inflate OF((Byte *compr, uLong comprLen, 65 Byte *uncompr, uLong uncomprLen)); 66 void test_flush OF((Byte *compr, uLong *comprLen)); 67 void test_sync OF((Byte *compr, uLong comprLen, 68 Byte *uncompr, uLong uncomprLen)); [all …]
|
H A D | example_original.c | 54 void test_deflate OF((Byte *compr, uLong comprLen)); 55 void test_inflate OF((Byte *compr, uLong comprLen, 56 Byte *uncompr, uLong uncomprLen)); 57 void test_large_deflate OF((Byte *compr, uLong comprLen, 58 Byte *uncompr, uLong uncomprLen)); 59 void test_large_inflate OF((Byte *compr, uLong comprLen, 60 Byte *uncompr, uLong uncomprLen)); 61 void test_flush OF((Byte *compr, uLong *comprLen)); 62 void test_sync OF((Byte *compr, uLong comprLen, 63 Byte *uncompr, uLong uncomprLen)); [all …]
|
/freebsd/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 | 11 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); in Ppmd8_Construct() 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() 137 ptr = (Byte *)ptr + U2B(I2U(newIndx)); in SplitBlock() 141 InsertNode(p, ((Byte *)ptr) + U2B(k), nu - k - 1); in SplitBlock() 273 if ((Byte *)ptr != p->UnitsStart) in SpecialFreeUnit() 288 if ((Byte *)oldPtr > p->UnitsStart + 16 * 1024 || REF(oldPtr) > p->FreeList[indx]) in MoveUnitsUp() [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 | 39 #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); in Ppmd7_Construct() 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() 168 ptr = (Byte *)ptr + U2B(I2U(newIndx)); in SplitBlock() 172 InsertNode(p, ((Byte *)ptr) + U2B(k), nu - k - 1); in SplitBlock() 343 s->Symbol = (Byte)i; in RestartModel() 408 upState.Symbol = *(const Byte *)Ppmd7_GetPtr(p, upBranch); in CreateSuccessors() [all …]
|
/freebsd/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/sys/contrib/zlib/test/ |
H A D | example.c | 60 static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr, in test_compress() 84 static void test_gzio(const char *fname, Byte *uncompr, uLong uncomprLen) { in test_gzio() 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() 408 static void test_dict_deflate(Byte *compr, uLong comprLen) { in test_dict_deflate() 442 static void test_dict_inflate(Byte *compr, uLong comprLen, Byte *uncompr, in test_dict_inflate() [all …]
|
/freebsd/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/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/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/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/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 | 449 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); in deflateInit2_() 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() 1064 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff)); in deflate() 1065 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff)); in deflate() 1066 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff)); in deflate() 1161 put_byte(s, (Byte)(strm->adler & 0xff)); in deflate() 1162 put_byte(s, (Byte)((strm->adler >> 8) & 0xff)); in deflate() [all …]
|
/freebsd/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/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() 597 uint32_t Imm = support::endian::read32le(PltContents.data() + Byte + 2); in findX86PltEntries() 598 Result.emplace_back(PltSectionVA + Byte, Imm | (uint64_t(1) << 32)); in findX86PltEntries() 599 Byte += 6; in findX86PltEntries() 600 } else if (PltContents[Byte] == 0xff && PltContents[Byte + 1] == 0x25) { in findX86PltEntries() 603 uint32_t Imm = support::endian::read32le(PltContents.data() + Byte + 2); in findX86PltEntries() 604 Result.push_back(std::make_pair(PltSectionVA + Byte, Imm)); in findX86PltEntries() 605 Byte += 6; in findX86PltEntries() 607 Byte++; in findX86PltEntries() [all …]
|
/freebsd/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
|
/freebsd/sys/contrib/dev/acpica/common/ |
H A D | acfileio.c | 528 UINT8 Byte; in AcIsFileBinary() local 536 while (fread (&Byte, 1, 1, File) == 1) in AcIsFileBinary() 538 if (!isprint (Byte) && !isspace (Byte)) in AcIsFileBinary()
|
/freebsd/sys/contrib/edk2/Include/Uefi/ |
H A D | UefiPxe.h | 1206 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
|