count             570 include/v8-profiler.h   HeapStatsUpdate(uint32_t index, uint32_t count, uint32_t size)
count             571 include/v8-profiler.h     : index(index), count(count), size(size) { }
count             573 include/v8-profiler.h   uint32_t count;  // New value of count field for the interval with this index.
count            3852 include/v8.h     virtual WriteResult WriteHeapStatsChunk(HeapStatsUpdate* data, int count) {
count             583 samples/process.cc   for (int i = 0; i < count; i++) {
count            1836 src/arm/assembler-arm.cc   int count = last.code() - first.code() + 1;
count            1838 src/arm/assembler-arm.cc        0xB*B8 | count*2);
count            1857 src/arm/assembler-arm.cc   int count = last.code() - first.code() + 1;
count            1859 src/arm/assembler-arm.cc        0xB*B8 | count*2);
count            1877 src/arm/assembler-arm.cc   int count = last.code() - first.code() + 1;
count            1879 src/arm/assembler-arm.cc        0xA*B8 | count);
count            1898 src/arm/assembler-arm.cc   int count = last.code() - first.code() + 1;
count            1900 src/arm/assembler-arm.cc        0xA*B8 | count);
count            5594 src/arm/code-stubs-arm.cc     __ add(count, count, Operand(count), SetCC);
count            5596 src/arm/code-stubs-arm.cc     __ cmp(count, Operand(0, RelocInfo::NONE));
count            5604 src/arm/code-stubs-arm.cc   __ sub(count, count, Operand(1), SetCC);
count            5649 src/arm/code-stubs-arm.cc     __ add(count, count, Operand(count), SetCC);
count            5651 src/arm/code-stubs-arm.cc     __ cmp(count, Operand(0, RelocInfo::NONE));
count            5658 src/arm/code-stubs-arm.cc   __ cmp(count, Operand(8));
count            5659 src/arm/code-stubs-arm.cc   __ add(count, dest, Operand(count));
count            5660 src/arm/code-stubs-arm.cc   Register limit = count;  // Read until src equals this.
count             257 src/arm/code-stubs-arm.h                                      Register count,
count             268 src/arm/code-stubs-arm.h                                          Register count,
count             246 src/arm/deoptimizer-arm.cc   int count = iterator.Next();
count             248 src/arm/deoptimizer-arm.cc   ASSERT(count == 1);
count             249 src/arm/deoptimizer-arm.cc   USE(count);
count             991 src/arm/deoptimizer-arm.cc   for (int i = 0; i < count(); i++) {
count             569 src/arm/full-codegen-arm.cc   ASSERT(count > 0);
count             570 src/arm/full-codegen-arm.cc   __ Drop(count);
count             577 src/arm/full-codegen-arm.cc   ASSERT(count > 0);
count             578 src/arm/full-codegen-arm.cc   __ Drop(count);
count             585 src/arm/full-codegen-arm.cc   ASSERT(count > 0);
count             586 src/arm/full-codegen-arm.cc   if (count > 1) __ Drop(count - 1);
count             593 src/arm/full-codegen-arm.cc   ASSERT(count > 0);
count             595 src/arm/full-codegen-arm.cc   __ Drop(count);
count            3445 src/arm/full-codegen-arm.cc   ParameterCount count(arg_count);
count            3446 src/arm/full-codegen-arm.cc   __ InvokeFunction(r1, count, CALL_FUNCTION,
count            1396 src/arm/lithium-arm.h   explicit LDrop(int count) : count_(count) { }
count            1398 src/arm/lithium-arm.h   int count() const { return count_; }
count            3093 src/arm/lithium-codegen-arm.cc   __ Drop(instr->count());
count            3180 src/arm/lithium-codegen-arm.cc     ParameterCount count(arity);
count            3181 src/arm/lithium-codegen-arm.cc     __ InvokeFunction(function, count, CALL_FUNCTION, generator, call_kind);
count            3624 src/arm/lithium-codegen-arm.cc     ParameterCount count(instr->arity());
count            3625 src/arm/lithium-codegen-arm.cc     __ InvokeFunction(r1, count, CALL_FUNCTION, generator, CALL_AS_METHOD);
count             216 src/arm/macro-assembler-arm.cc   if (count > 0) {
count             217 src/arm/macro-assembler-arm.cc     add(sp, sp, Operand(count * kPointerSize), LeaveCC, cond);
count             129 src/arm/macro-assembler-arm.h   void Drop(int count, Condition cond = al);
count            1569 src/arm/simulator-arm.cc   int count = 0;
count            1572 src/arm/simulator-arm.cc       count++;
count            1576 src/arm/simulator-arm.cc   return count;
count            1945 src/arm/simulator-arm.cc     !(watched_stops[code].count & kStopDisabledBit);
count            1952 src/arm/simulator-arm.cc     watched_stops[code].count &= ~kStopDisabledBit;
count            1960 src/arm/simulator-arm.cc     watched_stops[code].count |= kStopDisabledBit;
count            1968 src/arm/simulator-arm.cc   if ((watched_stops[code].count & ~(1 << 31)) == 0x7fffffff) {
count            1971 src/arm/simulator-arm.cc     watched_stops[code].count = 0;
count            1974 src/arm/simulator-arm.cc     watched_stops[code].count++;
count            1986 src/arm/simulator-arm.cc     int32_t count = watched_stops[code].count & ~kStopDisabledBit;
count            1988 src/arm/simulator-arm.cc     if (count != 0) {
count            1991 src/arm/simulator-arm.cc                code, code, state, count, watched_stops[code].desc);
count            1994 src/arm/simulator-arm.cc                code, code, state, count);
count             391 src/arm/simulator-arm.h     uint32_t count;
count             181 src/ast.h        void add_node_count(int count) { node_count_ += count; }
count             273 src/bignum-dtoa.cc   ASSERT(count >= 0);
count             274 src/bignum-dtoa.cc   for (int i = 0; i < count - 1; ++i) {
count             290 src/bignum-dtoa.cc   buffer[count - 1] = digit + '0';
count             293 src/bignum-dtoa.cc   for (int i = count - 1; i > 0; --i) {
count             303 src/bignum-dtoa.cc   *length = count;
count            2003 src/bootstrapper.cc   int count = v8::ImplementationUtilities::GetNameCount(extensions);
count            2005 src/bootstrapper.cc   for (int i = 0; i < count; i++) {
count             179 src/d8.cc              size_t count = fwrite(*str, sizeof(**str), str.length(), stdout);
count             180 src/d8.cc              (void) count;  // Silence GCC-4.5.x "unused result" warning.
count            1314 src/d8.cc              printf("| c:%-60s | %11i |\n", key, counter->count());
count            1317 src/d8.cc              printf("| %-62s | %11i |\n", key, counter->count());
count              50 src/d8.h         int32_t count() { return count_; }
count             207 src/debug.cc     while (count > 0) {
count             209 src/debug.cc       count--;
count             626 src/debug.cc     int count = 0;
count             630 src/debug.cc         instances->set(count, *reinterpret_cast<Script**>(entry->value));
count             631 src/debug.cc         count++;
count             985 src/debug.cc         int count = 0;
count             988 src/debug.cc           count++;
count            1001 src/debug.cc         step_count = count;
count            1663 src/debug.cc     int count = 0;
count            1669 src/debug.cc           locations->set(count++, break_point_info->statement_position());
count            2340 src/debug.cc     int count = 0;
count            2347 src/debug.cc         count++;
count              91 src/debug.h      void Next(int count);
count             225 src/deoptimizer.cc   TableEntryGenerator generator(masm, type, count);
count             568 src/deoptimizer.cc   int count = iterator.Next();
count             571 src/deoptimizer.cc   output_ = new FrameDescription*[count];
count             572 src/deoptimizer.cc   for (int i = 0; i < count; ++i) {
count             575 src/deoptimizer.cc   output_count_ = count;
count             578 src/deoptimizer.cc   for (int i = 0; i < count; ++i) {
count             254 src/deoptimizer.h     TableEntryGenerator(MacroAssembler* masm, BailoutType type,  int count)
count             255 src/deoptimizer.h         : EntryGenerator(masm, type), count_(count) { }
count             261 src/deoptimizer.h     int count() const { return count_; }
count             309 src/deoptimizer.h       MacroAssembler* masm, int count, BailoutType type);
count             640 src/full-codegen.h     virtual void DropAndPlug(int count, Register reg) const = 0;
count             684 src/full-codegen.h     virtual void DropAndPlug(int count, Register reg) const;
count             705 src/full-codegen.h     virtual void DropAndPlug(int count, Register reg) const;
count             744 src/full-codegen.h     virtual void DropAndPlug(int count, Register reg) const;
count             771 src/full-codegen.h     virtual void DropAndPlug(int count, Register reg) const;
count             117 src/gdb-jit.cc     position_ += sizeof(T) * count;
count            3807 src/heap.cc      int count = descriptors->number_of_descriptors();
count            3808 src/heap.cc      if (count > 1) {
count            3810 src/heap.cc        for (int i = 1; i != count; i++) {
count            3854 src/heap.cc        int count = fun->shared()->this_property_assignments_count();
count            3855 src/heap.cc        if (count > in_object_properties) {
count            3861 src/heap.cc                DescriptorArray::Allocate(count, DescriptorArray::MAY_BE_SHARED);
count            3867 src/heap.cc          for (int i = 0; i < count; i++) {
count            3883 src/heap.cc            map->set_pre_allocated_property_fields(count);
count            3884 src/heap.cc            map->set_unused_property_fields(in_object_properties - count);
count            2462 src/heap.h       void set_gc_count(unsigned int count) { gc_count_ = count; }
count            2465 src/heap.h       void set_full_gc_count(int count) { full_gc_count_ = count; }
count             312 src/hydrogen-instructions.cc   int count = 0;
count             313 src/hydrogen-instructions.cc   for (HUseIterator it(uses()); !it.Done(); it.Advance()) ++count;
count             314 src/hydrogen-instructions.cc   return count;
count             366 src/hydrogen-instructions.cc   int count = OperandCount();
count             367 src/hydrogen-instructions.cc   for (int i = 0; i < count; ++i) {
count            1280 src/hydrogen-instructions.cc   int count = OperandCount();
count            1282 src/hydrogen-instructions.cc   while (position < count && candidate == NULL) {
count            1286 src/hydrogen-instructions.cc   while (position < count) {
count            3601 src/hydrogen.cc   int count = call->argument_count();
count            3602 src/hydrogen.cc   ZoneList<HValue*> arguments(count, zone());
count            3603 src/hydrogen.cc   for (int i = 0; i < count; ++i) {
count            5086 src/hydrogen.cc   int count = 0;
count            5092 src/hydrogen.cc   for (int i = 0; i < types->length() && count < kMaxLoadPolymorphism; ++i) {
count            5105 src/hydrogen.cc       if (count == 0) {
count            5112 src/hydrogen.cc       ++count;
count            5119 src/hydrogen.cc   if (count == types->length() && is_monomorphic_field) {
count            5144 src/hydrogen.cc   int count = 0;
count            5146 src/hydrogen.cc   for (int i = 0; i < types->length() && count < kMaxStorePolymorphism; ++i) {
count            5150 src/hydrogen.cc       if (count == 0) {
count            5154 src/hydrogen.cc       ++count;
count            5178 src/hydrogen.cc   if (count == types->length() && FLAG_deoptimize_uncommon_cases) {
count            5348 src/hydrogen.cc           int count = info()->scope()->num_parameters();
count            5349 src/hydrogen.cc           for (int i = 0; i < count; ++i) {
count            5543 src/hydrogen.cc           int count = info()->scope()->num_parameters();
count            5544 src/hydrogen.cc           for (int i = 0; i < count; ++i) {
count            7754 src/hydrogen.cc           int count = info()->scope()->num_parameters();
count            7755 src/hydrogen.cc           for (int i = 0; i < count; ++i) {
count            9120 src/hydrogen.cc   int count = index_from_top + 1;
count            9121 src/hydrogen.cc   int index = values_.length() - count;
count            9125 src/hydrogen.cc   if (push_count_ < count) {
count            9127 src/hydrogen.cc     pop_count_ += (count - push_count_);
count            9128 src/hydrogen.cc     push_count_ = count;
count            9135 src/hydrogen.cc   for (int i = 0; i < count; ++i) {
count              85 src/hydrogen.h   void set_argument_count(int count) { argument_count_ = count; }
count             487 src/hydrogen.h   void Drop(int count);
count            5961 src/ia32/code-stubs-ia32.cc   __ sub(count, Immediate(1));
count            5977 src/ia32/code-stubs-ia32.cc   ASSERT(count.is(ecx));  // rep movs count
count            5980 src/ia32/code-stubs-ia32.cc   ASSERT(!scratch.is(count));
count            5984 src/ia32/code-stubs-ia32.cc   __ test(count, count);
count            5989 src/ia32/code-stubs-ia32.cc     __ shl(count, 1);
count            5994 src/ia32/code-stubs-ia32.cc   __ test(count, Immediate(~3));
count            5998 src/ia32/code-stubs-ia32.cc   __ mov(scratch, count);
count            5999 src/ia32/code-stubs-ia32.cc   __ sar(count, 2);  // Number of doublewords to copy.
count            6004 src/ia32/code-stubs-ia32.cc   __ mov(count, scratch);
count            6005 src/ia32/code-stubs-ia32.cc   __ and_(count, 3);
count            6009 src/ia32/code-stubs-ia32.cc   __ test(count, count);
count            6019 src/ia32/code-stubs-ia32.cc   __ sub(count, Immediate(1));
count             256 src/ia32/code-stubs-ia32.h                                      Register count,
count             266 src/ia32/code-stubs-ia32.h                                         Register count,    // Must be ecx.
count             185 src/ia32/codegen-ia32.cc     Register count = ecx;
count             188 src/ia32/codegen-ia32.cc     __ mov(count, Operand(esp, stack_offset + kSizeOffset));
count             199 src/ia32/codegen-ia32.cc     __ sub(count, edx);
count             207 src/ia32/codegen-ia32.cc       __ mov(edx, count);
count             209 src/ia32/codegen-ia32.cc       Register count = edx;
count             230 src/ia32/codegen-ia32.cc       __ test(count, Immediate(0x10));
count             239 src/ia32/codegen-ia32.cc       __ and_(count, 0xF);
count             240 src/ia32/codegen-ia32.cc       __ movdqu(xmm0, Operand(src, count, times_1, -0x10));
count             241 src/ia32/codegen-ia32.cc       __ movdqu(Operand(dst, count, times_1, -0x10), xmm0);
count             255 src/ia32/codegen-ia32.cc       Register count = edx;
count             276 src/ia32/codegen-ia32.cc       __ test(count, Immediate(0x10));
count             285 src/ia32/codegen-ia32.cc       __ and_(count, 0x0F);
count             286 src/ia32/codegen-ia32.cc       __ movdqu(xmm0, Operand(src, count, times_1, -0x10));
count             287 src/ia32/codegen-ia32.cc       __ movdqu(Operand(dst, count, times_1, -0x10), xmm0);
count             303 src/ia32/codegen-ia32.cc     Register count = ecx;
count             306 src/ia32/codegen-ia32.cc     __ mov(count, Operand(esp, stack_offset + kSizeOffset));
count             319 src/ia32/codegen-ia32.cc     __ sub(count, edx);
count             322 src/ia32/codegen-ia32.cc     __ mov(edx, count);
count             323 src/ia32/codegen-ia32.cc     count = edx;
count             328 src/ia32/codegen-ia32.cc     __ and_(count, 3);
count             329 src/ia32/codegen-ia32.cc     __ mov(eax, Operand(src, count, times_1, -4));
count             330 src/ia32/codegen-ia32.cc     __ mov(Operand(dst, count, times_1, -4), eax);
count             337 src/ia32/deoptimizer-ia32.cc   int count = iterator.Next();
count             339 src/ia32/deoptimizer-ia32.cc   ASSERT(count == 1);
count             340 src/ia32/deoptimizer-ia32.cc   USE(count);
count            1088 src/ia32/deoptimizer-ia32.cc   for (int i = 0; i < count(); i++) {
count             533 src/ia32/disasm-ia32.cc   int count = PrintRightOperand(data+1);
count             535 src/ia32/disasm-ia32.cc     AppendToBuffer(",0x%x", *(data + 1 + count));
count             536 src/ia32/disasm-ia32.cc     return 1 + count + 1 /*int8*/;
count             538 src/ia32/disasm-ia32.cc     AppendToBuffer(",0x%x", *reinterpret_cast<int32_t*>(data + 1 + count));
count             539 src/ia32/disasm-ia32.cc     return 1 + count + 4 /*int32_t*/;
count             568 src/ia32/disasm-ia32.cc     int count = PrintRightOperand(data+1);
count             569 src/ia32/disasm-ia32.cc     int32_t imm = *reinterpret_cast<int32_t*>(data+1+count);
count             571 src/ia32/disasm-ia32.cc     return 1+count+4 /*int32_t*/;
count             734 src/ia32/disasm-ia32.cc   int count = PrintRightOperand(modrm_start);
count             735 src/ia32/disasm-ia32.cc   return count + 1;
count             550 src/ia32/full-codegen-ia32.cc   ASSERT(count > 0);
count             551 src/ia32/full-codegen-ia32.cc   __ Drop(count);
count             558 src/ia32/full-codegen-ia32.cc   ASSERT(count > 0);
count             559 src/ia32/full-codegen-ia32.cc   __ Drop(count);
count             566 src/ia32/full-codegen-ia32.cc   ASSERT(count > 0);
count             567 src/ia32/full-codegen-ia32.cc   if (count > 1) __ Drop(count - 1);
count             574 src/ia32/full-codegen-ia32.cc   ASSERT(count > 0);
count             576 src/ia32/full-codegen-ia32.cc   __ Drop(count);
count            3378 src/ia32/full-codegen-ia32.cc   ParameterCount count(arg_count);
count            3379 src/ia32/full-codegen-ia32.cc   __ InvokeFunction(edi, count, CALL_FUNCTION,
count            2938 src/ia32/lithium-codegen-ia32.cc   __ Drop(instr->count());
count            3031 src/ia32/lithium-codegen-ia32.cc     ParameterCount count(arity);
count            3032 src/ia32/lithium-codegen-ia32.cc     __ InvokeFunction(function, count, CALL_FUNCTION, generator, call_kind);
count            3507 src/ia32/lithium-codegen-ia32.cc     ParameterCount count(instr->arity());
count            3508 src/ia32/lithium-codegen-ia32.cc     __ InvokeFunction(edi, count, CALL_FUNCTION, generator, CALL_AS_METHOD);
count             182 src/ia32/lithium-gap-resolver-ia32.cc   int count = 0;
count             185 src/ia32/lithium-gap-resolver-ia32.cc       ++count;
count             188 src/ia32/lithium-gap-resolver-ia32.cc   return count;
count            1421 src/ia32/lithium-ia32.h   explicit LDrop(int count) : count_(count) { }
count            1423 src/ia32/lithium-ia32.h   int count() const { return count_; }
count             456 src/json-parser.h   int count = end - start;
count             457 src/json-parser.h   int max_length = count + source_length_ - position_;
count             458 src/json-parser.h   int length = Min(max_length, Max(kInitialSpecialStringLength, 2 * count));
count             468 src/json-parser.h     if (count >= length) {
count             470 src/json-parser.h       return SlowScanJsonString<StringType, SinkChar>(seq_str, 0, count);
count             480 src/json-parser.h         SeqStringSet(seq_str, count++, c0_);
count             484 src/json-parser.h         return SlowScanJsonString<SeqTwoByteString, uc16>(seq_str, 0, count);
count             492 src/json-parser.h           SeqStringSet(seq_str, count++, c0_);
count             495 src/json-parser.h           SeqStringSet(seq_str, count++, '\x08');
count             498 src/json-parser.h           SeqStringSet(seq_str, count++, '\x0c');
count             501 src/json-parser.h           SeqStringSet(seq_str, count++, '\x0a');
count             504 src/json-parser.h           SeqStringSet(seq_str, count++, '\x0d');
count             507 src/json-parser.h           SeqStringSet(seq_str, count++, '\x09');
count             520 src/json-parser.h             SeqStringSet(seq_str, count++, value);
count             528 src/json-parser.h                                                               count);
count             541 src/json-parser.h             *seq_str, count);
count             543 src/json-parser.h     int string_size = StringType::SizeFor(count);
count             547 src/json-parser.h     seq_str->set_length(count);
count            3459 src/jsregexp.cc     for (int i = 0; i < count && i < kAFew; i++) {
count            3462 src/jsregexp.cc     for (int i = kAFew; i < count; i++) {
count            5274 src/jsregexp.cc     for (int i = count - 1; i >= 0; i--) {
count            5278 src/jsregexp.cc     for (int i = 0; i < count; i++) {
count            5296 src/jsregexp.cc   int end_pos = count;
count            5297 src/jsregexp.cc   for (int i = count - 1; i >= 0; i--) {
count            5316 src/jsregexp.cc     if (start_pos < count) {
count            5317 src/jsregexp.cc       MoveRanges(list, start_pos, start_pos + 1, count - start_pos);
count            5320 src/jsregexp.cc     return count + 1;
count            5328 src/jsregexp.cc     return count;
count            5335 src/jsregexp.cc   if (end_pos < count) {
count            5336 src/jsregexp.cc     MoveRanges(list, end_pos, start_pos + 1, count - end_pos);
count            5339 src/jsregexp.cc   return count - (end_pos - start_pos) + 1;
count            1457 src/jsregexp.h   void set_characters_preloaded(int count) { characters_preloaded_ = count; }
count              97 src/list-inl.h Vector<T> List<T, P>::AddBlock(T value, int count, P alloc) {
count              99 src/list-inl.h   for (int i = 0; i < count; i++) Add(value, alloc);
count             100 src/list-inl.h   return Vector<T>(&data_[start], count);
count             121 src/list.h       Vector<T> AddBlock(T value, int count,
count             150 src/list.h       INLINE(void RewindBy(int count)) { Rewind(length_ - count); }
count             645 src/liveobjectlist.cc     *count = 0;
count             656 src/liveobjectlist.cc       (*count)++;
count             668 src/liveobjectlist.cc     int count = 0;
count             697 src/liveobjectlist.cc       if (count >= start) {
count             712 src/liveobjectlist.cc       count++;
count             743 src/liveobjectlist.cc                                  count,
count             756 src/liveobjectlist.cc     int count;
count             759 src/liveobjectlist.cc     count = LiveObjectList::GetRetainers(target_,
count             769 src/liveobjectlist.cc     if (count < 0) {
count             946 src/liveobjectlist.cc   int count = 0;
count             957 src/liveobjectlist.cc     count += lol->obj_count_;
count             964 src/liveobjectlist.cc   return count;
count            1086 src/liveobjectlist.cc   int count = 0;
count            1091 src/liveobjectlist.cc     count++;
count            1093 src/liveobjectlist.cc   return count;
count            1105 src/liveobjectlist.cc   int count = total_count;
count            1110 src/liveobjectlist.cc     count -= last_lol->TotalObjCount();
count            1116 src/liveobjectlist.cc   lol = new LiveObjectList(last_lol, count);
count            1277 src/liveobjectlist.cc   int count = -1;
count            1279 src/liveobjectlist.cc   writer->ComputeTotalCountAndSize(filter, &count, &size);
count            1282 src/liveobjectlist.cc   if ((start < 0) || (start >= count)) {
count            1286 src/liveobjectlist.cc   int remaining_count = count - start;
count            1313 src/liveobjectlist.cc                                    Smi::FromInt(count),
count            1437 src/liveobjectlist.cc     int count = summary.Count(type);
count            1438 src/liveobjectlist.cc     if (count) {
count            1449 src/liveobjectlist.cc                                          Smi::FromInt(count),
count            1565 src/liveobjectlist.cc       int count;
count            1567 src/liveobjectlist.cc       count = lol->GetTotalObjCountAndSize(&size);
count            1579 src/liveobjectlist.cc                                          Smi::FromInt(count),
count            1744 src/liveobjectlist.cc         (*count)++;
count            1801 src/liveobjectlist.cc   int count = 0;
count            1818 src/liveobjectlist.cc                               &count,
count            1838 src/liveobjectlist.cc                               &count,
count            1896 src/liveobjectlist.cc             count++;
count            1924 src/liveobjectlist.cc     count = 0;
count            1928 src/liveobjectlist.cc   return count;
count            2284 src/liveobjectlist.cc     int count = lol->obj_count_;
count            2285 src/liveobjectlist.cc     for (int i = 0; i < count; i++) {
count            2309 src/liveobjectlist.cc   int count = 0;
count            2313 src/liveobjectlist.cc     memcpy(&elements[count], lol->elements_, lol->obj_count_ * sizeof(Element));
count            2314 src/liveobjectlist.cc     count += lol->obj_count_;
count            2320 src/liveobjectlist.cc   ASSERT(count == total_count);
count            2487 src/liveobjectlist.cc   int count = 0;
count            2492 src/liveobjectlist.cc     memcpy(&elements[count], lol->elements_, lol->obj_count_ * sizeof(Element));
count            2493 src/liveobjectlist.cc     count += lol->obj_count_;
count            2499 src/liveobjectlist.cc   ASSERT(count == total_count);
count             108 src/liveobjectlist.h                                       int count,
count             301 src/liveobjectlist.h                                              int count,
count             568 src/mark-compact.cc   int count = 0;
count             621 src/mark-compact.cc       if (count < max_evacuation_candidates) {
count             622 src/mark-compact.cc         candidates[count++] = Candidate(fragmentation, p);
count             640 src/mark-compact.cc   for (int i = 0; i < count; i++) {
count             644 src/mark-compact.cc   if (count > 0 && FLAG_trace_fragmentation) {
count             646 src/mark-compact.cc            count,
count            1679 src/mark-compact.cc   for (int i = 0, count = data->InlinedFunctionCount()->value();
count            1680 src/mark-compact.cc        i < count;
count             107 src/mips/assembler-mips-inl.h     int count = Assembler::RelocateInternalReference(p, delta);
count             108 src/mips/assembler-mips-inl.h     CPU::FlushICache(p, count * sizeof(uint32_t));
count            5822 src/mips/code-stubs-mips.cc     __ addu(count, count, count);
count            5824 src/mips/code-stubs-mips.cc   __ Branch(&done, eq, count, Operand(zero_reg));
count            5825 src/mips/code-stubs-mips.cc   __ addu(count, dest, count);  // Count now points to the last dest byte.
count            5832 src/mips/code-stubs-mips.cc   __ Branch(&loop, lt, dest, Operand(count));
count            5878 src/mips/code-stubs-mips.cc     __ addu(count, count, count);
count            5880 src/mips/code-stubs-mips.cc   __ Branch(&done, eq, count, Operand(zero_reg));
count            5884 src/mips/code-stubs-mips.cc   __ Subu(scratch1, count, Operand(8));
count            5885 src/mips/code-stubs-mips.cc   __ Addu(count, dest, Operand(count));
count            5886 src/mips/code-stubs-mips.cc   Register limit = count;  // Read until src equals this.
count             258 src/mips/code-stubs-mips.h                                      Register count,
count             269 src/mips/code-stubs-mips.h                                          Register count,
count             236 src/mips/deoptimizer-mips.cc   int count = iterator.Next();
count             238 src/mips/deoptimizer-mips.cc   ASSERT(count == 1);
count             239 src/mips/deoptimizer-mips.cc   USE(count);
count             989 src/mips/deoptimizer-mips.cc   for (int i = 0; i < count(); i++) {
count            1002 src/mips/deoptimizer-mips.cc     const int remaining_entries = (count() - i) * table_entry_size_;
count            1018 src/mips/deoptimizer-mips.cc       count() * table_entry_size_);
count             574 src/mips/full-codegen-mips.cc   ASSERT(count > 0);
count             575 src/mips/full-codegen-mips.cc   __ Drop(count);
count             582 src/mips/full-codegen-mips.cc   ASSERT(count > 0);
count             583 src/mips/full-codegen-mips.cc   __ Drop(count);
count             590 src/mips/full-codegen-mips.cc   ASSERT(count > 0);
count             591 src/mips/full-codegen-mips.cc   if (count > 1) __ Drop(count - 1);
count             598 src/mips/full-codegen-mips.cc   ASSERT(count > 0);
count             600 src/mips/full-codegen-mips.cc   __ Drop(count);
count            3477 src/mips/full-codegen-mips.cc   ParameterCount count(arg_count);
count            3478 src/mips/full-codegen-mips.cc   __ InvokeFunction(a1, count, CALL_FUNCTION,
count            2848 src/mips/lithium-codegen-mips.cc   __ Drop(instr->count());
count            2934 src/mips/lithium-codegen-mips.cc     ParameterCount count(arity);
count            2935 src/mips/lithium-codegen-mips.cc     __ InvokeFunction(function, count, CALL_FUNCTION, generator, call_kind);
count            3391 src/mips/lithium-codegen-mips.cc     ParameterCount count(instr->arity());
count            3392 src/mips/lithium-codegen-mips.cc     __ InvokeFunction(a1, count, CALL_FUNCTION, generator, CALL_AS_METHOD);
count            1362 src/mips/lithium-mips.h   explicit LDrop(int count) : count_(count) { }
count            1364 src/mips/lithium-mips.h   int count() const { return count_; }
count            2686 src/mips/macro-assembler-mips.cc   if (count <= 0) {
count            2696 src/mips/macro-assembler-mips.cc   addiu(sp, sp, count * kPointerSize);
count             207 src/mips/macro-assembler-mips.h   void Drop(int count,
count             685 src/mips/macro-assembler-mips.h   void Pop(uint32_t count = 1) {
count             686 src/mips/macro-assembler-mips.h     Addu(sp, sp, Operand(count * kPointerSize));
count            1619 src/mips/simulator-mips.cc   return !(watched_stops[code].count & kStopDisabledBit);
count            1625 src/mips/simulator-mips.cc     watched_stops[code].count &= ~kStopDisabledBit;
count            1632 src/mips/simulator-mips.cc     watched_stops[code].count |= kStopDisabledBit;
count            1639 src/mips/simulator-mips.cc   if ((watched_stops[code].count & ~(1 << 31)) == 0x7fffffff) {
count            1642 src/mips/simulator-mips.cc     watched_stops[code].count = 0;
count            1645 src/mips/simulator-mips.cc     watched_stops[code].count++;
count            1660 src/mips/simulator-mips.cc   int32_t count = watched_stops[code].count & ~kStopDisabledBit;
count            1662 src/mips/simulator-mips.cc   if (count != 0) {
count            1665 src/mips/simulator-mips.cc              code, code, state, count, watched_stops[code].desc);
count            1668 src/mips/simulator-mips.cc              code, code, state, count);
count             393 src/mips/simulator-mips.h     uint32_t count;
count            1267 src/objects-inl.h                                                 uint32_t count,
count            1276 src/objects-inl.h   for (uint32_t i = 0; i < count; ++i) {
count            2169 src/objects-inl.h   uint32_t count = 1;
count            2177 src/objects-inl.h     entry = NextProbe(entry, count++, capacity);
count            11024 src/objects.cc   uint32_t count = 1;
count            11040 src/objects.cc     entry = NextProbe(entry, count++, capacity);
count            11139 src/objects.cc   uint32_t count = 1;
count            11144 src/objects.cc     entry = NextProbe(entry, count++, capacity);
count            12784 src/objects.cc   int count = 0;
count            12789 src/objects.cc       count += break_point_info->GetBreakPointCount();
count            12792 src/objects.cc   return count;
count            1740 src/objects.h        uint32_t count,
count            4275 src/objects.h    inline void set_ic_age(int count);
count            5530 src/objects.h    inline void set_ast_node_count(int count);
count            6843 src/objects.h    inline void set_ic_total_count(int count);
count            6846 src/objects.h    inline void set_ic_with_type_info_count(int count);
count            6885 src/objects.h    inline void set_aliased_context_slot(int count);
count             392 src/parser.cc      int count = 0;
count             393 src/parser.cc      array[i] = ReadString(ReadAddress(pos), &count);
count             394 src/parser.cc      pos += count + 1;
count             520 src/platform-cygwin.cc   explicit CygwinSemaphore(int count) {  sem_init(&sem_, 0, count); }
count             579 src/platform-cygwin.cc   return new CygwinSemaphore(count);
count             594 src/platform-freebsd.cc   explicit FreeBSDSemaphore(int count) {  sem_init(&sem_, 0, count); }
count             644 src/platform-freebsd.cc   return new FreeBSDSemaphore(count);
count             839 src/platform-linux.cc   explicit LinuxSemaphore(int count) {  sem_init(&sem_, 0, count); }
count             903 src/platform-linux.cc   return new LinuxSemaphore(count);
count             685 src/platform-macos.cc     semaphore_create(mach_task_self(), &semaphore_, SYNC_POLICY_FIFO, count);
count             715 src/platform-macos.cc   return new MacOSSemaphore(count);
count             821 src/platform-macos.cc     mach_msg_type_number_t count = x86_THREAD_STATE64_COUNT;
count             830 src/platform-macos.cc     mach_msg_type_number_t count = i386_THREAD_STATE_COUNT;
count             843 src/platform-macos.cc                          &count) == KERN_SUCCESS) {
count             468 src/platform-nullos.cc   return new NullSemaphore(count);
count             651 src/platform-openbsd.cc   explicit OpenBSDSemaphore(int count) {  sem_init(&sem_, 0, count); }
count             713 src/platform-openbsd.cc   return new OpenBSDSemaphore(count);
count             576 src/platform-solaris.cc   explicit SolarisSemaphore(int count) {  sem_init(&sem_, 0, count); }
count             648 src/platform-solaris.cc   return new SolarisSemaphore(count);
count              85 src/platform-win32.cc   ASSERT(count == _TRUNCATE);
count              95 src/platform-win32.cc   if (count == _TRUNCATE) {
count             105 src/platform-win32.cc     while (dest_size > 0 && count > 0 && *source != 0) {
count             108 src/platform-win32.cc       --count;
count            1707 src/platform-win32.cc     sem = ::CreateSemaphoreA(NULL, count, 0x7fffffff, NULL);
count            1735 src/platform-win32.cc   return new Win32Semaphore(count);
count             239 src/platform.h   static Semaphore* CreateSemaphore(int count);
count            1397 src/profile-generator.cc     if (time_interval.count != entries_count ||
count            1401 src/profile-generator.cc           time_interval.count = entries_count,
count            2694 src/profile-generator.cc   const char** urls = NewArray<const char*>(enumerator.count());
count            2695 src/profile-generator.cc   for (int i = 0, l = enumerator.count(); i < l; ++i) {
count            2716 src/profile-generator.cc   for (int i = 0, l = enumerator.count(); i < l; ++i) {
count             678 src/profile-generator.h     explicit TimeInterval(SnapshotObjectId id) : id(id), size(0), count(0) { }
count             681 src/profile-generator.h     uint32_t count;
count            5119 src/runtime.cc   int count = 1;
count            5123 src/runtime.cc     count++;
count            5126 src/runtime.cc   return count;
count            10714 src/runtime.cc   int count = 0;
count            10717 src/runtime.cc     if (index < count + it.frame()->GetInlineCount()) break;
count            10718 src/runtime.cc     count += it.frame()->GetInlineCount();
count            10727 src/runtime.cc         it.frame()->GetInlineCount() - (index - count) - 1;
count            12367 src/runtime.cc   int count = 0;
count            12371 src/runtime.cc          (max_references == 0 || count < max_references)) {
count            12404 src/runtime.cc           if (instances != NULL && count < instances_size) {
count            12405 src/runtime.cc             instances->set(count, obj);
count            12408 src/runtime.cc           count++;
count            12418 src/runtime.cc   if (count == 1 && last == target) {
count            12419 src/runtime.cc     count = 0;
count            12423 src/runtime.cc   return count;
count            12458 src/runtime.cc   int count;
count            12460 src/runtime.cc   count = DebugReferencedBy(&heap_iterator,
count            12466 src/runtime.cc   { MaybeObject* maybe_object = isolate->heap()->AllocateFixedArray(count);
count            12475 src/runtime.cc   count = DebugReferencedBy(&heap_iterator2,
count            12477 src/runtime.cc                             instances, count, arguments_function);
count            12497 src/runtime.cc   int count = 0;
count            12500 src/runtime.cc          (max_references == 0 || count < max_references)) {
count            12507 src/runtime.cc         if (instances != NULL && count < instances_size) {
count            12508 src/runtime.cc           instances->set(count, obj);
count            12510 src/runtime.cc         count++;
count            12516 src/runtime.cc   return count;
count            12536 src/runtime.cc   int count;
count            12538 src/runtime.cc   count = DebugConstructedBy(&heap_iterator,
count            12546 src/runtime.cc   { MaybeObject* maybe_object = isolate->heap()->AllocateFixedArray(count);
count            12554 src/runtime.cc   count = DebugConstructedBy(&heap_iterator2,
count            12558 src/runtime.cc                              count);
count            12888 src/runtime.cc   int count = 0;
count            12891 src/runtime.cc     if (index < count + it.frame()->GetInlineCount()) break;
count            12892 src/runtime.cc     count += it.frame()->GetInlineCount();
count            13041 src/runtime.cc   CONVERT_SMI_ARG_CHECKED(count, 3);
count            13044 src/runtime.cc   return LiveObjectList::Dump(id1, id2, start, count, filter_obj);
count            13145 src/runtime.cc   CONVERT_SMI_ARG_CHECKED(count, 1);
count            13146 src/runtime.cc   return LiveObjectList::Info(start, count);
count             908 src/spaces.cc    int count = 0;
count             911 src/spaces.cc      count++;
count             913 src/spaces.cc    return count;
count            2371 src/spaces.cc        PrintF("   %-30s: %10d/%6d     (%d)\n", cs.comment, cs.size, cs.count,
count            2372 src/spaces.cc               cs.size/cs.count);
count            2389 src/spaces.cc    comments_statistics[CommentStatistic::kMaxComments].count = 0;
count            2415 src/spaces.cc    cs->count += 1;
count            2640 src/spaces.h     int count;
count            2644 src/spaces.h       count = 0;
count              57 src/utils.cc     for (int i = 0; i < count; i++) {
count             933 src/utils.h      void AddPadding(char c, int count);
count            4945 src/x64/code-stubs-x64.cc   __ decl(count);
count            4961 src/x64/code-stubs-x64.cc   ASSERT(count.is(rcx));  // rep movs count
count            4965 src/x64/code-stubs-x64.cc   __ testl(count, count);
count            4971 src/x64/code-stubs-x64.cc     __ addl(count, count);
count            4976 src/x64/code-stubs-x64.cc   __ testl(count, Immediate(~7));
count            4980 src/x64/code-stubs-x64.cc   __ movl(kScratchRegister, count);
count            4981 src/x64/code-stubs-x64.cc   __ shr(count, Immediate(3));  // Number of doublewords to copy.
count            4985 src/x64/code-stubs-x64.cc   __ movl(count, kScratchRegister);
count            4986 src/x64/code-stubs-x64.cc   __ and_(count, Immediate(7));
count            4990 src/x64/code-stubs-x64.cc   __ testl(count, count);
count            5000 src/x64/code-stubs-x64.cc   __ decl(count);
count             258 src/x64/code-stubs-x64.h                                      Register count,
count             267 src/x64/code-stubs-x64.h                                         Register count,    // Must be rcx.
count             241 src/x64/deoptimizer-x64.cc   int count = iterator.Next();
count             243 src/x64/deoptimizer-x64.cc   ASSERT(count == 1);
count             244 src/x64/deoptimizer-x64.cc   USE(count);
count             992 src/x64/deoptimizer-x64.cc   for (int i = 0; i < count(); i++) {
count             560 src/x64/disasm-x64.cc   int count;
count             564 src/x64/disasm-x64.cc       count = 1;
count             568 src/x64/disasm-x64.cc       count = 2;
count             572 src/x64/disasm-x64.cc       count = 4;
count             576 src/x64/disasm-x64.cc       count = 4;
count             581 src/x64/disasm-x64.cc       count = 0;
count             584 src/x64/disasm-x64.cc   return count;
count             680 src/x64/disasm-x64.cc   int count = PrintRightOperand(data + 1);
count             683 src/x64/disasm-x64.cc   count += PrintImmediate(data + 1 + count, immediate_size);
count             684 src/x64/disasm-x64.cc   return 1 + count;
count             722 src/x64/disasm-x64.cc     int count = PrintRightOperand(data + 1);  // Use name of 64-bit register.
count             724 src/x64/disasm-x64.cc     count += PrintImmediate(data + 1 + count, operand_size());
count             725 src/x64/disasm-x64.cc     return 1 + count;
count             893 src/x64/disasm-x64.cc   int count = PrintRightOperand(modrm_start);
count             894 src/x64/disasm-x64.cc   return count + 1;
count             558 src/x64/full-codegen-x64.cc   ASSERT(count > 0);
count             559 src/x64/full-codegen-x64.cc   __ Drop(count);
count             566 src/x64/full-codegen-x64.cc   ASSERT(count > 0);
count             567 src/x64/full-codegen-x64.cc   __ Drop(count);
count             574 src/x64/full-codegen-x64.cc   ASSERT(count > 0);
count             575 src/x64/full-codegen-x64.cc   if (count > 1) __ Drop(count - 1);
count             582 src/x64/full-codegen-x64.cc   ASSERT(count > 0);
count             584 src/x64/full-codegen-x64.cc   __ Drop(count);
count            3343 src/x64/full-codegen-x64.cc   ParameterCount count(arg_count);
count            3344 src/x64/full-codegen-x64.cc   __ InvokeFunction(rdi, count, CALL_FUNCTION,
count            2820 src/x64/lithium-codegen-x64.cc   __ Drop(instr->count());
count            2910 src/x64/lithium-codegen-x64.cc     ParameterCount count(arity);
count            2911 src/x64/lithium-codegen-x64.cc     __ InvokeFunction(function, count, CALL_FUNCTION, generator, call_kind);
count            3380 src/x64/lithium-codegen-x64.cc     ParameterCount count(instr->arity());
count            3381 src/x64/lithium-codegen-x64.cc     __ InvokeFunction(rdi, count, CALL_FUNCTION, generator, CALL_AS_METHOD);
count            1377 src/x64/lithium-x64.h   explicit LDrop(int count) : count_(count) { }
count            1379 src/x64/lithium-x64.h   int count() const { return count_; }
count             215 src/zone.h       INLINE(Vector<T> AddBlock(T value, int count, Zone* zone)) {
count             216 src/zone.h         return List<T, ZoneAllocationPolicy>::AddBlock(value, count,
count             144 test/cctest/cctest.h   static int count() { return count_; }
count             146 test/cctest/cctest.h     CHECK(i < count());
count            3136 test/cctest/test-api.cc   int count = args[0]->Int32Value();
count            3138 test/cctest/test-api.cc   if (count == 0) {
count            3143 test/cctest/test-api.cc     v8::Handle<Value> argv[] = { v8_num(count - 1),
count            3147 test/cctest/test-api.cc     if (count % cInterval == 0) {
count            3152 test/cctest/test-api.cc         CHECK_EQ(expected, count);
count            3156 test/cctest/test-api.cc         CHECK_NE(expected, count);
count            3170 test/cctest/test-api.cc   int count = args[1]->Int32Value();
count            3173 test/cctest/test-api.cc     CHECK_EQ(count, expected);
count            3175 test/cctest/test-api.cc     CHECK_NE(count, expected);
count            9372 test/cctest/test-api.cc   static int count = 0;
count            9373 test/cctest/test-api.cc   if (count++ % 3 == 0) {
count            10469 test/cctest/test-api.cc   int count = RegisterThreadedTest::count();
count            10470 test/cctest/test-api.cc   int start =  count * part / (LAST_PART + 1);
count            10471 test/cctest/test-api.cc   int end = (count * (part + 1) / (LAST_PART + 1)) - 1;
count            10521 test/cctest/test-api.cc   for (int i = 0; i < RegisterThreadedTest::count(); i++) {
count            10694 test/cctest/test-api.cc   int count = 0;
count            10697 test/cctest/test-api.cc     if (object->IsJSGlobalObject()) count++;
count            10698 test/cctest/test-api.cc   return count;
count            10710 test/cctest/test-api.cc   int count = GetGlobalObjectsCount();
count            10712 test/cctest/test-api.cc   if (count != expected) HEAP->TracePathToGlobal();
count            10714 test/cctest/test-api.cc   CHECK_EQ(expected, count);
count             389 test/cctest/test-debug.cc   int count = 0;
count             391 test/cctest/test-debug.cc     count++;
count             397 test/cctest/test-debug.cc       FACTORY->NewFixedArray(count);
count             400 test/cctest/test-debug.cc   count = 0;
count             402 test/cctest/test-debug.cc     debugged_functions->set(count++, *node->debug_info());
count              75 test/cctest/test-hashmap.cc     uint32_t count = 0;
count              77 test/cctest/test-hashmap.cc       count++;
count              79 test/cctest/test-hashmap.cc     CHECK_EQ(map_.occupancy(), static_cast<double>(count));
count              80 test/cctest/test-hashmap.cc     return count;
count              81 test/cctest/test-heap-profiler.cc   for (int i = 0, count = node->GetChildrenCount(); i < count; ++i) {
count              92 test/cctest/test-heap-profiler.cc   for (int i = 0, count = node->GetChildrenCount(); i < count; ++i) {
count             216 test/cctest/test-heap-profiler.cc   for (int i = 0, count = global->GetChildrenCount(); i < count; ++i) {
count             223 test/cctest/test-heap-profiler.cc   for (int i = 0, count = a->GetChildrenCount(); i < count; ++i) {
count             270 test/cctest/test-heap-profiler.cc   for (int i = 0, count = compiled_code->GetChildrenCount(); i < count; ++i) {
count             280 test/cctest/test-heap-profiler.cc   for (int i = 0, count = lazy_code->GetChildrenCount(); i < count; ++i) {
count             676 test/cctest/test-heap-profiler.cc       entries_count_ += buffer[i].count;
count             854 test/cctest/test-heap-profiler.cc   for (int i = 0, count = node->GetChildrenCount(); i < count; ++i) {
count            1034 test/cctest/test-heap-profiler.cc   for (int i = 0, count = parent->GetChildrenCount(); i < count; ++i) {
count            1160 test/cctest/test-heap-profiler.cc   for (int i = 0, count = obj1->GetChildrenCount(); i < count; ++i) {
count            1304 test/cctest/test-heap-profiler.cc   int count = 0;
count            1307 test/cctest/test-heap-profiler.cc       ++count;
count            1309 test/cctest/test-heap-profiler.cc   CHECK_EQ(1, count);
count             988 test/cctest/test-heap.cc   int count = 0;
count             991 test/cctest/test-heap.cc     count++;
count             994 test/cctest/test-heap.cc   return count;
count            1001 test/cctest/test-heap.cc   int count = 0;
count            1005 test/cctest/test-heap.cc     count++;
count            1008 test/cctest/test-heap.cc   return count;
count            1111 test/cctest/test-heap.cc   int count = 0;
count            1114 test/cctest/test-heap.cc     count++;
count            1115 test/cctest/test-heap.cc     if (count == n) HEAP->CollectAllGarbage(Heap::kNoGCFlags);
count            1119 test/cctest/test-heap.cc   return count;
count            1128 test/cctest/test-heap.cc   int count = 0;
count            1133 test/cctest/test-heap.cc     count++;
count            1134 test/cctest/test-heap.cc     if (count == n) HEAP->CollectAllGarbage(Heap::kNoGCFlags);
count            1138 test/cctest/test-heap.cc   return count;
count            1353 test/cctest/test-heap.cc   int count = 0;
count            1356 test/cctest/test-heap.cc     if (obj->IsGlobalObject()) count++;
count            1358 test/cctest/test-heap.cc   return count;
count              27 test/cctest/test-platform-linux.cc     int count = 0;
count              31 test/cctest/test-platform-linux.cc       count = busy_lock_counter;
count              34 test/cctest/test-platform-linux.cc     } while (count % 2 == rem && count < kLockCounterLimit);
count              35 test/cctest/test-platform-linux.cc     if (count >= kLockCounterLimit) break;
count              37 test/cctest/test-platform-linux.cc     CHECK_EQ(count, busy_lock_counter);
count              38 test/cctest/test-platform-linux.cc     CHECK(last_count == -1 || count == last_count + 1);
count              40 test/cctest/test-platform-linux.cc     last_count = count;
count              27 test/cctest/test-platform-nullos.cc     int count = 0;
count              31 test/cctest/test-platform-nullos.cc       count = busy_lock_counter;
count              34 test/cctest/test-platform-nullos.cc     } while (count % 2 == rem && count < kLockCounterLimit);
count              35 test/cctest/test-platform-nullos.cc     if (count >= kLockCounterLimit) break;
count              37 test/cctest/test-platform-nullos.cc     CHECK_EQ(count, busy_lock_counter);
count              38 test/cctest/test-platform-nullos.cc     CHECK(last_count == -1 || count == last_count + 1);
count              40 test/cctest/test-platform-nullos.cc     last_count = count;
count            1463 test/cctest/test-regexp.cc   int count = unibrow::Ecma262Canonicalize::Convert(c, '\0', canon, NULL);
count            1464 test/cctest/test-regexp.cc   if (count == 0) {
count            1467 test/cctest/test-regexp.cc     CHECK_EQ(1, count);
count            1505 test/cctest/test-regexp.cc   int count = unibrow::CanonicalizationRange::Convert(c, '\0', canon, NULL);
count            1506 test/cctest/test-regexp.cc   if (count == 0) {
count            1509 test/cctest/test-regexp.cc     CHECK_EQ(1, count);
count            1563 test/cctest/test-regexp.cc   int count = expected.length();
count            1565 test/cctest/test-regexp.cc       new(zone) ZoneList<CharacterRange>(count, zone);
count            1567 test/cctest/test-regexp.cc   CHECK_EQ(count, list->length());
count             453 tools/gcmole/gcmole.cc     return gc_.count() == 1 && !((raw ^ gc_).any());