Symbol: strip
bin/csh/extern.h
202
Char *strip(Char *);
bin/csh/func.c
139
else if (eq((vv = strip(vv)), STRminus)) {
bin/csh/func.c
182
vp = adrof1(strip(p), &aliases);
bin/csh/func.c
193
set1(strip(p), saveblk(v), &aliases);
bin/csh/func.c
372
sp = cp = strip(*v);
bin/csh/func.c
643
cp = strip(Dfix1(aword));
bin/csh/func.c
953
*ep = strip(Strspl(name, cp));
bin/csh/func.c
960
blk[0] = strip(Strspl(cp, val));
bin/csh/glob.c
357
str = Strsave(strip(*vlp));
bin/csh/glob.c
424
return (strip(Strsave(str)));
bin/csh/glob.c
439
str = strip(vo[0]);
bin/csh/glob.c
446
return (strip(Strsave(str)));
bin/csh/glob.c
464
str = strip(*vl);
bin/csh/set.c
554
(void) strip(name);
games/hack/hack.pager.c
140
page_more(FILE *fp, int strip)
games/hack/hack.pager.c
147
while (fgets(bufr, CO, fp) && (!strip || *bufr == '\t') &&
games/hack/hack.pager.c
150
if (page_line(bufr+strip)) {
lib/libc/regex/engine.c
317
switch (OP(m->g->strip[es])) {
lib/libc/regex/engine.c
320
es += OPND(m->g->strip[es]);
lib/libc/regex/engine.c
323
while (OP(m->g->strip[es]) != O_CH)
lib/libc/regex/engine.c
324
es += OPND(m->g->strip[es]);
lib/libc/regex/engine.c
330
switch (OP(m->g->strip[ss])) {
lib/libc/regex/engine.c
426
esub = ss + OPND(m->g->strip[ss]) - 1;
lib/libc/regex/engine.c
427
assert(OP(m->g->strip[esub]) == OOR1);
lib/libc/regex/engine.c
432
assert(OP(m->g->strip[esub]) == OOR1);
lib/libc/regex/engine.c
434
assert(OP(m->g->strip[esub]) == OOR2);
lib/libc/regex/engine.c
436
esub += OPND(m->g->strip[esub]);
lib/libc/regex/engine.c
437
if (OP(m->g->strip[esub]) == OOR2)
lib/libc/regex/engine.c
440
assert(OP(m->g->strip[esub]) == O_CH);
lib/libc/regex/engine.c
454
i = OPND(m->g->strip[ss]);
lib/libc/regex/engine.c
459
i = OPND(m->g->strip[ss]);
lib/libc/regex/engine.c
499
switch (OP(s = m->g->strip[ss])) {
lib/libc/regex/engine.c
552
s = m->g->strip[ss];
lib/libc/regex/engine.c
556
} while (OP(s = m->g->strip[ss]) != O_CH);
lib/libc/regex/engine.c
572
s = m->g->strip[ss];
lib/libc/regex/engine.c
589
while (m->g->strip[ss] != SOP(O_BACK, i))
lib/libc/regex/engine.c
619
assert(OP(m->g->strip[esub]) == OOR1);
lib/libc/regex/engine.c
625
if (OP(m->g->strip[esub]) == O_CH)
lib/libc/regex/engine.c
628
assert(OP(m->g->strip[esub]) == OOR2);
lib/libc/regex/engine.c
630
esub += OPND(m->g->strip[esub]);
lib/libc/regex/engine.c
631
if (OP(m->g->strip[esub]) == OOR2)
lib/libc/regex/engine.c
634
assert(OP(m->g->strip[esub]) == O_CH);
lib/libc/regex/engine.c
863
s = g->strip[pc];
lib/libc/regex/engine.c
929
assert(OP(g->strip[pc+OPND(s)]) == OOR2);
lib/libc/regex/engine.c
935
OP(s = g->strip[pc+look]) != O_CH;
lib/libc/regex/engine.c
943
if (OP(g->strip[pc+OPND(s)]) != O_CH) {
lib/libc/regex/engine.c
944
assert(OP(g->strip[pc+OPND(s)]) == OOR2);
lib/libc/regex/regcomp.c
1164
(void) memcpy(p->strip + p->slen, p->strip + start, len * sizeof(sop));
lib/libc/regex/regcomp.c
1192
p->strip[p->slen++] = SOP(op, opnd);
lib/libc/regex/regcomp.c
1212
s = p->strip[sn];
lib/libc/regex/regcomp.c
1225
memmove((char *)&p->strip[pos+1], (char *)&p->strip[pos],
lib/libc/regex/regcomp.c
1227
p->strip[pos] = s;
lib/libc/regex/regcomp.c
1241
p->strip[pos] = OP(p->strip[pos]) | value;
lib/libc/regex/regcomp.c
1255
sp = reallocarray(p->strip, size, sizeof(sop));
lib/libc/regex/regcomp.c
1260
p->strip = sp;
lib/libc/regex/regcomp.c
1272
g->strip = reallocarray(p->strip, p->slen, sizeof(sop));
lib/libc/regex/regcomp.c
1273
if (g->strip == NULL) {
lib/libc/regex/regcomp.c
1275
g->strip = p->strip;
lib/libc/regex/regcomp.c
1305
scan = g->strip + 1;
lib/libc/regex/regcomp.c
1377
scan = g->strip + 1;
lib/libc/regex/regcomp.c
170
p->strip = reallocarray(NULL, p->ssize, sizeof(sop));
lib/libc/regex/regcomp.c
172
if (p->strip == NULL) {
lib/libc/regex/regcomp.c
538
assert(OP(p->strip[p->pbegin[i]]) == OLPAREN);
lib/libc/regex/regcomp.c
539
assert(OP(p->strip[p->pend[i]]) == ORPAREN);
lib/libc/regex/regcomp.c
59
sop *strip; /* malloced strip */
lib/libc/regex/regex2.h
137
sop *strip; /* malloced area for strip */
lib/libc/regex/regfree.c
63
free(g->strip);
regress/lib/libc/regex/debug.c
82
if (OP(g->strip[0]) != OEND)
regress/lib/libc/regex/debug.c
84
for (s = &g->strip[1]; !done; s++) {
sbin/unwind/libunbound/services/authzone.c
2997
int strip = qlabs - celabs -1;
sbin/unwind/libunbound/services/authzone.c
3001
if(strip>0)
sbin/unwind/libunbound/services/authzone.c
3002
dname_remove_labels(nx, nxlen, strip);
sbin/unwind/libunbound/validator/val_nsec.c
526
uint8_t* strip;
sbin/unwind/libunbound/validator/val_nsec.c
539
strip = qname;
sbin/unwind/libunbound/validator/val_nsec.c
541
dname_remove_labels(&strip, &striplen, labs);
sbin/unwind/libunbound/validator/val_nsec.c
546
memmove(buf+2, strip, striplen);
sbin/unwind/libunbound/validator/val_nsec3.c
983
int strip = dname_count_labels(qname) - dname_count_labels(ce) -1;
sbin/unwind/libunbound/validator/val_nsec3.c
986
if(strip>0)
sbin/unwind/libunbound/validator/val_nsec3.c
987
dname_remove_labels(nm, nmlen, strip);
sys/dev/ic/mfireg.h
582
uint64_t strip;
sys/dev/pci/if_aq_pci.c
2959
int strip;
sys/dev/pci/if_aq_pci.c
2983
strip = 1;
sys/dev/pci/if_aq_pci.c
2985
strip = 0;
sys/dev/pci/if_aq_pci.c
2988
RX_DMA_DESC_VLAN_STRIP, strip);
usr.bin/mg/tags.c
36
static char *strip(char *, size_t);
usr.bin/mg/tags.c
369
t->pat = strip(l, strlen(l));
usr.bin/spell/spellprog.c
140
{"laci", strip, 2, "", "+al"},
usr.bin/spell/spellprog.c
141
{"latnem", strip, 2, "", "+al"},
usr.bin/spell/spellprog.c
142
{"lanoi", strip, 2, "", "+al"},
usr.bin/spell/spellprog.c
143
{"tnem", strip, 4, "", "+ment"},
usr.bin/spell/spellprog.c
146
{"re", strip, 1, "", "+r", i_to_y, 2, "-y+ier", "+er"},
usr.bin/spell/spellprog.c
147
{"de", strip, 1, "", "+d", i_to_y, 2, "-y+ied", "+ed"},
usr.bin/spell/spellprog.c
148
{"citsi", strip, 2, "", "+ic"},
usr.bin/spell/spellprog.c
150
{"tse", strip, 2, "", "+st", i_to_y, 3, "-y+iest", "+est"},
usr.bin/spell/spellprog.c
165
{"pihs", strip, 4, "", "+ship"},
usr.bin/spell/spellprog.c
167
{"ekil", strip, 4, "", "+like"},
usr.bin/spell/spellprog.c
416
return (strip(ep, d, a, lev));
usr.bin/spell/spellprog.c
433
return (strip(ep ,"", d, lev));
usr.bin/spell/spellprog.c
442
if (strip(ep, "", d, lev))
usr.bin/spell/spellprog.c
455
return (strip(ep, d, a, lev));
usr.bin/spell/spellprog.c
465
return (strip(ep, d, a, lev));
usr.bin/spell/spellprog.c
484
return (strip(ep, "", a, lev));
usr.bin/spell/spellprog.c
503
return (strip(ep, d, a, lev));
usr.bin/spell/spellprog.c
513
return (strip(ep, d, a, lev));
usr.bin/spell/spellprog.c
589
return (strip(ep, d, a, lev));
usr.bin/spell/spellprog.c
97
int strip(char *, char *, char *, int);
usr.bin/ssh/sftp.c
358
path_strip(const char *path, const char *strip)
usr.bin/ssh/sftp.c
362
if (strip == NULL)
usr.bin/ssh/sftp.c
365
len = strlen(strip);
usr.bin/ssh/sftp.c
366
if (strncmp(path, strip, len) == 0) {
usr.bin/ssh/sftp.c
367
if (strip[len - 1] != '/' && path[len] == '/')
usr.bin/telnet/telnet.c
1660
c = *tbp++ & 0xff, sc = strip(c), tcc--; count++;
usr.bin/telnet/telnet.c
1701
if (tcc && strip(*tbp) == escape) {
usr.bin/telnet/telnet.c
1718
if (tcc > 0 && strip(*tbp) == echoc) {
usr.bin/xinstall/xinstall.c
273
strip(tempfile);
usr.bin/xinstall/xinstall.c
75
void strip(char *);
usr.sbin/httpd/httpd.h
519
int strip;
usr.sbin/httpd/parse.y
1014
srv->srv_conf.strip = $2;
usr.sbin/httpd/server_fcgi.c
175
stripped = server_root_strip(alias, srv_conf->strip);
usr.sbin/httpd/server_file.c
230
srv_conf->strip);
usr.sbin/httpd/server_file.c
506
stripped = server_root_strip(desc->http_path, srv_conf->strip);
usr.sbin/httpd/server_http.c
1555
path = server_root_strip(path, srv_conf->strip) + 1;
usr.sbin/relayd/parse.y
1567
char *strip = NULL;
usr.sbin/relayd/parse.y
1573
if (asprintf(&strip, "%lld", $3) <= 0)
usr.sbin/relayd/parse.y
1577
rule->rule_kv[keytype].kv_value = strip;
usr.sbin/smtpd/expand.c
235
subrcpt = strip(subrcpt);
usr.sbin/smtpd/mailaddr.c
81
subrcpt = strip(subrcpt);
usr.sbin/smtpd/makemap.c
400
subrcpt = strip(subrcpt);
usr.sbin/smtpd/smtpd.h
1716
char *strip(char *);
usr.sbin/unbound/services/authzone.c
2997
int strip = qlabs - celabs -1;
usr.sbin/unbound/services/authzone.c
3001
if(strip>0)
usr.sbin/unbound/services/authzone.c
3002
dname_remove_labels(nx, nxlen, strip);
usr.sbin/unbound/validator/val_nsec.c
526
uint8_t* strip;
usr.sbin/unbound/validator/val_nsec.c
539
strip = qname;
usr.sbin/unbound/validator/val_nsec.c
541
dname_remove_labels(&strip, &striplen, labs);
usr.sbin/unbound/validator/val_nsec.c
546
memmove(buf+2, strip, striplen);
usr.sbin/unbound/validator/val_nsec3.c
983
int strip = dname_count_labels(qname) - dname_count_labels(ce) -1;
usr.sbin/unbound/validator/val_nsec3.c
986
if(strip>0)
usr.sbin/unbound/validator/val_nsec3.c
987
dname_remove_labels(nm, nmlen, strip);