Lines Matching defs:constant
206 u64 constant;
223 return field->constant;
382 return val1 >> __ffs64(operand2->constant);
396 return div64_u64(val1, operand2->constant);
411 * If the divisor is a constant, do a multiplication and shift instead.
416 * (Z / Y) is a constant (mult) which is calculated at parse time, so:
430 return div64_u64(val1, operand2->constant);
697 * is constant. This avoids extra branches when the trigger is hit.
701 u64 div = divisor->constant;
1744 snprintf(str, HIST_CONST_DIGITS_MAX, "%llu", field->constant);
2459 u64 constant;
2461 if (kstrtoull(str, 0, &constant)) {
2471 field->constant = constant;
2778 * If both operands are constant, the expression can be
2779 * collapsed to a single constant.
2803 u64 divisor = var2 ? var2->constant : operand2->constant;
2815 operand2->constant = divisor;
2827 expr->constant = hist_fn_call(expr, NULL, NULL, NULL, NULL);
5920 seq_printf(m, " constant: %llu\n", field->constant);
6165 seq_printf(m, "%llu", hist_field->constant);