Home
last modified time | relevance | path

Searched refs:alph (Results 1 – 14 of 14) sorted by relevance

/original-bsd/old/refer/mkey/
H A Dmkey2.c15 static int alph, used, prevc; variable
29 alph=used=prevc=eof=0;
38 used=alph=0;
48 used=alph=0;
126 if (alph++ < 6) in chkey()
152 alph=0; in chkey()
/original-bsd/old/refer/refer/
H A Drefer2.c24 int stat, nf, nr, query = 0, alph, digs; local
58 alph = digs = 0;
61 alph++;
67 if ((alph+digs < 3) || common(p-alph)) {
68 r = p-alph;
72 if (alph == 0 && digs > 0) {
80 alph = digs = 0;
H A Dglue4.c21 int c, oldc = 0, alph = 0, nv = 0; local
37 alph = (c==0) ? 0 : alph+1;
38 if (alph == 1)
40 if (alph > 6)
H A Drefer6.c166 int c, alph, this; local
169 alph = 0;
172 if (this && alph == 1) {
178 if (!this && alph > 1) {
187 alph = this ? alph+1 : 0;
189 if (alph > 1) {
/original-bsd/old/refer/NOTUSED/
H A Dthash.c65 int alph 0;
72 used=alph=0;
79 if (alph++ < 6)
90 alph=0;
/original-bsd/old/roff/common_source/
H A Dn8.c40 if (!alph(*--i))
43 while(alph(*i++))
74 if (!i || alph(i))
80 alph(i) in alph() function
177 if (!alph(i = *hyend & CMASK)) in suffix()
H A Dn4.c481 if(!alph(j=getch())){ in caseaf()
/original-bsd/games/morse/
H A Dmorse.c34 *alph[] = { variable
100 show(alph[c - (isupper(c) ? 'A' : 'a')]);
/original-bsd/usr.bin/pascal/pxp/
H A Drval.c24 #define alph(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) macro
135 if (alph(opname[0]))
/original-bsd/local/ditroff/ditroff.van/
H A Dn8.c29 if (!alph(cbits(*--i)))
32 while (alph(cbits(*i++)))
72 if (!i || alph(i)) in punct()
79 alph(i) in alph() function
225 if (!alph(cbits(i = cbits(*hyend)))) in suffix()
/original-bsd/local/ditroff/ditroff.okeeffe/troff/
H A Dn8.c29 if (!alph(cbits(*--i)))
32 while (alph(cbits(*i++)))
72 if (!i || alph(i)) in punct()
79 alph(i) in alph() function
225 if (!alph(cbits(i = cbits(*hyend)))) in suffix()
/original-bsd/local/ditroff/ditroff.okeeffe/
H A Dn8.c29 if (!alph(cbits(*--i)))
32 while (alph(cbits(*i++)))
72 if (!i || alph(i)) in punct()
79 alph(i) in alph() function
225 if (!alph(cbits(i = cbits(*hyend)))) in suffix()
/original-bsd/usr.bin/pascal/src/
H A Dyy.h42 #define alph(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) macro
H A Dyylex.c92 } while (alph(c) || digit(c)); in yylex()