Lines Matching refs:temp
844 int temp;
850 temp = AD4130_FILTER_SELECT_MIN + filter_config->fs_max -
853 if (temp < AD4130_FILTER_SELECT_MIN)
854 temp = AD4130_FILTER_SELECT_MIN;
855 else if (temp > filter_config->fs_max)
856 temp = filter_config->fs_max;
858 *fs = temp;
867 u64 temp;
873 temp = div_u64((u64)dividend * NANO, divisor);
874 *val = div_u64_rem(temp, NANO, val2);