Lines Matching refs:high
149 uint32_t low, high;
152 if (GetPartRange(&low, &high) > 0) {
153 prompt << "Partition number (" << low + 1 << "-" << high + 1 << "): ";
154 partNum = GetNumber(low + 1, high + 1, low, prompt.str());
290 uint32_t low, high;
293 if (GetPartRange(&low, &high) > 0) {
294 prompt << "Partition number (" << low + 1 << "-" << high + 1 << "): ";
295 partNum = GetNumber(low + 1, high + 1, low, prompt.str());
305 uint32_t low, high;
307 if (GetPartRange(&low, &high) > 0) {
319 uint32_t low, high;
322 if (GetPartRange(&low, &high) > 0) {
389 uint32_t low, high;
393 if (GetPartRange(&low, &high) > 0) {
395 if (high >= numParts - 1)
396 high = 0;
398 << ", default " << high + 2 << "): ";
399 partNum2 = GetNumber(1, numParts, high + 2, prompt.str()) - 1;
440 uint32_t low, high;
442 if (GetPartRange(&low, &high) > 0) {
573 // Obtains a sector number, between low and high, from the
577 // respectively. If a "-" prefix is used, use the high value minus
580 uint64_t GPTDataTextUI::GetSectorNum(uint64_t low, uint64_t high, uint64_t def,
590 response = IeeeToInt(line, blockSize, low, high, sectorAlignment, def);
591 } while ((response < low) || (response > high));