Lines Matching defs:high
688 dft = "source high";
691 dft = "source low-high";
697 dft = "target high";
700 dft = "target low-high";
1939 char *high = NULL;
1947 high = level_to_str(pdb, &range->level[1]);
1948 if (!high) {
1952 range_str = create_str("%s - %s", 2, low, high);
1956 free(high);
2615 uint16_t high;
2616 char low_high_str[44]; /* 2^64 <= 20 digits so "low-high" <= 44 chars */
2633 high = portcon->u.port.high_port;
2634 if (low == high) {
2637 rc = snprintf(low_high_str, 44, "%u-%u", low, high);
2786 uint16_t high;
2787 char low_high_str[44]; /* 2^64 <= 20 digits so "low-high" <= 44 chars */
2804 high = ibpkeycon->u.ibpkey.high_pkey;
2805 if (low == high) {
2808 rc = snprintf(low_high_str, 44, "%u-%u", low, high);
2920 uint32_t high;
2921 char low_high_str[40]; /* 2^64-1 <= 16 digits (hex) so low-high < 40 chars */
2927 high = ioport->u.ioport.high_ioport;
2928 if (low == high) {
2931 rc = snprintf(low_high_str, 40, "0x%x-0x%x", low, high);
2963 uint64_t high;
2964 char low_high_str[40]; /* 2^64-1 <= 16 digits (hex) so low-high < 40 chars */
2970 high = iomem->u.iomem.high_iomem;
2971 if (low == high) {
2974 rc = snprintf(low_high_str, 40, "0x%"PRIx64"-0x%"PRIx64, low, high);