Home
last modified time | relevance | path

Searched refs:rm_ (Results 1 – 2 of 2) sorted by relevance

/external/vixl/src/aarch32/
Doperands-aarch32.h57 : imm_(immediate), rm_(NoReg), shift_(LSL), amount_(0), rs_(NoReg) {} in Operand()
59 : imm_(immediate), rm_(NoReg), shift_(LSL), amount_(0), rs_(NoReg) {} in Operand()
66 : imm_(0), rm_(rm), shift_(LSL), amount_(0), rs_(NoReg) { in Operand()
67 VIXL_ASSERT(rm_.IsValid()); in Operand()
74 : imm_(0), rm_(rm), shift_(shift), amount_(0), rs_(NoReg) { in Operand()
75 VIXL_ASSERT(rm_.IsValid()); in Operand()
84 : imm_(0), rm_(rm), shift_(shift), amount_(amount), rs_(NoReg) { in Operand()
85 VIXL_ASSERT(rm_.IsValid()); in Operand()
112 : imm_(0), rm_(rm), shift_(shift), amount_(0), rs_(rs) { in Operand()
113 VIXL_ASSERT(rm_.IsValid() && rs_.IsValid()); in Operand()
[all …]
/external/perfetto/src/trace_processor/containers/
Drow_map.h72 RangeIterator(const RowMap* rm) : rm_(rm), index_(rm->start_idx_) {} in RangeIterator()
76 operator bool() const { return index_ < rm_->end_idx_; }
80 uint32_t ordinal() const { return index_ - rm_->start_idx_; } in ordinal()
83 const RowMap* rm_ = nullptr;
92 IndexVectorIterator(const RowMap* rm) : rm_(rm) {} in IndexVectorIterator()
96 operator bool() const { return ordinal_ < rm_->index_vector_.size(); }
98 uint32_t index() const { return rm_->index_vector_[ordinal_]; } in index()
103 const RowMap* rm_ = nullptr;
115 Iterator(const RowMap* rm) : rm_(rm) { in Iterator()
135 switch (rm_->mode_) { in Next()
[all …]