Home
last modified time | relevance | path

Searched refs:tblp (Results 1 – 4 of 4) sorted by relevance

/original-bsd/local/ditroff/ditroff.okeeffe/eqn/
H A Dlookup.c188 tbl *lookup(tblp, name, defn) /* find name in tbl. if defn non-null, install */ in lookup() argument
189 tbl **tblp; in lookup()
200 for (p = tblp[h]; p != NULL; p = p->next)
214 p->next = tblp[h];
215 tblp[h] = p;
/original-bsd/old/eqn/common_source/
H A Dlookup.c195 tbl *lookup(tblp, name, defn) /* find name in tbl. if defn non-null, install */ in lookup() argument
196 tbl **tblp; in lookup()
208 for (p = tblp[h]; p != NULL; p = p->next)
222 p->next = tblp[h];
223 tblp[h] = p;
/original-bsd/bin/sh/
H A Dexec.c600 struct tblentry **tblp; local
605 for (tblp = cmdtable ; tblp < &cmdtable[CMDTABLESIZE] ; tblp++) {
606 pp = tblp;
637 struct tblentry **tblp; in deletefuncs() local
642 for (tblp = cmdtable ; tblp < &cmdtable[CMDTABLESIZE] ; tblp++) { in deletefuncs()
643 pp = tblp; in deletefuncs()
/original-bsd/contrib/sc/
H A Dlex.c81 register struct key *tblp; in yylex() local
111 for (tblp = linelim ? experres : statres; tblp->key; tblp++) in yylex()
112 if (((tblp->key[0]^tokenst[0])&0137)==0 in yylex()
113 && tblp->key[tokenl]==0) { in yylex()
115 while (i<tokenl && ((tokenst[i]^tblp->key[i])&0137)==0) in yylex()
118 ret = tblp->val; in yylex()