HomeSort by relevance Sort by last modified time
    Searched refs:BitRef (Results 1 - 7 of 7) sorted by null

  /external/libmojo/mojo/public/cpp/bindings/lib/
array_internal.cc 32 ArrayDataTraits<bool>::BitRef::~BitRef() {
35 ArrayDataTraits<bool>::BitRef::BitRef(uint8_t* storage, uint8_t mask)
39 ArrayDataTraits<bool>::BitRef& ArrayDataTraits<bool>::BitRef::operator=(
49 ArrayDataTraits<bool>::BitRef& ArrayDataTraits<bool>::BitRef::operator=(
50 const BitRef& value) {
54 ArrayDataTraits<bool>::BitRef::operator bool() const
    [all...]
array_internal.h 65 // * Accessing a non-const single element uses a helper class |BitRef|, which
71 class MOJO_CPP_BINDINGS_EXPORT BitRef {
73 ~BitRef();
74 BitRef& operator=(bool value);
75 BitRef& operator=(const BitRef& value);
80 BitRef(uint8_t* storage, uint8_t mask);
81 BitRef();
90 using Ref = BitRef;
96 static BitRef ToRef(StorageType* storage, size_t offset)
    [all...]
  /external/google-benchmark/test/
donotoptimize_test.cc 12 // Using DoNotOptimize on types like BitRef seem to cause a lot of problems
14 struct BitRef {
19 static BitRef Make() {
21 BitRef b(1, arr[0]);
25 BitRef(int i, unsigned char& b) : index(i), byte(b) {}
49 benchmark::DoNotOptimize(BitRef::Make());
50 BitRef lval = BitRef::Make();
  /external/libcxx/utils/google-benchmark/test/
donotoptimize_test.cc 12 // Using DoNotOptimize on types like BitRef seem to cause a lot of problems
14 struct BitRef {
19 static BitRef Make() {
21 BitRef b(1, arr[0]);
25 BitRef(int i, unsigned char& b) : index(i), byte(b) {}
49 benchmark::DoNotOptimize(BitRef::Make());
50 BitRef lval = BitRef::Make();
  /external/llvm/lib/Target/Hexagon/
BitTracker.h 30 struct BitRef;
78 struct BitTracker::BitRef {
79 BitRef(unsigned R = 0, uint16_t P = 0) : Reg(R), Pos(P) {}
80 bool operator== (const BitRef &BR) const {
142 BitRef RefI;
178 bool meet(const BitValue &V, const BitRef &Self) {
204 static BitValue self(const BitRef &Self = BitRef());
230 BitTracker::BitValue::self(const BitRef &Self) {
315 RC.Bits[i] = BitValue::self(BitRef(Reg, i))
    [all...]
BitTracker.cpp 18 // A "ref" value is associated with a BitRef structure, which indicates
193 Changed |= Bits[i].meet(RCV, BitRef(SelfR, i));
380 RC[i].RefI = BitRef(RR.Reg, i);
    [all...]
HexagonBitTracker.cpp     [all...]

Completed in 160 milliseconds