Lines Matching refs:ref_buf
45 void *ref_buf;
950 zfree(&ptr->snapshot_refs[i].ref_buf);
967 void *ref_buf;
969 ref_buf = zalloc(ref_buf_size);
970 if (!ref_buf)
973 ptr->snapshot_refs[idx].ref_buf = ref_buf;
1048 static bool intel_pt_compare_ref(void *ref_buf, size_t ref_offset,
1061 return intel_pt_compare_buffers(ref_buf, ref_size, data, ref_offset,
1065 static void intel_pt_copy_ref(void *ref_buf, size_t ref_size, size_t buf_size,
1069 memcpy(ref_buf, data + head - ref_size, ref_size);
1071 memcpy(ref_buf, data, head);
1073 memcpy(ref_buf + head, data + buf_size - ref_size, ref_size);
1084 wrapped = intel_pt_compare_ref(ref->ref_buf, ref->ref_offset,
1088 intel_pt_copy_ref(ref->ref_buf, ptr->snapshot_ref_buf_size, mm->len,
1134 if (!ptr->snapshot_refs[idx].ref_buf) {