Home | History | Annotate | Download | only in raidframe

Lines Matching defs:bytesPerEU

304 	int     bytesPerEU = bytesPerSector / numRowInEncMatix;
307 int shortsPerEU = bytesPerEU / sizeof(short);
311 int longsPerEU = bytesPerEU / sizeof(long);
318 RF_ASSERT(bytesPerEU % sizeof(short) == 0);
321 RF_ASSERT(bytesPerEU % sizeof(long) == 0);
326 srcShortBuf1 = (short *) (srcSecbuf + S_index * bytesPerEU);
328 srcLongBuf1 = (long *) (srcSecbuf + S_index * bytesPerEU);
335 destShortBuf = (short *) (destSecbuf + indexInDest * bytesPerEU);
336 srcShortBuf2 = (short *) (srcSecbuf + indexInSrc * bytesPerEU);
350 destLongBuf = (long *) (destSecbuf + indexInDest * bytesPerEU);
351 srcLongBuf2 = (long *) (srcSecbuf + indexInSrc * bytesPerEU);
459 int bytesPerEU = bytesPerSector / numRowInEncMatix;
462 int shortsPerEU = bytesPerEU / sizeof(short);
468 RF_ASSERT(bytesPerEU % sizeof(short) == 0);
470 int longsPerEU = bytesPerEU / sizeof(long);
476 RF_ASSERT(bytesPerEU % sizeof(long) == 0);
478 P = RF_Malloc(bytesPerEU);
479 temp = RF_Malloc(bytesPerEU);
620 RF_Free((char *) P, bytesPerEU);
621 RF_Free((char *) temp, bytesPerEU);