| /src/sys/external/bsd/acpica/dist/compiler/ |
| aslascii.c | 88 UINT8 Byte; 109 while (fread (&Byte, 1, 1, Handle) == 1) 117 if (Byte == '*') 122 if (Byte == '/') 131 else if (Byte == '/') 138 if (!ACPI_IS_ASCII (Byte)) 145 Byte, Status.Line, Status.Offset); 152 else if (!isprint (Byte) && !isspace (Byte)) 159 Byte, Status.Line, Status.Offset) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| LEB128.h | 28 uint8_t Byte = Value & 0x7f; 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); 39 // Pad with 0x80 and emit a terminating byte at the end. 57 uint8_t Byte = Value & 0x7f; 60 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) || 61 ((Value == -1) && ((Byte & 0x40) != 0)))) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| LEB128.cpp | 35 unsigned Byte = Value & 0x7f; 37 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
|
| /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
| YAML.cpp | 48 uint8_t Byte = llvm::hexDigitValue(Data[I * 2]); 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);
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_ppmd_private.h | 19 typedef unsigned char Byte; 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 */ 115 (p)->Count = (Byte)(3 << (p)->Shift++); \ 121 Byte Symbol; 122 Byte Freq; 145 Byte * [all...] |
| 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]; 89 extern const Byte PPMD8_kExpEscape[16];
|
| 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;
|
| 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); 74 p->Indx2Units[i] = (Byte)k; 83 p->NS2Indx[i] = (Byte)i; 86 p->NS2Indx[i] = (Byte)m; 137 ptr = (Byte *)ptr + U2B(I2U(newIndx)); 141 InsertNode(p, ((Byte *)ptr) + U2B(k), nu - k - 1); 278 if ((Byte *)ptr != p->UnitsStart) 293 if ((Byte *)oldPtr > p->UnitsStart + 16 * 1024 || REF(oldPtr) > p->FreeList[indx] [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| ByteStreamer.h | 32 virtual void emitInt8(uint8_t Byte, const Twine &Comment = "") = 0; 44 void emitInt8(uint8_t Byte, const Twine &Comment) override { 46 AP.emitInt8(Byte); 64 void emitInt8(uint8_t Byte, const Twine &Comment) override { 65 Hash.update(Byte); 91 void emitInt8(uint8_t Byte, const Twine &Comment) override { 92 Buffer.push_back(Byte);
|
| DIEHash.cpp | 56 uint8_t Byte = Value & 0x7f; 59 Byte |= 0x80; // Mark this byte to show that more bytes will follow. 60 Hash.update(Byte); 68 uint8_t Byte = Value & 0x7f; 70 More = !((((Value == 0) && ((Byte & 0x40) == 0)) || 71 ((Value == -1) && ((Byte & 0x40) != 0)))); 73 Byte |= 0x80; // Mark this byte to show that more bytes will follow. 74 Hash.update(Byte); [all...] |
| /src/external/bsd/zstd/dist/zlibWrapper/examples/ |
| example.c | 59 void test_deflate _Z_OF((Byte *compr, uLong comprLen)); 60 void test_inflate _Z_OF((Byte *compr, uLong comprLen, 61 Byte *uncompr, uLong uncomprLen)); 62 void test_large_deflate _Z_OF((Byte *compr, uLong comprLen, 63 Byte *uncompr, uLong uncomprLen)); 64 void test_large_inflate _Z_OF((Byte *compr, uLong comprLen, 65 Byte *uncompr, uLong uncomprLen)); 66 void test_flush _Z_OF((Byte *compr, uLong *comprLen)); 67 void test_sync _Z_OF((Byte *compr, uLong comprLen, 68 Byte *uncompr, uLong uncomprLen)) [all...] |
| example_original.c | 54 void test_deflate _Z_OF((Byte *compr, uLong comprLen)); 55 void test_inflate _Z_OF((Byte *compr, uLong comprLen, 56 Byte *uncompr, uLong uncomprLen)); 57 void test_large_deflate _Z_OF((Byte *compr, uLong comprLen, 58 Byte *uncompr, uLong uncomprLen)); 59 void test_large_inflate _Z_OF((Byte *compr, uLong comprLen, 60 Byte *uncompr, uLong uncomprLen)); 61 void test_flush _Z_OF((Byte *compr, uLong *comprLen)); 62 void test_sync _Z_OF((Byte *compr, uLong comprLen, 63 Byte *uncompr, uLong uncomprLen)) [all...] |
| /src/sys/external/bsd/acpica/dist/tools/acpixtract/ |
| axutils.c | 95 UINT8 Byte; 102 while (fread (&Byte, 1, 1, Handle) == 1) 110 if (!Byte) 117 if (!ACPI_IS_ASCII (Byte)) 120 Byte, Offset, Offset); 129 else if (!isprint (Byte) && !isspace (Byte)) 132 Byte, Offset, Offset); 370 * Pack converted data into a byte array.
|
| /src/external/gpl3/binutils/dist/zlib/ |
| example.c | 37 void test_compress OF((Byte *compr, uLong comprLen, 38 Byte *uncompr, uLong uncomprLen)); 40 Byte *uncompr, uLong uncomprLen)); 41 void test_deflate OF((Byte *compr, uLong comprLen)); 42 void test_inflate OF((Byte *compr, uLong comprLen, 43 Byte *uncompr, uLong uncomprLen)); 44 void test_large_deflate OF((Byte *compr, uLong comprLen, 45 Byte *uncompr, uLong uncomprLen)); 46 void test_large_inflate OF((Byte *compr, uLong comprLen, 47 Byte *uncompr, uLong uncomprLen)) [all...] |
| zconf.h | 144 # define Byte z_Byte 393 typedef unsigned char Byte; /* 8 bits */ 400 # define Bytef Byte FAR 402 typedef Byte FAR Bytef; 414 typedef Byte const *voidpc; 415 typedef Byte FAR *voidpf; 416 typedef Byte *voidp;
|
| /src/external/gpl3/binutils.old/dist/zlib/ |
| example.c | 37 void test_compress OF((Byte *compr, uLong comprLen, 38 Byte *uncompr, uLong uncomprLen)); 40 Byte *uncompr, uLong uncomprLen)); 41 void test_deflate OF((Byte *compr, uLong comprLen)); 42 void test_inflate OF((Byte *compr, uLong comprLen, 43 Byte *uncompr, uLong uncomprLen)); 44 void test_large_deflate OF((Byte *compr, uLong comprLen, 45 Byte *uncompr, uLong uncomprLen)); 46 void test_large_inflate OF((Byte *compr, uLong comprLen, 47 Byte *uncompr, uLong uncomprLen)) [all...] |
| /src/external/gpl3/binutils.old/dist/zlib/test/ |
| example.c | 37 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 *uncompr, uLong uncomprLen)) [all...] |
| /src/external/gpl3/gdb/dist/zlib/ |
| example.c | 37 void test_compress OF((Byte *compr, uLong comprLen, 38 Byte *uncompr, uLong uncomprLen)); 40 Byte *uncompr, uLong uncomprLen)); 41 void test_deflate OF((Byte *compr, uLong comprLen)); 42 void test_inflate OF((Byte *compr, uLong comprLen, 43 Byte *uncompr, uLong uncomprLen)); 44 void test_large_deflate OF((Byte *compr, uLong comprLen, 45 Byte *uncompr, uLong uncomprLen)); 46 void test_large_inflate OF((Byte *compr, uLong comprLen, 47 Byte *uncompr, uLong uncomprLen)) [all...] |
| /src/external/gpl3/gdb.old/dist/zlib/ |
| example.c | 37 void test_compress OF((Byte *compr, uLong comprLen, 38 Byte *uncompr, uLong uncomprLen)); 40 Byte *uncompr, uLong uncomprLen)); 41 void test_deflate OF((Byte *compr, uLong comprLen)); 42 void test_inflate OF((Byte *compr, uLong comprLen, 43 Byte *uncompr, uLong uncomprLen)); 44 void test_large_deflate OF((Byte *compr, uLong comprLen, 45 Byte *uncompr, uLong uncomprLen)); 46 void test_large_inflate OF((Byte *compr, uLong comprLen, 47 Byte *uncompr, uLong uncomprLen)) [all...] |
| /src/external/gpl3/gdb.old/dist/zlib/test/ |
| example.c | 37 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 *uncompr, uLong uncomprLen)) [all...] |
| /src/external/gpl3/binutils/dist/zlib/test/ |
| example.c | 60 static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr, 84 static void test_gzio(const char *fname, Byte *uncompr, uLong uncomprLen) { 107 gzseek(file, 1L, SEEK_CUR); /* add one zero byte */ 166 static void test_deflate(Byte *compr, uLong comprLen) { 201 static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr, 240 static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr, 293 static void test_large_inflate(Byte *compr, uLong comprLen, Byte *uncompr [all...] |
| /src/external/gpl3/gdb/dist/zlib/test/ |
| example.c | 60 static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr, 84 static void test_gzio(const char *fname, Byte *uncompr, uLong uncomprLen) { 107 gzseek(file, 1L, SEEK_CUR); /* add one zero byte */ 166 static void test_deflate(Byte *compr, uLong comprLen) { 201 static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr, 240 static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr, 293 static void test_large_inflate(Byte *compr, uLong comprLen, Byte *uncompr [all...] |
| /src/common/dist/zlib/test/ |
| example.c | 66 static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr, 90 static void test_gzio(const char *fname, Byte *uncompr, uLong uncomprLen) { 113 gzseek(file, 1L, SEEK_CUR); /* add one zero byte */ 172 static void test_deflate(Byte *compr, uLong comprLen) { 207 static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr, 246 static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr, 299 static void test_large_inflate(Byte *compr, uLong comprLen, Byte *uncompr [all...] |
| /src/external/cddl/osnet/dist/uts/common/zmod/ |
| zconf.h | 108 typedef unsigned char Byte; 111 typedef Byte Bytef;
|
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerUtil.cpp | 39 void PrintASCIIByte(uint8_t Byte) { 40 if (Byte == '\\') 42 else if (Byte == '"') 44 else if (Byte >= 32 && Byte < 127) 45 Printf("%c", Byte); 47 Printf("\\x%02x", Byte);
|