• Home
  • Raw
  • Download

Lines Matching refs:size_

58   CPURegister() : code_(0), size_(0), type_(kNoRegister) {  in CPURegister()
64 : code_(code), size_(size), type_(type) { in CPURegister()
88 VIXL_ASSERT(size_ % 8 == 0); in GetSizeInBytes()
89 return size_ / 8; in GetSizeInBytes()
97 return size_; in GetSizeInBits()
108 return size_ == 8; in Is8Bits()
113 return size_ == 16; in Is16Bits()
118 return size_ == 32; in Is32Bits()
123 return size_ == 64; in Is64Bits()
128 return size_ == 128; in Is128Bits()
145 return IsRegister() && ((size_ == kWRegSize) || (size_ == kXRegSize)) && in IsValidRegister()
150 return IsVRegister() && ((size_ == kBRegSize) || (size_ == kHRegSize) || in IsValidVRegister()
151 (size_ == kSRegSize) || (size_ == kDRegSize) || in IsValidVRegister()
152 (size_ == kQRegSize)) && in IsValidVRegister()
163 VIXL_ASSERT((type_ != kNoRegister) || (size_ == 0)); in IsNone()
175 return Aliases(other) && (size_ == other.size_); in Is()
224 return (size_ == other.size_) && IsSameType(other); in IsSameSizeAndType()
229 int size_; variable
408 return (size_ == other.size_) && (lanes_ == other.lanes_); in IsSameFormat()
525 size_(reg1.GetSizeInBits()),
532 : list_(list), size_(size), type_(type) { in CPURegList()
540 : size_(size), type_(type) { in CPURegList()
565 VIXL_ASSERT(other.GetRegisterSizeInBits() == size_); in Combine()
575 VIXL_ASSERT(other.GetRegisterSizeInBits() == size_); in Remove()
582 VIXL_ASSERT(other.GetSizeInBits() == size_); in Combine()
588 VIXL_ASSERT(other.GetSizeInBits() == size_); in Remove()
596 VIXL_ASSERT(CPURegister(code, size_, type_).IsValid()); in Combine()
602 VIXL_ASSERT(CPURegister(code, size_, type_).IsValid()); in Remove()
608 VIXL_ASSERT(list_1.size_ == list_2.size_); in Union()
609 return CPURegList(list_1.type_, list_1.size_, list_1.list_ | list_2.list_); in Union()
622 VIXL_ASSERT(list_1.size_ == list_2.size_); in Intersection()
623 return CPURegList(list_1.type_, list_1.size_, list_1.list_ & list_2.list_); in Intersection()
691 return size_; in GetRegisterSizeInBits()
716 int size_; variable