Searched refs:allocacc (Results 1 – 1 of 1) sorted by relevance
2244 Unit *allocacc = NULL; /* -> allocated acc buffer, iff allocated */ in decAddOp() local2518 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() local2933 allocacc = (Unit *) malloc (acclength * sizeof (Unit)); in decDivideOp()2934 if (allocacc == NULL) in decDivideOp()2939 acc = allocacc; /* use the allocated space */ in decDivideOp()[all …]