Searched refs:vst (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.2-release/sys/amd64/vmm/
H A Dvmm_stat.c59 struct vmm_stat_type *vst = arg; local
62 if (vst->desc == NULL)
65 if (vst->scope == VMM_STAT_SCOPE_INTEL && !vmm_is_intel())
68 if (vst->scope == VMM_STAT_SCOPE_AMD && !vmm_is_amd())
71 if (vst_num_elems + vst->nelems >= MAX_VMM_STAT_ELEMS) {
72 printf("Cannot accomodate vmm stat type \"%s\"!\n", vst->desc);
76 vst->index = vst_num_elems;
77 vst_num_elems += vst->nelems;
79 vsttab[vst_num_types++] = vst;
85 struct vmm_stat_type *vst; local
131 struct vmm_stat_type *vst; local
[all...]
H A Dvmm_stat.h95 vmm_stat_array_incr(struct vm *vm, int vcpu, struct vmm_stat_type *vst, argument
103 if (vst->index >= 0 && statidx < vst->nelems)
104 stats[vst->index + statidx] += x;
109 vmm_stat_array_set(struct vm *vm, int vcpu, struct vmm_stat_type *vst, argument
117 if (vst->index >= 0 && statidx < vst->nelems)
118 stats[vst->index + statidx] = val;
123 vmm_stat_incr(struct vm *vm, int vcpu, struct vmm_stat_type *vst, uint64_t x) argument
127 vmm_stat_array_incr(vm, vcpu, vst,
132 vmm_stat_set(struct vm *vm, int vcpu, struct vmm_stat_type *vst, uint64_t val) argument
[all...]
/freebsd-10.2-release/tools/tools/vimage/
H A Dvimage.c101 vstat_t *vst; local
154 if ((vst = malloc(vst_size * sizeof(*vst))) == NULL)
161 while ((jid = getjail(&vst[vst_last], jid, verbose)) > 0) {
163 if (vst[vst_last].vnet != 1)
167 ((strlen(vst[vst_last].name) < namelen ||
168 strncmp(vst[vst_last].name, argv[0], namelen) != 0)
169 || (strlen(vst[vst_last].name) > namelen &&
170 vst[vst_last].name[namelen] != '.')))
174 (strlen(vst[vst_las
[all...]
/freebsd-10.2-release/sys/x86/cpufreq/
H A Dpowernow.c153 #define COUNT_OFF_VST(vst) DELAY(20 * (vst))
222 u_int vst; member in struct:pn_softc
370 COUNT_OFF_VST(sc->vst);
384 COUNT_OFF_VST(sc->vst);
431 COUNT_OFF_VST(sc->vst);
702 sc->vst = psb->settlingtime;
845 sc->vst = ACPI_PN8_CTRL_TO_VST(ctrl),

Completed in 55 milliseconds