Home | History | Annotate | Download | only in gptfdisk

Lines Matching defs:low

1576    uint32_t low, high;
1580 if (GetPartRange(&low, &high) == 0) {
1759 uint32_t low, high, numUsedParts, retval = 1;;
1761 numUsedParts = GetPartRange(&low, &high);
1762 if ((numUsedParts > 0) && (partNum >= low) && (partNum <= high)) {
2026 // Find the low and high used partition numbers (numbered from 0).
2028 // *low and *high values are both set to 0 when no partitions
2032 int GPTData::GetPartRange(uint32_t *low, uint32_t *high) {
2036 *low = numParts + 1; // code for "not found"
2041 // Set the low value only if it's not yet found...
2042 if (*low == (numParts + 1)) *low = i;
2047 // Above will leave *low pointing to its "not found" value if no partitions
2049 if (*low == (numParts + 1))
2050 *low = 0;