Lines Matching defs:high
1740 uint32_t low, high;
1744 if (GetPartRange(&low, &high) == 0) {
1748 if (partNum > high) {
1850 uint32_t i, high, copyNum, entriesPerSector;
1871 GetPartRange(&i, &high);
1872 if (numEntries < (high + 1)) { // Highest entry too high for new #
1873 cout << "The highest-numbered partition is " << high + 1
1957 uint32_t low, high, numUsedParts, retval = 1;;
1959 numUsedParts = GetPartRange(&low, &high);
1960 if ((numUsedParts > 0) && (partNum >= low) && (partNum <= high)) {
2223 // Find the low and high used partition numbers (numbered from 0).
2225 // *low and *high values are both set to 0 when no partitions
2229 int GPTData::GetPartRange(uint32_t *low, uint32_t *high) {
2234 *high = 0;
2237 *high = i; // since we're counting up, set the high value