Searched refs:vl (Results 1 - 22 of 22) sorted by relevance

/freebsd-9.3-release/contrib/tcsh/
H A Dsh.glob.c228 Char **vl, **el, **nv, *s; local
230 vl = nv = *nvp;
234 el = vl + blklen(vl);
236 for (s = *vl; s; s = *++vl) {
250 *vl-- = *bl;
258 l = vl - nv;
262 vl = nv + l;
265 /* nv vl e
298 Char ***fnv, **vl, **el; local
392 handleone(Char *str, Char **vl, int action) argument
427 libglob(Char **vl) argument
481 Char *v[2], **vl, **vo; local
535 Char **vl, **vo; local
[all...]
/freebsd-9.3-release/sys/security/mac/
H A Dmac_audit.c123 struct label *vl; local
127 vl = (vp != NULL) ? vp->v_label : NULL;
128 MAC_POLICY_CHECK(system_check_auditctl, cred, vp, vl);
/freebsd-9.3-release/sys/boot/ofw/libofw/
H A Dofw_disk.c121 va_list vl; local
123 va_start(vl, f);
124 dp = va_arg(vl, struct ofw_devdesc *);
125 va_end(vl);
/freebsd-9.3-release/contrib/ntp/ntpq/
H A Dntpq-subs.c421 struct varlist *vl; local
423 for (vl = list; vl < list + MAXLIST && vl->name != NULL; vl++)
424 if (!strcmp(name, vl->name))
425 return vl;
426 if (vl < list + MAXLIST)
427 return vl;
442 struct varlist *vl; local
477 struct varlist *vl; local
511 register struct varlist *vl; local
534 register struct varlist *vl; local
3668 struct varlist vl[MAXLIST]; local
[all...]
/freebsd-9.3-release/contrib/ntp/libntp/
H A Dprettydate.c227 vint64 vl; local
228 vl = ntpcal_ntp_to_time(ntp, NULL);
229 return get_struct_tm(&vl, local);
/freebsd-9.3-release/contrib/ofed/management/libibmad/src/
H A Ddump.c598 ib_slvl_get_i(ib_slvl_table_t *tbl, int i, uint8_t *vl) argument
600 *vl = (tbl->vl_by_sl_num[i >> 1] >> ((!(i&1)) << 2)) & 0xf;
613 ib_vl_arb_get_vl(uint8_t res_vl, uint8_t *const vl )
615 *vl = res_vl & 0x0F;
622 uint8_t vl; local
626 ib_slvl_get_i(p_slvl_tbl, i, &vl);
627 n += snprintf(buf + n, bufsz - n, "%2u|", vl);
639 uint8_t vl; local
647 ib_vl_arb_get_vl(p_vla_tbl->vl_entry[i].res_vl, &vl);
648 n += snprintf(buf + n, bufsz - n, "0x%-2X|", vl);
[all...]
/freebsd-9.3-release/usr.bin/rpcinfo/
H A Drpcinfo.c635 struct verslist *vl; local
637 for (vl = rs->vlist; vl; vl = vl->next)
638 if (vl->vers == vers)
640 if (vl)
642 vl = (struct verslist *)malloc(sizeof (struct verslist));
643 if (vl == NULL)
645 vl
679 struct verslist *vl; local
[all...]
/freebsd-9.3-release/sbin/bsdlabel/
H A Dbsdlabel.c1180 struct disklabel *vl; local
1182 vl = getvirginlabel();
1184 lp->d_secsize = vl->d_secsize;
1186 lp->d_nsectors = vl->d_nsectors;
1188 lp->d_ntracks = vl->d_ntracks;
1190 lp->d_ncylinders = vl->d_ncylinders;
1192 lp->d_rpm = vl->d_rpm;
1194 lp->d_interleave = vl->d_interleave;
1196 lp->d_secpercyl = vl->d_secpercyl;
1198 lp->d_secperunit > vl
[all...]
/freebsd-9.3-release/contrib/ofed/management/infiniband-diags/src/
H A Dsaquery.c621 e[i + 0].vl, e[i + 1].vl, e[i + 2].vl, e[i + 3].vl,
622 e[i + 4].vl, e[i + 5].vl, e[i + 6].vl, e[i + 7].vl,
623 e[i + 8].vl, e[i + 9].vl,
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/conf/
H A Dconf_mod.c126 CONF_VALUE *vl; local
151 vl = sk_CONF_VALUE_value(values, i);
152 ret = module_run(cnf, vl->name, vl->value, flags);
/freebsd-9.3-release/contrib/amd/amd/
H A Dinfo_nis.c122 callback(int status, char *key, int kl, char *val, int vl, char *data) argument
130 char *vp = strnsave(val, vl);
/freebsd-9.3-release/contrib/one-true-awk/
H A Dparse.c233 void defn(Cell *v, Node *vl, Node *st) /* turn on FCN bit in definition, */ argument
250 for (p = vl; p; p = p->nnext)
H A Dawkgram.y477 void checkdup(Node *vl, Cell *cp) /* check if name already in list */
480 for ( ; vl; vl = vl->nnext) {
481 if (strcmp(s, ((Cell *)(vl->narg[0]))->nval) == 0) {
/freebsd-9.3-release/contrib/ofed/management/opensm/opensm/
H A Dosm_subnet.c855 long vl, weight; local
860 vl = strtol(vl_str, &end, 0);
864 "%s_vlarb_%s:vl=%s"
867 else if (vl < 0 || vl > 14)
869 "%s_vlarb_%s:vl=%ld out of range\n",
870 prefix, suffix, vl);
886 "%s_vlarb_%s:vl:weight=%s "
896 " excess vl:weight pairs will be dropped\n",
918 long vl local
[all...]
H A Dosm_qos.c86 block.vl_entry[i].vl &= vl_mask;
360 e->vl = val % 15;
H A Dosm_qos_parser_l.l150 VLARB_HIGH_LIMIT vl\-high\-limit
H A Dosm_helper.c1648 p_vla_tbl->vl_entry[i].vl);
/freebsd-9.3-release/contrib/gcc/
H A Dtree-vectorizer.c1276 unsigned int vl;
1278 vl = atoi (val);
1279 if (vl < MAX_VERBOSITY_LEVEL)
1280 vect_verbosity_level = vl;
1326 vect_print_dump_info (enum verbosity_levels vl)
1328 if (vl > vect_verbosity_level)
1275 unsigned int vl; local
1325 vect_print_dump_info(enum verbosity_levels vl) argument
/freebsd-9.3-release/sbin/devd/
H A Ddevd.cc551 var_list *vl; local
553 vl = new var_list();
554 _var_list_table.push_back(vl);
/freebsd-9.3-release/contrib/ofed/management/opensm/osmtest/
H A Dosmt_slvl_vl_arb.c80 fprintf(fh, "|0x%02X", p_rec->vl_arb_tbl.vl_entry[i].vl);
473 * Run a vl arbitration queries and sl2vl maps queries flow:
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzap.c53 static void zap_leaf_pageout(dmu_buf_t *db, void *vl);
442 zap_leaf_pageout(dmu_buf_t *db, void *vl) argument
444 zap_leaf_t *l = vl;
/freebsd-9.3-release/contrib/ofed/management/opensm/include/iba/
H A Dib_types.h5496 * vl stall count
6562 IN uint8_t sl_index, IN uint8_t vl)
6565 CL_ASSERT(vl <= 15);
6571 (p_slvl_tbl->raw_vl_by_sl[idx] & 0xF0) | vl;
6575 (vl << 4) | (p_slvl_tbl->raw_vl_by_sl[idx] & 0x0F);
6587 * vl
6588 * [in] the vl value to update for that sl.
6632 * vl for the requested sl_index.
6651 uint8_t vl;

Completed in 317 milliseconds