/src/sys/external/bsd/acpica/dist/compiler/ |
aslascii.c | 196 UINT8 Byte; 217 while (fread (&Byte, 1, 1, Handle) == 1) 225 if (Byte == '*') 230 if (Byte == '/') 239 else if (Byte == '/') 246 if (!ACPI_IS_ASCII (Byte)) 253 Byte, Status.Line, Status.Offset); 260 else if (!isprint (Byte) && !isspace (Byte)) 267 Byte, Status.Line, Status.Offset) [all...] |
/src/sys/external/bsd/acpica/dist/tools/acpixtract/ |
axutils.c | 203 UINT8 Byte; 210 while (fread (&Byte, 1, 1, Handle) == 1) 218 if (!Byte) 225 if (!ACPI_IS_ASCII (Byte)) 228 Byte, Offset, Offset); 237 else if (!isprint (Byte) && !isspace (Byte)) 240 Byte, Offset, Offset); 478 * Pack converted data into a byte array.
|
/src/common/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/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);
|
FuzzerMutate.cpp | 138 uint8_t Byte = Rand.RandBool() ? Rand(256) : (Rand.RandBool() ? 0 : 255); 140 Data[Idx + i] = Byte;
|
/src/common/dist/zlib/ |
zconf.h | 148 # define Byte z_Byte 401 typedef unsigned char Byte; /* 8 bits */ 408 # define Bytef Byte FAR 410 typedef Byte FAR Bytef; 422 typedef Byte const *voidpc; 423 typedef Byte FAR *voidpf; 424 typedef Byte *voidp;
|
uncompr.c | 15 the byte length of the source buffer. Upon entry, *destLen is the total size 22 first unused input byte. 35 Byte buf[1]; /* for detection of incomplete stream when *destLen == 0 */
|
zconf.h.in | 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;
|
zconf.h.cmakein | 146 # define Byte z_Byte 395 typedef unsigned char Byte; /* 8 bits */ 402 # define Bytef Byte FAR 404 typedef Byte FAR Bytef; 416 typedef Byte const *voidpc; 417 typedef Byte FAR *voidpf; 418 typedef Byte *voidp;
|
deflate.c | 138 * Update a hash value with the given input byte 249 * At least one byte has been read, or avail_in == 0; reads are 270 * strstart == 0 && lookahead == 1 (input done a byte at time) 433 if (windowBits == 8) windowBits = 9; /* until 256-byte window bug fixed */ 451 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); 523 s->method = (Byte)method; 831 * per 8-bit byte, plus 10 bits for every block. The smallest block size for 907 put_byte(s, (Byte)(b >> 8)); 908 put_byte(s, (Byte)(b & 0xff)); 1065 put_byte(s, (Byte)(s->gzhead->time & 0xff)) [all...] |
deflate.h | 111 Bytef *pending_out; /* next pending byte to output to the stream */ 116 Byte method; /* can only be DEFLATED */ 156 * byte no longer takes part in the hash key, that is: 286 /* Output a byte on the stream.
|
trees.c | 174 put_byte(s, (Byte)s->bi_buf); 181 * Flush the bit buffer and align the output on a byte boundary 187 put_byte(s, (Byte)s->bi_buf); 863 bi_windup(s); /* align on byte boundary */ 918 send_code(s, lc, ltree); /* send a literal byte */ 1084 s->compressed_len += 7; /* align on byte boundary */
|
/src/sys/net/ |
zlib.h | 53 * Byte Bytef EXPORT FAR OF STDC 88 # define Byte z_Byte 260 typedef unsigned char Byte; /* 8 bits */ 267 # define Bytef Byte FAR 269 typedef Byte FAR Bytef; 280 typedef Byte FAR *voidpf; 281 typedef Byte *voidp; 363 Bytef *next_in; /* next input byte */ 367 Bytef *next_out; /* next output byte should be put there */ 527 flushed to the output buffer and the output is aligned on a byte boundary, s [all...] |
zlib.c | 373 Bytef *pending_out; /* next pending byte to output to the stream */ 376 Byte data_type; /* UNKNOWN, BINARY or ASCII */ 377 Byte method; /* STORED (for zip only) or DEFLATED */ 417 * byte no longer takes part in the hash key, that is: 538 /* Output a byte on the stream. 762 * Update a hash value with the given input byte 869 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); 891 s->method = (Byte)method; 1014 put_byte(s, (Byte)(b >> 8)); 1015 put_byte(s, (Byte)(b & 0xff)) [all...] |
/src/sys/external/bsd/acpica/dist/common/ |
acfileio.c | 528 UINT8 Byte; 536 while (fread (&Byte, 1, 1, File) == 1) 538 if (!isprint (Byte) && !isspace (Byte)) 629 * byte in the (normally) 4-character Signature field (at least the 630 * high-order byte should be zero). Otherwise, this is OK.
|
/src/common/dist/zlib/contrib/minizip/ |
crypt.h | 33 * Return the next byte in the pseudo-random sequence 46 * Update the encryption keys with the next byte of plain text 78 (t=decrypt_byte(pkeys,pcrc_32_tab), update_keys(pkeys,pcrc_32_tab,c), (Byte)t^(c)) 96 int c; /* random byte */
|
/src/sys/external/bsd/acpica/dist/tools/acpisrc/ |
asfile.c | 670 UINT8 Byte; 678 Byte = FileBuffer[i]; 679 if (!isprint (Byte) && !isspace (Byte)) 682 "at file offset: %8u (0x%X)\n", Byte, i, i);
|
/src/sys/external/bsd/compiler_rt/dist/lib/ubsan/ |
ubsan_diag.cc | 285 char Pad = ' ', Byte = ' '; 293 Byte = '~'; 297 Buffer.append("%c", P == Loc ? '^' : Byte); 298 Buffer.append("%c", Byte);
|
/src/usr.sbin/sysinst/ |
msg.pm.de | 104 message vnd_bps_fmt {Byte pro Sektor} 110 message vnd_bps_ask {Byte pro Sektor?}
|
/src/sys/external/bsd/acpica/dist/namespace/ |
nsnames.c | 380 #define ACPI_PATH_PUT8(Path, Size, Byte, Length) \ 384 (Path)[(Length)] = (Byte); \
|
/src/sys/external/bsd/gnu-efi/dist/inc/ |
efi_pxe.h | 1153 PXE_UINT8 Byte[256]; 1180 PXE_UINT8 Byte[256]; 1209 // Address of first (lowest) byte of the memory buffer. This buffer must 1452 PXE_UINT8 Byte; 1466 // Array of byte-wide data items. 1468 PXE_UINT8 Byte[MAX_EEPROM_LEN << 2]; 1487 // Array of byte-wide data items. 1489 PXE_UINT8 Byte[MAX_EEPROM_LEN << 2]; 1526 // the media header without doing byte swapping. 1532 // Address of first byte of media header. The first byte of packet dat [all...] |
/src/sys/external/bsd/acpica/dist/tools/examples/ |
extables.c | 485 [0001] Encoded Access Width : 01 [Byte Access:8] 538 [0001] Encoded Access Width : 01 [Byte Access:8] 553 [0001] Encoded Access Width : 01 [Byte Access:8] 560 [0001] Encoded Access Width : 01 [Byte Access:8]
|
/src/lib/libc/gen/ |
arc4random.c | 130 static const uint8_t crypto_core_constant32[16] = "expand 32-byte k"; 260 # error Byte order must be little-endian or big-endian. 348 # error Byte order must be little-endian or big-endian. 444 0x5a, /* guard byte */ 476 # error Byte order must be little-endian or big-endian. 478 0xcc, /* guard byte */
|
/src/common/dist/zlib/contrib/pascal/ |
zlibpas.pas | 29 next_in: PChar; (* next input byte *) 33 next_out: PChar; (* next output byte should be put there *) 266 procedure _memset(P: Pointer; B: Byte; count: Integer); cdecl;
|
/src/common/dist/zlib/contrib/ada/ |
zlib-thin.ads | 34 type Byte is new Interfaces.C.unsigned_char; -- 8 bits 366 Next_In : Voidp := Nul; -- next input byte 369 Next_Out : Voidp := Nul; -- next output byte should be put there
|