Home | History | Annotate | Download | only in vboxvideo

Lines Matching refs:checksum

37 /* Not really a checksum but that is the naming used in all vbox code */
42 u32 checksum;
44 checksum = hgsmi_hash_process(0, (u8 *)&offset, sizeof(offset));
45 checksum = hgsmi_hash_process(checksum, (u8 *)header, sizeof(*header));
46 /* 4 -> Do not checksum the checksum itself */
47 checksum = hgsmi_hash_process(checksum, (u8 *)tail, 4);
49 return hgsmi_hash_end(checksum);
74 t->checksum = hgsmi_checksum(offset, h, t);