HomeSort by: relevance | last modified time | path
    Searched refs:PVS (Results 1 - 9 of 9) sorted by relevancy

  /src/external/gpl2/lvm2/dist/lib/report/
columns.h 20 * (pvs/vgs/lvs).
52 * used to select fields via '-o' in the reporting commands (pvs/vgs/lvs).
88 FIELD(PVS, pv, NUM, "1st PE", pe_start, 7, size64, "pe_start", "Offset to the start of data on the underlying device.")
89 FIELD(PVS, pv, NUM, "PSize", id, 5, pvsize, "pv_size", "Size of PV in current units.")
90 FIELD(PVS, pv, NUM, "PFree", id, 5, pvfree, "pv_free", "Total amount of unallocated space in current units.")
91 FIELD(PVS, pv, NUM, "Used", id, 4, pvused, "pv_used", "Total amount of allocated space in current units.")
92 FIELD(PVS, pv, STR, "Attr", status, 4, pvstatus, "pv_attr", "Various attributes - see man page.")
93 FIELD(PVS, pv, NUM, "PE", pe_count, 3, uint32, "pv_pe_count", "Total number of Physical Extents.")
94 FIELD(PVS, pv, NUM, "Alloc", pe_alloc_count, 5, uint32, "pv_pe_alloc_count", "Total number of allocated Physical Extents.")
95 FIELD(PVS, pv, STR, "PV Tags", tags, 7, tags, "pv_tags", "Tags, if any."
    [all...]
report.h 25 PVS = 2,
report.c 922 /* PVs could have 2 mdas of different sizes (rounding effect) */
1095 /* necessary for displaying something for PVs not belonging to VG */
1104 .pvs = { &(_dummy_vg.pvs), &(_dummy_vg.pvs) },
1139 { PVS, "Physical Volume", "pv_", _obj_get_pv },
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/scripts/
extract_symvers.pl 23 # easily be extracted from readelf --versions output, so use pvs instead.
25 # that baseline_symbols.txt is identical between native (pvs, elfdump) and
30 open PVS, "pvs -dsvo $lib |" or die $!;
31 while (<PVS>) {
82 close PVS or die "pvs error";
  /src/external/gpl3/gcc/dist/libstdc++-v3/scripts/
extract_symvers.pl 23 # easily be extracted from readelf --versions output, so use pvs instead.
25 # that baseline_symbols.txt is identical between native (pvs, elfdump) and
30 open PVS, "pvs -dsvo $lib |" or die $!;
31 while (<PVS>) {
82 close PVS or die "pvs error";
  /src/external/gpl2/lvm2/dist/include/
report.h 25 PVS = 2,
  /src/external/gpl2/lvm2/dist/tools/
reporter.c 99 dm_list_init(&_free_vg.pvs);
243 args_are_pvs = (report_type == PVS ||
273 case PVS:
365 report_type |= PVS;
366 if ((report_type & LVS) && (report_type & (PVS | LABEL)) && !args_are_pvs) {
374 ((report_type & (PVS | LABEL)) && (report_type & LVS)))
377 report_type = PVS;
378 else if (report_type & PVS)
379 report_type = PVS;
398 case PVS
443 int pvs(struct cmd_context *cmd, int argc, char **argv) function
    [all...]
  /src/external/gpl2/lvm2/dist/test/
t-lvextend-percent-extents.sh 20 # 'lvextend rejects both size and extents without PVs'
24 # 'lvextend rejects both size and extents with PVs'
45 # 'lvextend accepts no size but extents 100%PVS and two PVs - bz154691'
46 lvextend -l +100%PVS $vg/$lv $dev1 $dev2 >out
67 # Then extend it, with a range of PVs on the cmdline of every other 3 extents.
77 # 'lvextend with partially allocated PVs and extents 100%PVS with PE ranges'
79 lvextend -l +100%PVS $vg/$lv $extend_pvs >out
88 pe_count=$(pvs -o pv_pe_count --noheadings $dev1
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
Attributor.h 3638 static PotentialValuesState getBestState(PotentialValuesState &PVS) {
3650 /// Union assumed set with assumed set of the passed state \p PVS.
3651 void unionAssumed(const PotentialValuesState &PVS) { unionWith(PVS); }
3656 /// "Clamp" this state with \p PVS.
3657 PotentialValuesState operator^=(const PotentialValuesState &PVS) {
3658 IsValidState ^= PVS.IsValidState;
3659 unionAssumed(PVS);
3663 PotentialValuesState operator&=(const PotentialValuesState &PVS) {
3664 IsValidState &= PVS.IsValidState
    [all...]

Completed in 34 milliseconds