Home | History | Annotate | Download | only in fec

Lines Matching refs:fec_header

225     assert(sizeof(fec_header) <= FEC_BLOCKSIZE);
228 fec_header *p = (fec_header *)header;
244 if (p->size != sizeof(fec_header)) {
293 assert(2 * sizeof(fec_header) <= FEC_BLOCKSIZE);
297 fec_header *f = (fec_header *)header;
301 f->size = sizeof(fec_header);
308 /* store a copy of the fec_header at the end of the header block */
309 memcpy(&header[sizeof(header) - sizeof(fec_header)], header,
310 sizeof(fec_header));