Lines Matching refs:result
804 /* The result of our calculations */
805 unsigned long result;
874 /* Start with the pixel value in result */
875 result = MAKE_SHORT(*(image->image_data +
880 result = result >> 6; /* Range now = 0-1023 */
885 result);
887 result *= 54; /* Range now = 0-54k */
890 if (result < lo) result = lo;
891 if (result > hi) result = hi;
893 /* result = (base-lo) * max_value / (hi-lo) */
894 temp = result - lo;
898 /* Clip output result has been clipped to lo,
906 "%lu, result %lu (%lu "
908 result, temp, lo, hi);
911 result = temp;
916 = HIGH_BYTE(result);
918 = LOW_BYTE(result);