Lines Matching refs:off
39 size_t gcov_store_uint32(void *buffer, size_t off, uint32_t v) in gcov_store_uint32() argument
45 data = buffer + off; in gcov_store_uint32()
64 size_t gcov_store_uint64(void *buffer, size_t off, uint64_t v) in gcov_store_uint64() argument
70 data = buffer + off; in gcov_store_uint64()
86 uint32_t *off) in gcov_info_dump_payload() argument
109 if ( copy_to_guest_offset(buffer, *off, buf, buf_size) ) in gcov_info_dump_payload()
114 *off += buf_size; in gcov_info_dump_payload()
153 uint32_t *off) in gcov_dump_one_record() argument
160 if ( copy_to_guest_offset(buffer, *off, gcov_info_filename(info), len) ) in gcov_dump_one_record()
162 *off += len; in gcov_dump_one_record()
166 if ( copy_to_guest_offset(buffer, *off, (char*)&payload_size, in gcov_dump_one_record()
169 *off += sizeof(uint32_t); in gcov_dump_one_record()
172 return gcov_info_dump_payload(info, buffer, off); in gcov_dump_one_record()
178 uint32_t off; in gcov_dump_all() local
189 off = 0; in gcov_dump_all()
192 if ( copy_to_guest_offset(buffer, off, (char *)&magic, sizeof(magic)) ) in gcov_dump_all()
197 off += sizeof(magic); in gcov_dump_all()
201 ret = gcov_dump_one_record(info, buffer, &off); in gcov_dump_all()
206 *buffer_size = off; in gcov_dump_all()