Lines Matching defs:count
71 size_t count, ostream* os) {
73 for (size_t i = 0; i != count; i++) {
89 void PrintBytesInObjectToImpl(const unsigned char* obj_bytes, size_t count,
92 *os << count << "-byte object <";
99 if (count < kThreshold) {
100 PrintByteSegmentInObjectTo(obj_bytes, 0, count, os);
105 const size_t resume_pos = (count - kChunkSize + 1) / 2 * 2;
106 PrintByteSegmentInObjectTo(obj_bytes, resume_pos, count - resume_pos, os);
130 void PrintBytesInObjectTo(const unsigned char* obj_bytes, size_t count,
132 PrintBytesInObjectToImpl(obj_bytes, count, os);