Searched refs:vv (Results 1 - 21 of 21) sorted by relevance

/freebsd-11.0-release/crypto/openssl/crypto/conf/
H A Dconf_api.c83 CONF_VALUE *v, vv; local
87 vv.name = NULL;
88 vv.section = (char *)section;
89 v = lh_CONF_VALUE_retrieve(conf->data, &vv);
131 CONF_VALUE *v, vv; local
138 vv.name = (char *)name;
139 vv.section = (char *)section;
140 v = lh_CONF_VALUE_retrieve(conf->data, &vv);
149 vv.section = "default";
150 vv
252 CONF_VALUE *vv; local
277 CONF_VALUE *v = NULL, *vv; local
[all...]
H A Dconf_def.c397 vv = (CONF_VALUE *)lh_insert(conf->data, v);
398 if (vv != NULL) {
399 sk_CONF_VALUE_delete_ptr(ts, vv);
400 OPENSSL_free(vv->name);
401 OPENSSL_free(vv->value);
402 OPENSSL_free(vv);
/freebsd-11.0-release/tools/tools/shlib-compat/test/
H A Dregress.sh4 run() { ../shlib-compat.py --no-dump -vv libtest$1/libtest$1.so.0.full libtest$2/libtest$2.so.0.full; }
H A DMakefile19 echo 'run() { ../shlib-compat.py --no-dump -vv libtest$$1/libtest$$1.so.0 libtest$$2/libtest$$2.so.0; }' > ${.TARGET}
27 for a in `jot ${NUMTEST}`; do for b in `jot ${NUMTEST}`; do ../shlib-compat.py -vv libtest$$a/libtest$$a.so.0 libtest$$b/libtest$$b.so.0 > regress.$$a-$$b.out; done; done
/freebsd-11.0-release/sbin/iscontrol/
H A Discontrol.c135 main(int cc, char **vv) argument
146 pname = vv[0];
173 while((ch = getopt(cc, vv, OPTIONS)) != -1) {
207 vv += optind;
210 printf("adding '%s'\n", *vv);
211 parseArgs(cc, vv, op);
H A Dauth_subr.c180 main(int cc, char **vv) argument
/freebsd-11.0-release/contrib/opie/
H A Dpopen.c110 char **pop, *argv[MAXUSRARGS], *gargv[MAXGLOBARGS], *vv[2]; local
130 vv[0] = argv[argc];
131 vv[1] = NULL;
132 pop = (char **) copyblk(vv);
H A Dglob.c645 char *vv[2]; local
647 vv[0] = v;
648 vv[1] = 0;
650 rscan(vv, tglob);
652 vv[0] = strspl(v, "");
653 return (copyblk(vv));
/freebsd-11.0-release/usr.sbin/cron/cron/
H A Dpopen.c73 char **pop, *vv[2]; local
102 vv[0] = argv[argc];
103 vv[1] = NULL;
104 pop = copyblk(vv);
/freebsd-11.0-release/contrib/gcc/
H A Dlibgcc2.c300 const DWunion vv = {.ll = v};
305 if (__builtin_expect (vv.s.high == vv.s.low >> (W_TYPE_SIZE - 1), 1))
309 return (DWtype) uu.s.low * (DWtype) vv.s.low;
315 * (UDWtype) (UWtype) vv.s.low};
317 * (UDWtype) (UWtype) vv.s.high};
319 if (vv.s.high < 0)
322 w1.ll -= vv.ll;
333 if (__builtin_expect (vv.s.high == vv
290 const DWunion vv = {.ll = v}; local
559 const DWunion vv = {.ll = v}; local
1087 DWunion vv = {.ll = v}; local
1111 DWunion vv = {.ll = v}; local
[all...]
/freebsd-11.0-release/release/scripts/
H A Dpkg-stage.sh77 ${PKGCMD} -vv
/freebsd-11.0-release/contrib/bmake/
H A Dos.sh237 eval vv=\$$v
238 echo "$v='$vv'"
/freebsd-11.0-release/contrib/tcsh/
H A Dsh.func.c153 Char *vv = v[1]; local
163 if (vv == 0) {
170 else if (eq((vv = strip(vv)), STRminus)) {
175 gointr = Strsave(vv);
358 Char **vv; local
362 vv = v;
363 if (*vv == NULL)
365 if (eq(*vv, STRthen)) {
366 if (*++vv)
[all...]
H A Dsh.exec.c637 dohash(Char **vv, struct command *c) argument
655 if (vv && vv[1]) {
656 uhashlength = atoi(short2str(vv[1]));
657 if (vv[2]) {
658 uhashwidth = atoi(short2str(vv[2]));
663 if (vv[3])
664 hashdebug = atoi(short2str(vv[3]));
/freebsd-11.0-release/share/mk/
H A Dsrc.opts.mk403 .for vv in \
406 .if defined(WITH_${vv:H})
407 MK_${vv:H}:= yes
408 .elif defined(WITHOUT_${vv:H})
409 MK_${vv:H}:= no
411 MK_${vv:H}:= ${MK_${vv:T}}
/freebsd-11.0-release/contrib/ntp/sntp/unity/auto/
H A Dgenerate_test_runner.rb7 $QUICK_RUBY_VERSION = RUBY_VERSION.split('.').inject(0){|vv,v| vv * 100 + v.to_i }
/freebsd-11.0-release/contrib/binutils/binutils/
H A Dresbin.c1126 rc_ver_varinfo *vv; local
1131 vv = (rc_ver_varinfo *) res_alloc (sizeof (rc_ver_varinfo));
1133 vv->language = windres_get_16 (wrbfd, data, 2);
1134 vv->charset = windres_get_16 (wrbfd, data + 2, 2);
1136 vv->next = NULL;
1137 *ppvv = vv;
1138 ppvv = &vv->next;
2064 const rc_ver_varinfo *vv;
2079 for (vv = vi->u.var.var; vv !
2063 const rc_ver_varinfo *vv; local
[all...]
H A Dresrc.c1824 rc_ver_varinfo *vv, **pp;
1826 vv = (rc_ver_varinfo *) res_alloc (sizeof (rc_ver_varinfo));
1827 vv->next = NULL;
1828 vv->language = language;
1829 vv->charset = charset;
1833 *pp = vv;
3246 const rc_ver_varinfo *vv;
3253 for (vv = vi->u.var.var; vv != NULL; vv
1822 rc_ver_varinfo *vv, **pp; local
3243 const rc_ver_varinfo *vv; local
[all...]
/freebsd-11.0-release/usr.sbin/jail/
H A Dconfig.c133 struct cfvar *v, *vv; local
238 vv = v;
239 while ((vv = STAILQ_NEXT(vv, tq)))
240 vv->pos += vs->len;
/freebsd-11.0-release/contrib/bzip2/
H A Dblocksort.c843 Int32 vv; local
849 vv = runningOrder[i];
851 while ( BIGFREQ(runningOrder[j-h]) > BIGFREQ(vv) ) {
857 runningOrder[j] = vv;
/freebsd-11.0-release/sys/netpfil/ipfw/
H A Dip_fw_table.c355 caddr_t v, vv; local
365 vv = v + count * ta_buf_sz;
366 for (i = 0; i < added; i++, v += ta_buf_sz, vv += ta_buf_sz) {
381 error = ta->prepare_del(ch, ptei, vv);
383 error = ta->del(tc->astate, tinfo, ptei, vv, &num);

Completed in 406 milliseconds