Symbol: strip
bin/csh/csh.h
501
#define short2str(a) strip(a)
bin/csh/extern.h
223
Char *strip(Char *);
bin/csh/func.c
1030
*ep = strip(Strspl(name, cp));
bin/csh/func.c
1037
blk[0] = strip(Strspl(cp, val));
bin/csh/func.c
154
else if (eq((vv = strip(vv)), STRminus)) {
bin/csh/func.c
200
vp = adrof1(strip(p), &aliases);
bin/csh/func.c
211
set1(strip(p), saveblk(v), &aliases);
bin/csh/func.c
400
sp = cp = strip(*v);
bin/csh/func.c
621
cp = strip(Dfix1(aword));
bin/csh/glob.c
360
str = Strsave(strip(*vlp));
bin/csh/glob.c
430
return (strip(Strsave(str)));
bin/csh/glob.c
445
str = strip(vo[0]);
bin/csh/glob.c
452
return (strip(Strsave(str)));
bin/csh/glob.c
470
str = strip(*vl);
bin/csh/set.c
681
(void) strip(name);
games/hack/hack.pager.c
147
page_more(FILE *fp, int strip)
games/hack/hack.pager.c
155
while (fgets(bufr, CO - 1, fp) && (!strip || *bufr == '\t') && !got_intrup) {
games/hack/hack.pager.c
159
if (page_line(bufr + strip)) {
lib/libc/regex/engine.c
1053
s = g->strip[pc];
lib/libc/regex/engine.c
1135
assert(OP(g->strip[pc+OPND(s)]) == OOR2);
lib/libc/regex/engine.c
1141
OP(s = g->strip[pc+look]) != O_CH;
lib/libc/regex/engine.c
1149
if (OP(g->strip[pc+OPND(s)]) != O_CH) {
lib/libc/regex/engine.c
1150
assert(OP(g->strip[pc+OPND(s)]) == OOR2);
lib/libc/regex/engine.c
462
switch (OP(m->g->strip[es])) {
lib/libc/regex/engine.c
465
es += OPND(m->g->strip[es]);
lib/libc/regex/engine.c
468
while (OP(m->g->strip[es]) != O_CH)
lib/libc/regex/engine.c
469
es += OPND(m->g->strip[es]);
lib/libc/regex/engine.c
475
switch (OP(m->g->strip[ss])) {
lib/libc/regex/engine.c
577
esub = ss + OPND(m->g->strip[ss]) - 1;
lib/libc/regex/engine.c
578
assert(OP(m->g->strip[esub]) == OOR1);
lib/libc/regex/engine.c
583
assert(OP(m->g->strip[esub]) == OOR1);
lib/libc/regex/engine.c
585
assert(OP(m->g->strip[esub]) == OOR2);
lib/libc/regex/engine.c
587
esub += OPND(m->g->strip[esub]);
lib/libc/regex/engine.c
588
if (OP(m->g->strip[esub]) == OOR2)
lib/libc/regex/engine.c
591
assert(OP(m->g->strip[esub]) == O_CH);
lib/libc/regex/engine.c
605
i = OPND(m->g->strip[ss]);
lib/libc/regex/engine.c
610
i = OPND(m->g->strip[ss]);
lib/libc/regex/engine.c
674
switch (OP(s = m->g->strip[ss])) {
lib/libc/regex/engine.c
759
s = m->g->strip[ss];
lib/libc/regex/engine.c
763
} while (OP(s = m->g->strip[ss]) != O_CH);
lib/libc/regex/engine.c
779
s = m->g->strip[ss];
lib/libc/regex/engine.c
796
while (m->g->strip[ss] != SOP(O_BACK, i))
lib/libc/regex/engine.c
822
assert(OP(m->g->strip[esub]) == OOR1);
lib/libc/regex/engine.c
828
if (OP(m->g->strip[esub]) == O_CH)
lib/libc/regex/engine.c
831
assert(OP(m->g->strip[esub]) == OOR2);
lib/libc/regex/engine.c
833
esub += OPND(m->g->strip[esub]);
lib/libc/regex/engine.c
834
if (OP(m->g->strip[esub]) == OOR2)
lib/libc/regex/engine.c
837
assert(OP(m->g->strip[esub]) == O_CH);
lib/libc/regex/regcomp.c
1009
assert(OP(p->strip[p->pbegin[i]]) == OLPAREN);
lib/libc/regex/regcomp.c
1010
assert(OP(p->strip[p->pend[i]]) == ORPAREN);
lib/libc/regex/regcomp.c
110
sop *strip; /* malloced strip */
lib/libc/regex/regcomp.c
1858
(void) memcpy(p->strip + p->slen,
lib/libc/regex/regcomp.c
1859
p->strip + start, len * sizeof(*p->strip));
lib/libc/regex/regcomp.c
1890
p->strip[p->slen++] = (sopno)SOP(op, opnd);
lib/libc/regex/regcomp.c
1913
s = p->strip[sn];
lib/libc/regex/regcomp.c
1926
memmove(&p->strip[pos+1], &p->strip[pos],
lib/libc/regex/regcomp.c
1927
(HERE()-pos-1)*sizeof(*p->strip));
lib/libc/regex/regcomp.c
1928
p->strip[pos] = s;
lib/libc/regex/regcomp.c
1946
p->strip[pos] = OP(p->strip[pos]) | value;
lib/libc/regex/regcomp.c
1963
sp = reallocarray(p->strip, size, sizeof(*p->strip));
lib/libc/regex/regcomp.c
1968
p->strip = sp;
lib/libc/regex/regcomp.c
1985
g->strip = reallocarray(p->strip, p->slen, sizeof(*p->strip));
lib/libc/regex/regcomp.c
1986
if (g->strip == NULL) {
lib/libc/regex/regcomp.c
1988
g->strip = p->strip;
lib/libc/regex/regcomp.c
2036
scan = g->strip + 1;
lib/libc/regex/regcomp.c
2413
scan = g->strip + 1;
lib/libc/regex/regcomp.c
312
maxlen = ((size_t)-1 >> 1) / sizeof(*p->strip) * 2 / 3;
lib/libc/regex/regcomp.c
320
p->strip = calloc(p->ssize, sizeof(*p->strip));
lib/libc/regex/regcomp.c
322
if (p->strip == NULL) {
lib/libc/regex/regcomp.c
584
assert(OP(p->strip[p->pbegin[i]]) == OLPAREN);
lib/libc/regex/regcomp.c
585
assert(OP(p->strip[p->pend[i]]) == ORPAREN);
lib/libc/regex/regex2.h
178
sop *strip; /* malloced area for strip */
lib/libc/regex/regfree.c
87
if (g->strip != NULL)
lib/libc/regex/regfree.c
88
free(g->strip);
sys/dev/ic/mfireg.h
690
uint64_t strip;
tests/lib/libc/regex/debug.c
111
if (OP(g->strip[0]) != OEND)
tests/lib/libc/regex/debug.c
113
for (s = &g->strip[1]; !done; s++) {
usr.bin/spell/spellprog/spellprog.c
129
static int strip(char *, const char *, const char *, size_t);
usr.bin/spell/spellprog/spellprog.c
179
{ .suf = "laci", .p1 = strip, .n1 = 2,
usr.bin/spell/spellprog/spellprog.c
181
{ .suf = "latnem", .p1 = strip, .n1 = 2,
usr.bin/spell/spellprog/spellprog.c
183
{ .suf = "lanoi", .p1 = strip, .n1 = 2,
usr.bin/spell/spellprog/spellprog.c
185
{ .suf = "tnem", .p1 = strip, .n1 = 4,
usr.bin/spell/spellprog/spellprog.c
191
{ .suf = "re", .p1 = strip, .n1 = 1,
usr.bin/spell/spellprog/spellprog.c
194
{ .suf = "de", .p1 = strip, .n1 = 1,
usr.bin/spell/spellprog/spellprog.c
197
{ .suf = "citsi", .p1 = strip, .n1 = 2,
usr.bin/spell/spellprog/spellprog.c
201
{ .suf = "tse", .p1 = strip, .n1 = 2,
usr.bin/spell/spellprog/spellprog.c
232
{ .suf = "pihs", .p1 = strip, .n1 = 4,
usr.bin/spell/spellprog/spellprog.c
236
{ .suf = "ekil", .p1 = strip, .n1 = 4,
usr.bin/spell/spellprog/spellprog.c
491
return strip(ep, d, a, lev);
usr.bin/spell/spellprog/spellprog.c
510
return strip(ep ,"", d, lev);
usr.bin/spell/spellprog/spellprog.c
520
if (strip(ep, "", d, lev))
usr.bin/spell/spellprog/spellprog.c
533
return strip(ep, d, a, lev);
usr.bin/spell/spellprog/spellprog.c
543
return strip(ep, d, a, lev);
usr.bin/spell/spellprog/spellprog.c
562
return strip(ep, "", a, lev);
usr.bin/spell/spellprog/spellprog.c
581
return strip(ep, d, a, lev);
usr.bin/spell/spellprog/spellprog.c
591
return strip(ep, d, a, lev);
usr.bin/spell/spellprog/spellprog.c
670
return strip(ep, d, a, lev);
usr.bin/telnet/telnet.c
1868
c = *tbp++ & 0xff, sc = strip(c), tcc--; count++;
usr.bin/telnet/telnet.c
1909
if (tcc && strip(*tbp) == escape) {
usr.bin/telnet/telnet.c
1926
if (tcc > 0 && strip(*tbp) == echoc) {
usr.bin/xinstall/xinstall.c
172
static void strip(const char *);
usr.bin/xinstall/xinstall.c
769
strip(to_name);