HelenOS sources
exp 810 kernel/generic/src/sysinfo/stats.c static inline load_t load_calc(load_t load, load_t exp, size_t ready)
exp 812 kernel/generic/src/sysinfo/stats.c load *= exp;
exp 813 kernel/generic/src/sysinfo/stats.c load += (ready << LOAD_FIXED_SHIFT) * (LOAD_FIXED_1 - exp);
exp 39 uspace/app/tester/util.c bool assert_eq_fn_##type(type exp, type act, const char *act_desc) \
exp 41 uspace/app/tester/util.c if (exp != act) { \
exp 44 uspace/app/tester/util.c act_desc, exp, exp, act, act); \
exp 46 uspace/app/tester/util.c return exp != act; \
exp 47 uspace/app/tester/util.h #define ASSERT_EQ_64(exp, act, msg) \
exp 48 uspace/app/tester/util.h {if (assert_eq_fn_uint64_t(exp, act, #act)) {return msg;}}
exp 50 uspace/app/tester/util.h #define ASSERT_EQ_32(exp, act, msg) \
exp 51 uspace/app/tester/util.h {if (assert_eq_fn_uint32_t(exp, act, #act)) {return msg;}}
exp 53 uspace/app/tester/util.h #define ASSERT_EQ_16(exp, act, msg) \
exp 54 uspace/app/tester/util.h {if (assert_eq_fn_uint16_t(exp, act, #act)) {return msg;}}
exp 56 uspace/app/tester/util.h #define ASSERT_EQ_8(exp, act, msg) \
exp 57 uspace/app/tester/util.h {if (assert_eq_fn_uint8_t(exp, act, #act)) {return msg;}}
exp 23 uspace/drv/bus/usb/xhci/test/reg-ops.c #define EQ(exp, act) PCUT_ASSERT_INT_EQUALS((exp), (act))
exp 88 uspace/lib/c/generic/capa.c int exp;
exp 96 uspace/lib/c/generic/capa.c exp = capa->cunit * 3 - capa->dp;
exp 97 uspace/lib/c/generic/capa.c if (exp < 0) {
exp 98 uspace/lib/c/generic/capa.c rc = ipow10_u64(-exp, &f);
exp 105 uspace/lib/c/generic/capa.c rc = ipow10_u64(exp, &f);
exp 50 uspace/lib/c/generic/imath.c errno_t ipow10_u64(unsigned exp, uint64_t *res)
exp 58 uspace/lib/c/generic/imath.c if ((exp & 1) != 0) {
exp 64 uspace/lib/c/generic/imath.c exp = exp >> 1;
exp 65 uspace/lib/c/generic/imath.c if (exp == 0)
exp 679 uspace/lib/c/generic/stdio/scanf.c int exp;
exp 780 uspace/lib/c/generic/stdio/scanf.c exp = 0;
exp 813 uspace/lib/c/generic/stdio/scanf.c exp = exp * 10 + digit;
exp 818 uspace/lib/c/generic/stdio/scanf.c exp = exp * expsign;
exp 821 uspace/lib/c/generic/stdio/scanf.c exp += eadj;
exp 825 uspace/lib/c/generic/stdio/scanf.c while (exp > 0) {
exp 827 uspace/lib/c/generic/stdio/scanf.c --exp;
exp 830 uspace/lib/c/generic/stdio/scanf.c while (exp < 0) {
exp 832 uspace/lib/c/generic/stdio/scanf.c ++exp;
exp 179 uspace/lib/c/include/math.h double exp(double);
exp 55 uspace/lib/cpp/include/__bits/builtins.hpp constexpr double pow2(T exp)
exp 57 uspace/lib/cpp/include/__bits/builtins.hpp return __builtin_pow(2.0, static_cast<double>(exp));
exp 61 uspace/lib/cpp/include/__bits/builtins.hpp constexpr size_t pow2u(T exp)
exp 63 uspace/lib/cpp/include/__bits/builtins.hpp return static_cast<size_t>(pow2(exp));
exp 67 uspace/lib/cpp/include/__bits/builtins.hpp constexpr T pow(T base, U exp)
exp 70 uspace/lib/cpp/include/__bits/builtins.hpp __builtin_pow(static_cast<double>(base), static_cast<double>(exp))
exp 898 uspace/lib/cpp/include/__bits/complex.hpp complex<T> pow(const complex<T>& base, const T& exp)
exp 906 uspace/lib/cpp/include/__bits/complex.hpp complex<T> pow(const complex<T>& base, const complex<T>& exp)
exp 914 uspace/lib/cpp/include/__bits/complex.hpp complex<T> pow(const T& base, const complex<T>& exp)
exp 66 uspace/lib/math/generic/nearbyint.c int exp = (u.i >> mant_bits) - exp_bias;
exp 67 uspace/lib/math/generic/nearbyint.c assert(exp > 0);
exp 70 uspace/lib/math/generic/nearbyint.c if (exp >= mant_bits)
exp 74 uspace/lib/math/generic/nearbyint.c uint32_t first = (UINT32_C(1) << (mant_bits - exp));
exp 76 uspace/lib/math/generic/nearbyint.c uint32_t frac = u.i & (mant_mask >> exp);
exp 85 uspace/lib/math/generic/nearbyint.c u.i &= ~(mant_mask >> exp);
exp 116 uspace/lib/math/generic/nearbyint.c int exp = (u.i >> mant_bits) - exp_bias;
exp 117 uspace/lib/math/generic/nearbyint.c assert(exp > 0);
exp 120 uspace/lib/math/generic/nearbyint.c if (exp >= mant_bits)
exp 124 uspace/lib/math/generic/nearbyint.c uint64_t first = (UINT64_C(1) << (mant_bits - exp));
exp 126 uspace/lib/math/generic/nearbyint.c uint64_t frac = u.i & (mant_mask >> exp);
exp 135 uspace/lib/math/generic/nearbyint.c u.i &= ~(mant_mask >> exp);
exp 55 uspace/lib/math/generic/round.c int exp = (u.i >> mant_bits) - exp_bias;
exp 58 uspace/lib/math/generic/round.c if (exp < -1)
exp 62 uspace/lib/math/generic/round.c if (exp >= mant_bits)
exp 84 uspace/lib/math/generic/round.c int exp = ((int)(u.i >> mant_bits)) - exp_bias;
exp 87 uspace/lib/math/generic/round.c if (exp < -1)
exp 91 uspace/lib/math/generic/round.c if (exp >= mant_bits)
exp 66 uspace/lib/math/generic/trunc.c int exp = (u.i >> mant_bits) - exp_bias;
exp 69 uspace/lib/math/generic/trunc.c if (exp < 0)
exp 72 uspace/lib/math/generic/trunc.c if (exp >= mant_bits)
exp 76 uspace/lib/math/generic/trunc.c u.i &= ~(mant_mask >> exp);
exp 106 uspace/lib/math/generic/trunc.c int exp = ((int)(u.i >> mant_bits)) - exp_bias;
exp 109 uspace/lib/math/generic/trunc.c if (exp < 0)
exp 112 uspace/lib/math/generic/trunc.c if (exp >= mant_bits)
exp 116 uspace/lib/math/generic/trunc.c u.i &= ~(mant_mask >> exp);
exp 33 uspace/lib/pcut/tests/tested.c long intpow(int base, int exp) {
exp 34 uspace/lib/pcut/tests/tested.c UNUSED(base); UNUSED(exp);
exp 32 uspace/lib/pcut/tests/tested.h long intpow(int base, int exp);
exp 179 uspace/lib/posix/include/libc/math.h double exp(double);
HelenOS homepage, sources at GitHub