OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BitStructField
(Results
1 - 4
of
4
) sorted by null
/art/runtime/
subtype_check_bits.h
60
BitStructField
<BitString, /*lsb*/ 0> bitstring_;
subtype_check_bits_and_status.h
71
BitStructField
<SubtypeCheckBits, /*lsb*/ 0> subtype_check_info_;
72
BitStructField
<ClassStatus,
/art/libartbase/base/
bit_struct.h
79
//
BitStructField
can be used with custom standard-layout structs,
111
struct
BitStructField
{
125
BitStructField
& operator=(T value) {
133
BitStructField
& operator=(const
BitStructField
& other) {
138
BitStructField
(const
BitStructField
& other) {
142
BitStructField
() = default;
143
~
BitStructField
() = default;
151
static_assert(std::is_base_of<
BitStructField
, T2>::value, "T2 must inherit BitStructField")
[
all
...]
bit_struct_test.cc
76
BitStructField
<CustomBitStruct, /*lsb*/4, /*width*/4> f{};
89
BitStructField
<CustomBitStruct, /*lsb*/0, /*width*/4> f4_a;
90
BitStructField
<CustomBitStruct, /*lsb*/4, /*width*/4> f4_b;
287
BitStructField
<MixedSizeBitStruct, /*lsb*/0> mixed_lower;
288
BitStructField
<MixedSizeBitStruct, /*lsb*/32> mixed_upper;
Completed in 174 milliseconds