Lines Matching defs:max
1609 envstat->max = NA_TEMP;
1928 if ((envstat->max == NA_TEMP) || (real_temp > envstat->max)) {
1929 envstat->max = real_temp;
2076 * history. Kstat writes are used to reset the max and min
2080 short max; /* temporary copy of max temperature */
2084 * search for and reset the max and min to the current
2085 * array contents. Old max and min values will get
2088 max = tempstat->l1[0];
2091 /* Pull the max and min from Level 1 array */
2094 (tempstat->l1[i] > max)) {
2095 max = tempstat->l1[i];
2104 /* Pull the max and min from Level 2 array */
2107 (tempstat->l2[i] > max)) {
2108 max = tempstat->l2[i];
2117 /* Pull the max and min from Level 3 array */
2120 (tempstat->l3[i] > max)) {
2121 max = tempstat->l3[i];
2130 /* Pull the max and min from Level 4 array */
2133 (tempstat->l4[i] > max)) {
2134 max = tempstat->l4[i];
2143 /* Pull the max and min from Level 5 array */
2146 (tempstat->l5[i] > max)) {
2147 max = tempstat->l5[i];