OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Byte
(Results
1 - 25
of
46
) sorted by relevancy
1
2
/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/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/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/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/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
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/sys/external/bsd/acpica/dist/common/
acfileio.c
429
UINT8
Byte
;
437
while (fread (&
Byte
, 1, 1, File) == 1)
439
if (!isprint (
Byte
) && !isspace (
Byte
))
530
*
byte
in the (normally) 4-character Signature field (at least the
531
* high-order
byte
should be zero). Otherwise, this is OK.
/src/sys/external/bsd/acpica/dist/tools/acpisrc/
asfile.c
562
UINT8
Byte
;
570
Byte
= FileBuffer[i];
571
if (!isprint (
Byte
) && !isspace (
Byte
))
574
"at file offset: %8u (0x%X)\n",
Byte
, i, i);
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerMutate.cpp
138
uint8_t
Byte
= Rand.RandBool() ? Rand(256) : (Rand.RandBool() ? 0 : 255);
140
Data[Idx + i] =
Byte
;
/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/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeRecordMapping.cpp
486
uint8_t
Byte
= static_cast<uint8_t>(Slots[SlotIndex]) << 4;
488
Byte
|= static_cast<uint8_t>(Slots[SlotIndex + 1]);
490
error(IO.mapInteger(
Byte
));
495
uint8_t
Byte
;
496
error(IO.mapInteger(
Byte
));
497
Record.Slots.push_back(static_cast<VFTableSlotKind>(
Byte
& 0xF));
499
Record.Slots.push_back(static_cast<VFTableSlotKind>(
Byte
>> 4));
/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
...]
/src/external/cddl/osnet/dist/uts/common/zmod/
zconf.h
108
typedef unsigned char
Byte
;
111
typedef
Byte
Bytef;
/src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_diag.cpp
298
char Pad = ' ',
Byte
= ' ';
306
Byte
= '~';
310
Buffer.AppendF("%c", P == Loc ? '^' :
Byte
);
311
Buffer.AppendF("%c",
Byte
);
/src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_diag.cpp
292
char Pad = ' ',
Byte
= ' ';
300
Byte
= '~';
304
Buffer.append("%c", P == Loc ? '^' :
Byte
);
305
Buffer.append("%c",
Byte
);
/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
...]
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBuiltin.cpp
68
ConstantInt *
Byte
;
74
Byte
= CGF.Builder.getInt8(0x00);
78
Byte
= llvm::dyn_cast<llvm::ConstantInt>(
85
auto *I = CGF.Builder.CreateMemSet(AI,
Byte
, Size, AlignmentInBytes);
933
// Otherwise, use generic code to load one
byte
and test the bit. Use all but
970
OldByte = CGF.Builder.CreateLoad(ByteAddr, "bittest.
byte
");
990
// However we loaded the old
byte
, either by plain load or atomicrmw, shift
14991
// The input to vec_replace_elt is an element index, not a
byte
index.
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeIndex.h
40
Byte
= 0x0069, // 8 bit unsigned int
94
/// composed of a SimpleTypeMode
byte
followed by a SimpleTypeKind
byte
.
/src/external/gpl3/gcc/dist/libdecnumber/
decNumberLocal.h
87
#define
Byte
int8_t
145
/* References to multi-
byte
sequences under different sizes; these */
323
/* Refer to a 32-bit word or
byte
in a decFloat (df) by big-endian */
324
/* (array) notation (the 0 word or
byte
contains the sign bit), */
484
/* extra
byte
is written to the right of the three digits because */
492
/* decode). Each DPD decode is 3 bytes BCD8 plus a one-
byte
*/
493
/* length which is not used, here). Fixed-length 4-
byte
moves */
/src/external/gpl3/gcc.old/dist/libdecnumber/
decNumberLocal.h
87
#define
Byte
int8_t
145
/* References to multi-
byte
sequences under different sizes; these */
323
/* Refer to a 32-bit word or
byte
in a decFloat (df) by big-endian */
324
/* (array) notation (the 0 word or
byte
contains the sign bit), */
484
/* extra
byte
is written to the right of the three digits because */
492
/* decode). Each DPD decode is 3 bytes BCD8 plus a one-
byte
*/
493
/* length which is not used, here). Fixed-length 4-
byte
moves */
/src/external/gpl3/gdb/dist/libdecnumber/
decNumberLocal.h
87
#define
Byte
int8_t
145
/* References to multi-
byte
sequences under different sizes; these */
323
/* Refer to a 32-bit word or
byte
in a decFloat (df) by big-endian */
324
/* (array) notation (the 0 word or
byte
contains the sign bit), */
484
/* extra
byte
is written to the right of the three digits because */
492
/* decode). Each DPD decode is 3 bytes BCD8 plus a one-
byte
*/
493
/* length which is not used, here). Fixed-length 4-
byte
moves */
/src/external/gpl3/gdb.old/dist/libdecnumber/
decNumberLocal.h
87
#define
Byte
int8_t
145
/* References to multi-
byte
sequences under different sizes; these */
323
/* Refer to a 32-bit word or
byte
in a decFloat (df) by big-endian */
324
/* (array) notation (the 0 word or
byte
contains the sign bit), */
484
/* extra
byte
is written to the right of the three digits because */
492
/* decode). Each DPD decode is 3 bytes BCD8 plus a one-
byte
*/
493
/* length which is not used, here). Fixed-length 4-
byte
moves */
/src/crypto/external/bsd/netpgp/dist/src/netpgpverify/
zlib.h
94
# define
Byte
netpgpv_z_Byte
305
typedef unsigned char
Byte
; /* 8 bits */
312
# define Bytef
Byte
FAR
314
typedef
Byte
FAR Bytef;
326
typedef
Byte
const *voidpc;
327
typedef
Byte
FAR *voidpf;
328
typedef
Byte
*voidp;
428
Bytef *next_in; /* next input
byte
*/
432
Bytef *next_out; /* next output
byte
should be put there */
622
flushed to the output buffer and the output is aligned on a
byte
boundary, s
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp
843
// address is that of the
byte
after the last target machine instruction
955
// Len doesn't include the zero opcode
byte
or the length itself, but
973
uint8_t
Byte
= TableData.getU8(ByteCursor);
977
*OS << format(" %2.2" PRIx8,
Byte
);
978
Byte
= TableData.getU8(ByteCursor);
1066
// a single
byte
. When it needs to advance the address by up to
1175
// continue reading from as there is no stated length for such
byte
/src/external/apache2/llvm/dist/clang/lib/Basic/
SourceManager.cpp
81
// If the buffer is valid, check to see if it has a UTF
Byte
Order Mark
175
// If the buffer is valid, check to see if it has a UTF
Byte
Order Mark
1256
// Check if mutli-
byte
word x has bytes between m and n, included. This may also
1258
// The returned value holds a 0x80 at each
byte
position that holds a match.
1287
// This is much faster than scanning each
byte
independently.
1298
// At that point, Mask contains 0x80 set at each
byte
that holds a value
1306
unsigned char
Byte
= Word;
1307
if (
Byte
== '\n') {
1309
} else if (
Byte
== '\r') {
Completed in 240 milliseconds
1
2
Indexes created Tue Jun 09 00:24:00 UTC 2026