Lines Matching refs:count_
18 count_(0), in HInstructionMap()
40 bool IsEmpty() const { return count_ == 0; } in IsEmpty()
62 int count_; // The number of values stored in the HInstructionMap. member in v8::internal::HInstructionMap
84 bool IsEmpty() const { return count_ == 0; } in IsEmpty()
94 int count_; member in v8::internal::BASE_EMBEDDED
138 count_(other->count_), in HInstructionMap()
166 count_--; in Kill()
182 count_--; in Kill()
216 DCHECK(new_size > count_); in Resize()
232 int old_count = count_; in Resize()
233 count_ = 0; in Resize()
256 DCHECK(count_ == old_count); in Resize()
286 if (count_ >= array_size_ >> 1) Resize(array_size_ << 1, zone); in Insert()
287 DCHECK(count_ < array_size_); in Insert()
288 count_++; in Insert()
308 HSideEffectMap::HSideEffectMap() : count_(0) { in HSideEffectMap()
313 HSideEffectMap::HSideEffectMap(HSideEffectMap* other) : count_(other->count_) { in HSideEffectMap()
329 if (data_[i] != NULL) count_--; in Kill()
339 if (data_[i] == NULL) count_++; in Store()