| /freebsd/contrib/ntp/scripts/ntpsweep/ |
| H A D | ntpsweep.in | 29 my ($showpeers, $maxlevel, $strip); 43 ($showpeers, $maxlevel, $strip) = 44 ($opts->{peers}, $opts->{maxlevel}, $opts->{strip}); 168 if ($strip) { 169 $printhost =~ s/$strip//; 186 $printhost =~ s/$strip// if $strip; 198 $printhost =~ s/$strip// if $strip;
|
| H A D | invoke-ntpsweep.texi | 27 * ntpsweep strip:: strip option (-s) 55 -s, --strip=str Strip this string from hostnames 93 @node ntpsweep strip 94 @subsection strip option (-s) 95 @cindex ntpsweep-strip 97 This is the ``strip this string from hostnames'' option.
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
| H A D | StripOpts.td | 8 HelpText<"Alias for --strip-all">; 9 def no_strip_all : Flag<["--"], "no-strip-all">, 10 HelpText<"Disable --strip-all">; 14 HelpText<"Alias for --strip-debug">; 17 HelpText<"Alias for --strip-debug">;
|
| H A D | CommonOpts.td | 44 def strip_all : Flag<["--"], "strip-all">, 50 : Flag<["--"], "strip-all-gnu">, 51 … HelpText<"Remove all symbols, debug sections and relocations. Compatible with GNU's --strip-all">; 53 def strip_debug : Flag<["--"], "strip-debug">, 57 HelpText<"Alias for --strip-debug">; 59 def strip_unneeded : Flag<["--"], "strip-unneeded">, 69 : Flag<["--"], "strip-sections">, 72 defm strip_symbol : Eq<"strip-symbol", "Strip <symbol>">, 76 HelpText<"Alias for --strip-symbol">; 131 "\"-N '*' -N '!x'\" will strip all symbols except for \"x\".">;
|
| /freebsd/contrib/lua/src/ |
| H A D | ldump.c | 27 int strip; member 160 n = (D->strip) ? 0 : f->sizelineinfo; in dumpDebug() 163 n = (D->strip) ? 0 : f->sizeabslineinfo; in dumpDebug() 169 n = (D->strip) ? 0 : f->sizelocvars; in dumpDebug() 176 n = (D->strip) ? 0 : f->sizeupvalues; in dumpDebug() 184 if (D->strip || f->source == psource) in dumpFunction() 218 int strip) { in luaU_dump() argument 223 D.strip = strip; in luaU_dump()
|
| /freebsd/lib/libc/regex/ |
| H A D | engine.c | 436 switch (OP(m->g->strip[es])) { in dissect() 439 es += OPND(m->g->strip[es]); in dissect() 442 while (OP(m->g->strip[es]) != (sop)O_CH) in dissect() 443 es += OPND(m->g->strip[es]); in dissect() 449 switch (OP(m->g->strip[ss])) { in dissect() 549 esub = ss + OPND(m->g->strip[ss]) - 1; in dissect() 550 assert(OP(m->g->strip[esub]) == OOR1); in dissect() 555 assert(OP(m->g->strip[esub]) == OOR1); in dissect() 557 assert(OP(m->g->strip[esub]) == OOR2); in dissect() 559 esub += OPND(m->g->strip[esub]); in dissect() [all …]
|
| H A D | regcomp.c | 88 sop *strip; /* malloced strip */ member 251 p->strip = (sop *)malloc(p->ssize * sizeof(sop)); in regcomp_internal() 253 if (p->strip == NULL) { in regcomp_internal() 510 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN); in p_ere_exp() 511 assert(OP(p->strip[p->pend[i]]) == ORPAREN); in p_ere_exp() 930 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN); in p_simp_re() 931 assert(OP(p->strip[p->pend[i]]) == ORPAREN); in p_simp_re() 1728 (void) memcpy((char *)(p->strip + p->slen), 1729 (char *)(p->strip + start), (size_t)len*sizeof(sop)); 1758 p->strip[p->slen++] = SOP(op, opnd); [all …]
|
| /freebsd/crypto/openssh/ |
| H A D | logintest.c | 223 char full[17], strip[9], abbrev[5]; in testLineName() local 226 memset(strip, '\0', sizeof(strip)); in testLineName() 230 line_stripname(strip, full, sizeof(strip)-1); in testLineName() 232 printf("%s: %s, %s, %s\n", line, full, strip, abbrev); in testLineName()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | regcomp.c | 190 sop *strip; /* malloced strip */ member 317 p->strip = (sop *)calloc(p->ssize, sizeof(sop)); in llvm_regcomp() 319 if (p->strip == NULL) { in llvm_regcomp() 520 assert(OP(p->strip[p->pbegin[backrefnum]]) == OLPAREN); in p_ere_exp() 521 assert(OP(p->strip[p->pend[backrefnum]]) == ORPAREN); in p_ere_exp() 715 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN); in p_simp_re() 716 assert(OP(p->strip[p->pend[i]]) == ORPAREN); in p_simp_re() 1411 (void)memmove((char *)(p->strip + p->slen), (char *)(p->strip + start), in dupl() 1438 p->strip[p->slen++] = SOP(op, opnd); in doemit() 1456 s = p->strip[sn]; in doinsert() [all …]
|
| H A D | regengine.inc | 294 /* Step back from "stop" to a position where the strip startst..stopst might 305 /* Check whether the strip startst..stropst starts with a fixed character, 310 if (OP(g->strip[startst]) != ORPAREN) 314 if (OP(g->strip[startst]) != OCHAR) 318 char ch = OPND(g->strip[startst]); 324 if (nextst >= stopst || OP(g->strip[nextst]) != OCHAR || next >= stop || 325 *next == (char)OPND(g->strip[nextst])) 357 switch (OP(m->g->strip[es])) { 360 es += OPND(m->g->strip[es]); 363 while (OP(m->g->strip[es]) != O_CH) [all …]
|
| /freebsd/contrib/nvi/regex/ |
| H A D | engine.c | 314 switch (m->g->strip[es]) { in dissect() 320 while (m->g->strip[es] != O_CH) in dissect() 327 switch (m->g->strip[ss]) { in dissect() 424 assert(m->g->strip[esub] == OOR1); in dissect() 429 assert(m->g->strip[esub] == OOR1); in dissect() 431 assert(m->g->strip[esub] == OOR2); in dissect() 434 if (m->g->strip[esub] == OOR2) in dissect() 437 assert(m->g->strip[esub] == O_CH); in dissect() 497 s = m->g->strip[ss]; in backref() 555 s = m->g->strip[ss]; in backref() [all …]
|
| H A D | regcomp.c | 64 sop *strip; /* malloced strip */ member 210 p->strip = (sop *)malloc(p->ssize * sizeof(sop)); in regcomp() 211 if (p->strip == NULL) { in regcomp() 217 free((char *)p->strip); in regcomp() 600 assert(p->strip[p->pbegin[i]] == OLPAREN); in p_simp_re() 601 assert(p->strip[p->pend[i]] == ORPAREN); in p_simp_re() 1355 (void) memcpy((char *)(p->strip + p->slen), in dupl() 1356 (char *)(p->strip + start), (size_t)len*sizeof(sop)); in dupl() 1386 p->strip[p->slen] = op; in doemit() 1409 s = p->strip[sn]; in doinsert() [all …]
|
| /freebsd/contrib/bmake/mk/ |
| H A D | install-sh | 77 strip=: 101 -s) strip=${STRIP:-strip};; 130 $strip $1 || Err s
|
| /freebsd/contrib/bmake/ |
| H A D | install-sh | 77 strip=: 101 -s) strip=${STRIP:-strip};; 130 $strip $1 || Err s
|
| /freebsd/crypto/krb5/src/util/ |
| H A D | krb5-check-copyright.py | 78 line = line.strip() 82 comment = [comment_part.strip()] 89 comment.append(comment_part.strip()) 94 elif line.strip() != '':
|
| /freebsd/sys/contrib/openzfs/.github/workflows/scripts/ |
| H A D | generate-ci-type.py | 93 if line.strip().lower() == 'zfs-ci-type: quick': 108 if line.strip().lower() == 'zfs-ci-type: freebsd': 111 if line.strip().lower() == 'zfs-ci-type: linux': 114 if line.strip().lower() == 'zfs-ci-type: full':
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-cxxfilt/ |
| H A D | Opts.td | 19 defm strip_underscore : BB<"strip-underscore", "Strip the leading underscore", "Don't strip the lea… 27 def : F<"_", "Alias for --strip-underscore">, Alias<strip_underscore>; 29 def : F<"n", "Alias for --no-strip-underscore">, Alias<no_strip_underscore>;
|
| /freebsd/contrib/elftoolchain/elfcopy/ |
| H A D | Makefile | 29 MAN= elfcopy.1 mcs.1 strip.1 36 ${BINDIR}/elfcopy ${BINDIR}/strip 38 EXTRA_TARGETS= mcs strip objcopy
|
| /freebsd/contrib/sendmail/cf/mailer/ |
| H A D | uucp.m4 | 40 R$* < @ $* . > $* $1 < @ $2 > $3 strip trailing dots 41 R$* < @ $=w > $1 strip local name 59 R$* < @ $* . > $* $1 < @ $2 > $3 strip trailing dots 60 R$* < @ $=w > $1 strip local name 74 R$* < @ $* . > $* $1 < @ $2 > $3 strip trailing dots 75 R$* < @ $=w > $1 strip local name 109 R$* < @ $* . > $* $1 < @ $2 > $3 strip trailing dots
|
| /freebsd/usr.bin/clang/toolchain/ |
| H A D | Makefile | 20 SYMLINKS+= llvm-strip ${BINDIR}/strip 22 MLINKS+= llvm-objcopy.1 strip.1
|
| /freebsd/tests/sys/opencrypto/ |
| H A D | cryptodev.py | 385 if not i.startswith('#') and i.strip(): 399 line = line.strip() 423 v = v.strip() 428 line = self.fp.readline().strip() 465 if line[0] == '#' or not line.strip(): 477 v = v.strip() 495 if line[0] == '#' or not line.strip(): 511 v = v.strip() 530 if (line and line[0] == '#') or not line.strip(): 546 v = v.strip() [all …]
|
| /freebsd/contrib/tcsh/ |
| H A D | tw.comp.c | 67 vp = adrof1(strip(p), &completions); in docomplete() 73 xprintf("tw_find(%s) \n", short2str(strip(p))); in docomplete() 75 pp = tw_find(strip(p), &completions, FALSE); in docomplete() 81 set1(strip(p), saveblk(v), &completions, VAR_READWRITE); in docomplete() 345 (void) strip(res); in tw_result() 352 (void) strip(res); in tw_result() 389 (void) strip(res); in tw_result()
|
| /freebsd/sys/contrib/device-tree/scripts/ |
| H A D | Kbuild.include | 77 if (which $(strip $(c))$(CC)) > /dev/null 2>&1 ; then \ 128 …$(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) -W$(strip $(1)) -c -x c /dev/null -o "$$TMP",-Wno-$(stri… 202 arg-check = $(strip $(filter-out $(cmd_$(1)), $(cmd_$@)) \ 205 arg-check = $(if $(strip $(cmd_$@)),,1) 220 if_changed = $(if $(strip $(any-prereq) $(arg-check)), \ 226 if_changed_dep = $(if $(strip $(any-prereq) $(arg-check) ), \ 236 if_changed_rule = $(if $(strip $(any-prereq) $(arg-check) ), \ 263 $(if $(strip $(any-prereq)),- due to: $(any-prereq), \ 277 echo-why = $(call escsq, $(strip $(why)))
|
| /freebsd/sys/contrib/libsodium/packaging/dotnet-core/recipes/ |
| H A D | build | 8 strip --strip-all /usr/local/lib/libsodium.so
|
| /freebsd/crypto/libecc/support/meson/ |
| H A D | armv7em-noneabi.ini | 15 strip = cross_compile + 'strip' key
|