Lines Matching refs:allocacc
2244 Unit *allocacc = NULL; /* -> allocated acc buffer, iff allocated */ in decAddOp() local
2518 allocacc = (Unit *) malloc (need * sizeof (Unit)); in decAddOp()
2519 if (allocacc == NULL) in decAddOp()
2524 acc = allocacc; in decAddOp()
2628 if (allocacc != NULL) in decAddOp()
2629 free (allocacc); /* drop any storage we used */ in decAddOp()
2715 Unit *allocacc = NULL; /* -> allocated buffer, iff allocated */ in decDivideOp() local
2933 allocacc = (Unit *) malloc (acclength * sizeof (Unit)); in decDivideOp()
2934 if (allocacc == NULL) in decDivideOp()
2939 acc = allocacc; /* use the allocated space */ in decDivideOp()
3400 if (allocacc != NULL) in decDivideOp()
3401 free (allocacc); /* .. */ in decDivideOp()
3437 Unit *allocacc = NULL; /* -> allocated buffer, iff allocated */ in decMultiplyOp() local
3514 allocacc = (Unit *) malloc (need * sizeof (Unit)); in decMultiplyOp()
3515 if (allocacc == NULL) in decMultiplyOp()
3520 acc = allocacc; /* use the allocated space */ in decMultiplyOp()
3580 if (allocacc != NULL) in decMultiplyOp()
3581 free (allocacc); /* drop any storage we used */ in decMultiplyOp()
4032 Unit *allocacc = NULL; /* -> allocated acc buffer, iff allocated */ in decUnitCompare() local
4073 allocacc = (Unit *) malloc (need * sizeof (Unit)); in decUnitCompare()
4074 if (allocacc == NULL) in decUnitCompare()
4076 acc = allocacc; in decUnitCompare()
4095 if (allocacc != NULL) in decUnitCompare()
4096 free (allocacc); /* drop any storage we used */ in decUnitCompare()