Home
last modified time | relevance | path

Searched refs:codep (Results 1 – 6 of 6) sorted by relevance

/original-bsd/old/roff/nroff/
H A Dn10.c123 register char *codep; in ptout1() local
143 codep = t.codetab[k-32]; in ptout1()
144 w = t.Char * (*codep++ & 0177); in ptout1()
147 if(*codep && (esc || lead))move(); in ptout1()
165 while(*codep != 0){ in ptout1()
166 if(*codep & 0200){ in ptout1()
167 codep = plot(codep); in ptout1()
176 oput(*codep); in ptout1()
179 *obufp++ = *codep++; in ptout1()
/original-bsd/local/ditroff/ditroff.okeeffe/troff/
H A Dn10.c317 register char *codep; in ptout1() local
392 codep = t.codetab[k-128]; in ptout1()
393 while (*codep != 0) { in ptout1()
394 if (*codep & 0200) { in ptout1()
395 codep = plot(codep); in ptout1()
398 if (*codep == '%') /* escape */ in ptout1()
399 codep++; in ptout1()
400 oput(*codep); in ptout1()
401 if (*codep != '\b') in ptout1()
404 oput(*codep); in ptout1()
[all …]
/original-bsd/local/ditroff/ditroff.okeeffe/
H A Dn10.c317 register char *codep; in ptout1() local
392 codep = t.codetab[k-128]; in ptout1()
393 while (*codep != 0) { in ptout1()
394 if (*codep & 0200) { in ptout1()
395 codep = plot(codep); in ptout1()
398 if (*codep == '%') /* escape */ in ptout1()
399 codep++; in ptout1()
400 oput(*codep); in ptout1()
401 if (*codep != '\b') in ptout1()
404 oput(*codep); in ptout1()
[all …]
/original-bsd/old/vfilters/vsort/
H A Dvsort.c85 char *codep; member
93 char *codep; variable
359 codep = tbuf; in startline()
390 linep->codep = allp; in termline()
440 *codep++ = code;
503 cp = linep->codep; in sendline()
524 cfree(linep->codep); in sendline()
542 ch = linep->codep[i] & 0377;
666 fprintf(stderr, "%o ", linep->codep[i] & 0377);
/original-bsd/old/ld/
H A Dld.c1410 char *codep; local
1417 codep = (char *)malloc(codesz);
1418 if (relp == 0 || codep == 0)
1422 mget(codep, codesz, &text);
1424 cp = codep + rp->r_address;
1533 bwrite(codep, codesz, b1);
1537 free(codep);
/original-bsd/lib/libc/gen/
H A Dctime.c134 static long detzcode P((const char * codep));
192 detzcode(codep) in detzcode() argument
193 const char * const codep; in detzcode()
200 result = (result << 8) | (codep[i] & 0xff);