OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Bitfield
(Results
1 - 21
of
21
) sorted by relevancy
/src/games/hack/
def.monst.h
76
Bitfield
(mimic,1); /* undetected mimic */
77
Bitfield
(mdispl,1); /* mdx,mdy valid */
78
Bitfield
(minvis,1); /* invisible */
79
Bitfield
(cham,1); /* shape-changer */
80
Bitfield
(mhide,1); /* hides beneath objects */
81
Bitfield
(mundetected,1); /* not seen in present hiding place */
82
Bitfield
(mspeed,2);
83
Bitfield
(msleep,1);
84
Bitfield
(mfroz,1);
85
Bitfield
(mconf,1)
[
all
...]
def.obj.h
80
Bitfield
(oinvis,1); /* not yet implemented */
81
Bitfield
(odispl,1);
82
Bitfield
(known,1); /* exact nature known */
83
Bitfield
(dknown,1); /* color or text known */
84
Bitfield
(cursed,1);
85
Bitfield
(unpaid,1); /* on some bill */
86
Bitfield
(rustfree,1);
87
Bitfield
(onamelth,6);
def.objclass.h
72
Bitfield
(oc_name_known,1);
73
Bitfield
(oc_merge,1); /* merge otherwise equal objects */
config.h
194
* #define
Bitfield
(x,n) uchar x
197
#define
Bitfield
(x,n) unsigned x:n
hack.u_init.c
95
Bitfield
(trquan, 6);
96
Bitfield
(trknown, 1);
/src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
BitcodeCommon.h
22
using Align =
Bitfield
::Element<unsigned, 0, 5>;
23
using UsedWithInAlloca =
Bitfield
::Element<bool, Align::NextBit, 1>;
24
using ExplicitType =
Bitfield
::Element<bool, UsedWithInAlloca::NextBit, 1>;
25
using SwiftError =
Bitfield
::Element<bool, ExplicitType::NextBit, 1>;
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Bitfields.h
1
//===-- llvm/ADT/
Bitfield
.h - Get and Set bits in an integer ---*- C++ -*--===//
30
/// using Bool =
Bitfield
::Element<bool, 0, 1>;
31
///
Bitfield
::set<Bool>(Storage, true);
34
/// EXPECT_EQ(
Bitfield
::get<Bool>(Storage), true);
40
/// using Suit =
Bitfield
::Element<SuitEnum, 1, 2, SuitEnum::SPADES>;
41
///
Bitfield
::set<Suit>(Storage, SuitEnum::HEARTS);
44
/// EXPECT_EQ(
Bitfield
::get<Suit>(Storage), SuitEnum::HEARTS);
47
/// using Value =
Bitfield
::Element<unsigned, 3, 5>;
48
///
Bitfield
::set<Value>(Storage, 10);
51
/// EXPECT_EQ(
Bitfield
::get<Value>(Storage), 10U)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/XRay/
FileHeaderReader.cpp
24
// (4) uint32 :
bitfield
45
uint32_t
Bitfield
= HeaderExtractor.getU32(&OffsetPtr);
52
FileHeader.ConstantTSC =
Bitfield
& 1uL;
53
FileHeader.NonstopTSC =
Bitfield
& 1uL << 1;
/src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-account.h
41
using Depth =
Bitfield
::Element<int32_t, 0, 31>; // Low 31 bits.
42
using IsRecursive =
Bitfield
::Element<bool, 31, 1>; // Sign bit.
xray-account.cpp
134
auto Depth =
Bitfield
::get<RecursionStatus::Depth>(Storage);
137
Bitfield
::set<RecursionStatus::Depth>(Storage, Depth); // ++Storage
140
Bitfield
::set<RecursionStatus::IsRecursive>(Storage,
145
auto Depth =
Bitfield
::get<RecursionStatus::Depth>(Storage);
148
Bitfield
::set<RecursionStatus::Depth>(Storage, Depth); // --Storage
151
Bitfield
::set<RecursionStatus::IsRecursive>(Storage, false); // Storage = 0
155
return
Bitfield
::get<RecursionStatus::IsRecursive>(Storage); // Storage s< 0
xray-converter.cpp
102
uint32_t
Bitfield
{0};
104
Bitfield
|= 1uL;
106
Bitfield
|= 1uL << 1;
107
Writer.write(
Bitfield
);
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instruction.h
57
using OpaqueField =
Bitfield
::Element<uint16_t, 0, 15>;
66
typename
Bitfield
::Element<unsigned, Offset, 5,
70
using BoolBitfieldElementT = typename
Bitfield
::Element<bool, Offset, 1>;
74
typename
Bitfield
::Element<AtomicOrdering, Offset, 3,
80
using HasMetadataField =
Bitfield
::Element<bool, 15, 1>;
827
!
Bitfield
::isOverlapping<BitfieldElement, HasMetadataField>(),
829
return
Bitfield
::get<BitfieldElement>(getSubclassDataFromValue());
836
!
Bitfield
::isOverlapping<BitfieldElement, HasMetadataField>(),
839
Bitfield
::set<BitfieldElement>(Storage, Value);
Instructions.h
67
static_assert(
Bitfield
::areContiguous<AlignmentField, UsedWithInAllocaField,
162
template <typename
Bitfield
>
163
void setSubclassData(typename
Bitfield
::Type Value) {
164
Instruction::setSubclassData<
Bitfield
>(Value);
179
Bitfield
::areContiguous<VolatileField, AlignmentField, OrderingField>(),
287
template <typename
Bitfield
>
288
void setSubclassData(typename
Bitfield
::Type Value) {
289
Instruction::setSubclassData<
Bitfield
>(Value);
308
Bitfield
::areContiguous<VolatileField, AlignmentField, OrderingField>(),
422
template <typename
Bitfield
>
[
all
...]
InstrTypes.h
758
Bitfield
::Element<Predicate, 0, 6, LAST_ICMP_PREDICATE>;
1167
using CallInstReservedField =
Bitfield
::Element<unsigned, 0, 2>;
1169
Bitfield
::Element<CallingConv::ID, CallInstReservedField::NextBit, 10,
1172
Bitfield
::areContiguous<CallInstReservedField, CallingConvField>(),
/src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PrettyBuiltinDumper.cpp
81
case PDB_BuiltinType::
Bitfield
:
82
return "
bitfield
";
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h
299
BitField
,
351
Bitfield
= 29,
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/
PDBExtras.cpp
62
CASE_OUTPUT_ENUM_CLASS_NAME(PDB_BuiltinType,
Bitfield
, OS)
175
CASE_OUTPUT_ENUM_CLASS_STR(PDB_LocType,
BitField
, "
bitfield
", OS)
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp
917
APInt
Bitfield
(Width, 0);
919
Bitfield
.setBit((unsigned char)C);
920
Value *BitfieldC = B.getInt(
Bitfield
);
922
// Adjust width of "C" to the
bitfield
width, then mask off the high bits.
/src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp
4935
const bool InAlloca =
Bitfield
::get<APV::UsedWithInAlloca>(Rec);
4936
const bool SwiftError =
Bitfield
::get<APV::SwiftError>(Rec);
4939
if (!
Bitfield
::get<APV::ExplicitType>(Rec)) {
4949
parseAlignmentValue(
Bitfield
::get<APV::Align>(Rec), Align)) {
/src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp
3046
Bitfield
::set<APV::Align>(Record, getEncodedAlign(AI.getAlign()));
3047
Bitfield
::set<APV::UsedWithInAlloca>(Record, AI.isUsedWithInAlloca());
3048
Bitfield
::set<APV::ExplicitType>(Record, true);
3049
Bitfield
::set<APV::SwiftError>(Record, AI.isSwiftError());
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp
922
struct BitfieldOp
Bitfield
;
2649
// Munge the lsb/width into a
bitfield
mask.
2650
unsigned lsb =
Bitfield
.LSB;
2651
unsigned width =
Bitfield
.Width;
3705
Op->
Bitfield
.LSB = LSB;
3706
Op->
Bitfield
.Width = Width;
4006
OS << "<
bitfield
" << "lsb: " <<
Bitfield
.LSB
4007
<< ", width: " <<
Bitfield
.Width << ">";
5547
// The
bitfield
descriptor is really two operands, the LSB and the width
[
all
...]
Completed in 45 milliseconds
Indexes created Wed Aug 05 00:25:39 UTC 2026