Lines Matching refs:op
40 struct ppcontext* op; in ppcontext() local
44 if (!(op = pp.context)) op = pp.context = newof(0, struct ppcontext, 1, 0); in ppcontext()
45 memcpy(op, _PP_CONTEXT_BASE_, sizeof(struct ppcontext)); in ppcontext()
49 if (!(op = np)) op = (struct ppcontext*)_PP_CONTEXT_BASE_; in ppcontext()
50 if (op->filtab) hashfree(op->filtab); in ppcontext()
51 if (op->prdtab) hashfree(op->prdtab); in ppcontext()
52 if (op->symtab) hashfree(op->symtab); in ppcontext()
53 if (op->date) free(op->date); in ppcontext()
54 if (op->time) free(op->time); in ppcontext()
60 memzero(op, sizeof(struct ppcontext)); in ppcontext()
61 op = 0; in ppcontext()
64 return((void*)op); in ppcontext()