Lines Matching refs:retcode
415 int i, retcode; in rf_RegularXorFunc() local
417 retcode = 0; in rf_RegularXorFunc()
425 retcode = rf_XorIntoBuffer(raidPtr, (RF_PhysDiskAddr_t *) node->params[i].p, in rf_RegularXorFunc()
434 rf_GenericWakeupFunc(node, retcode); /* call wake func in rf_RegularXorFunc()
443 int i, retcode = 0; in rf_SimpleXorFunc() local
456 retcode = rf_bxor((char *) node->params[i + 1].p, (char *) node->results[0], in rf_SimpleXorFunc()
465 rf_GenericWakeupFunc(node, retcode); /* call wake func in rf_SimpleXorFunc()
482 int i, retcode = 0; in rf_RecoveryXorFunc() local
501 retcode = rf_bxor(srcbuf, destbuf, rf_RaidAddressToByte(raidPtr, pda->numSector)); in rf_RecoveryXorFunc()
509 rf_GenericWakeupFunc(node, retcode); in rf_RecoveryXorFunc()
533 int length, retcode = 0; in rf_XorIntoBuffer() local
539 retcode = rf_bxor(srcbuf, targptr, length); in rf_XorIntoBuffer()
540 return (retcode); in rf_XorIntoBuffer()
550 unsigned mask = sizeof(long) - 1, retcode = 0; in rf_bxor() local
554 retcode = rf_longword_bxor((unsigned long *) src, in rf_bxor()
560 return (retcode); in rf_bxor()