Lines Matching defs:count
24 ZoneNodePtr* old_input_ptr, int count) {
25 DCHECK_GE(count, 0);
30 CHECK_IMPLIES(count > 0, Use::InputIndexField::is_valid(count - 1));
31 for (int current = 0; current < count; current++) {
50 this->count_ = count;
215 void Node::InsertInputs(Zone* zone, int index, int count) {
218 DCHECK_LT(0, count);
220 for (int i = 0; i < count; i++) {
221 AppendInput(zone, InputAt(std::max(InputCount() - count, 0)));
223 for (int i = InputCount() - count - 1; i >= std::max(index, count); --i) {
224 ReplaceInput(i, InputAt(i - count));
226 for (int i = 0; i < count; i++) {
244 void Node::ClearInputs(int start, int count) {
247 while (count-- > 0) {
430 int count = this->InputCount();
432 // count is less than 200 or is a round number of 100s.
433 if (count > 200 && count % 100) return;
435 for (int i = 0; i < count; i++) {
438 DCHECK_EQ(count, this->InputCount());
446 DCHECK_EQ(count, index);
457 DCHECK_EQ(count, index);