Lines Matching refs:newp
332 struct db_option *newp; in parse_opt() local
349 newp = xmalloc (sizeof (*newp)); in parse_opt()
350 newp->dbid = arg[0]; in parse_opt()
351 newp->next = db_options; in parse_opt()
352 db_options = newp; in parse_opt()
542 struct dbentry *newp = xmalloc (sizeof (struct dbentry) + keylen); in process_input() local
543 newp->validx = nentry->idx; in process_input()
544 newp->hashval = __hash_string (key); in process_input()
545 memcpy (newp->str, key, keylen); in process_input()
547 struct dbentry **found = tsearch (newp, &last_database->entries, in process_input()
552 if (*found != newp) in process_input()
554 free (newp); in process_input()