Home
last modified time | relevance | path

Searched refs:exp (Results 201 – 225 of 393) sorted by relevance

12345678910>>...16

/openbmc/linux/net/netfilter/
H A Dnf_conntrack_core.c1714 struct nf_conntrack_expect *exp = NULL; in init_conntrack() local
1760 if (exp) { in init_conntrack()
1764 ct->master = exp->master; in init_conntrack()
1765 if (exp->helper) { in init_conntrack()
1772 ct->mark = READ_ONCE(exp->master->mark); in init_conntrack()
1775 ct->secmark = exp->master->secmark; in init_conntrack()
1781 if (!exp && tmpl) in init_conntrack()
1797 if (exp) { in init_conntrack()
1798 if (exp->expectfn) in init_conntrack()
1799 exp->expectfn(ct, exp); in init_conntrack()
[all …]
H A Dnf_conntrack_helper.c401 static bool expect_iter_me(struct nf_conntrack_expect *exp, void *data) in expect_iter_me() argument
403 struct nf_conn_help *help = nfct_help(exp->master); in expect_iter_me()
407 if (exp->helper == me) in expect_iter_me()
/openbmc/linux/lib/math/
H A Dreciprocal_div.c68 R.exp = l; in reciprocal_value_adv()
/openbmc/linux/drivers/media/dvb-frontends/
H A Dcx24123.c430 u32 exp, nearest = 0; in cx24123_int_log2() local
435 for (exp = 1; div > exp; nearest++) in cx24123_int_log2()
436 exp += exp; in cx24123_int_log2()
/openbmc/linux/arch/m68k/fpsp040/
H A Dssinh.S33 | sinh(X) = sign(X) * exp(|X|)/2.
34 | However, invoking exp(|X|) may cause premature overflow.
/openbmc/qemu/libdecnumber/
H A DdecNumber.c3104 exp++; /* e=e+1 */ in decNumberSquareRoot()
3186 approxset.emax-=exp/2; in decNumberSquareRoot()
3200 approxset.emax-=exp/2; in decNumberSquareRoot()
4816 if (rhs->exponent<exp) exp=rhs->exponent; in decDivideOp()
4908 expunits=exp/DECDPUN; in decDivideOp()
4909 exprem=exp%DECDPUN; in decDivideOp()
6421 expunits=exp/DECDPUN;
6422 exprem=exp%DECDPUN;
6740 Int d, exp; /* work */ local
6757 exp=dn->exponent;
[all …]
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/en/tc/
H A Dmeter.c52 mlx5e_flow_meter_cir_calc(u64 cir, u8 *man, u8 *exp) in mlx5e_flow_meter_cir_calc() argument
78 *exp = _exp; in mlx5e_flow_meter_cir_calc()
82 mlx5e_flow_meter_cbs_calc(u64 cbs, u8 *man, u8 *exp) in mlx5e_flow_meter_cbs_calc() argument
105 *exp = _exp; in mlx5e_flow_meter_cbs_calc()
/openbmc/linux/include/media/
H A Ddvb_vb2.h244 int dvb_vb2_expbuf(struct dvb_vb2_ctx *ctx, struct dmx_exportbuffer *exp);
/openbmc/linux/drivers/net/ethernet/marvell/octeontx2/nic/
H A Dotx2_tc.c85 static void otx2_get_egress_rate_cfg(u64 maxrate, u32 *exp, in otx2_get_egress_rate_cfg() argument
104 *exp = ilog2(maxrate) ? ilog2(maxrate) - 1 : 0; in otx2_get_egress_rate_cfg()
109 *mantissa = tmp / (1ULL << (*exp - 7)); in otx2_get_egress_rate_cfg()
112 *exp = MAX_RATE_EXPONENT; in otx2_get_egress_rate_cfg()
121 u32 exp, mantissa, div_exp; in otx2_get_txschq_rate_regval() local
126 otx2_get_egress_rate_cfg(maxrate, &exp, &mantissa, &div_exp); in otx2_get_txschq_rate_regval()
132 FIELD_PREP(TLX_RATE_EXPONENT, exp) | in otx2_get_txschq_rate_regval()
138 FIELD_PREP(TLX_RATE_EXPONENT, exp) | in otx2_get_txschq_rate_regval()
/openbmc/qemu/target/ppc/
H A Dfpu_helper.c110 int exp = extract64(arg, 52, 11); in helper_tosingle() local
113 if (likely(exp > 896)) { in helper_tosingle()
126 if (unlikely(exp >= 874)) { in helper_tosingle()
2832 exp = extract64(xb, 52, 11); in helper_xscvdpspn()
2838 exp = 1; in helper_xscvdpspn()
2845 if (897 - exp > 63) { in helper_xscvdpspn()
2849 frac >>= (897 - exp); in helper_xscvdpspn()
2852 exp = 896; in helper_xscvdpspn()
3200 uint32_t exp, i, fraction; in helper_XVXSIGSP() local
3205 if (exp != 0 && exp != 255) { in helper_XVXSIGSP()
[all …]
/openbmc/qemu/hw/pci-bridge/
H A Dioh3420.c93 VMSTATE_STRUCT(parent_obj.parent_obj.parent_obj.exp.aer_log,
/openbmc/linux/drivers/media/i2c/
H A Dmt9m001.c510 struct v4l2_ctrl *exp = mt9m001->exposure; in mt9m001_s_ctrl() local
556 unsigned long range = exp->maximum - exp->minimum; in mt9m001_s_ctrl()
557 unsigned long shutter = ((exp->val - (s32)exp->minimum) * 1048 + in mt9m001_s_ctrl()
/openbmc/openbmc/poky/meta/recipes-multimedia/libsndfile/libsndfile1/
H A Dcve-2022-33065.patch623 ** approximately ret = b^exp where b = e^(ln(1024)/ln(20480)) ~= 1.0003385
626 -nms_adpcm_antilog (int exp)
629 +nms_adpcm_antilog (short exp)
633 - ret += (((exp & 0x3f) * 0x166b) >> 12) ;
634 - ret *= table_expn [(exp & 0x7c0) >> 6] ;
635 - ret >>= (26 - (exp >> 11)) ;
637 + r += (((int_fast32_t) (exp & 0x3f) * 0x166b) >> 12) ;
638 + r *= table_expn [(exp & 0x7c0) >> 6] ;
639 + r >>= (26 - (exp >> 11)) ;
/openbmc/linux/drivers/slimbus/
H A Dqcom-ngd-ctrl.c947 static int qcom_slim_calc_coef(struct slim_stream_runtime *rt, int *exp) in qcom_slim_calc_coef() argument
956 *exp = 0; in qcom_slim_calc_coef()
968 *exp = *exp + 1; in qcom_slim_calc_coef()
983 if (*exp > 9) in qcom_slim_calc_coef()
987 if (*exp > 8) in qcom_slim_calc_coef()
1018 int exp = 0, coef = 0; in qcom_slim_ngd_enable_stream() local
1025 coef = qcom_slim_calc_coef(rt, &exp); in qcom_slim_ngd_enable_stream()
1037 wbuf[txn.msg->num_bytes++] = exp << 4 | rt->prot; in qcom_slim_ngd_enable_stream()
/openbmc/linux/drivers/hwmon/
H A Dcorsair-psu.c145 const int exp = ((s16)val) >> 11; in corsairpsu_linear11_to_int() local
149 return (exp >= 0) ? (result << exp) : (result >> -exp); in corsairpsu_linear11_to_int()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-kernel/agent-proxy/files/
H A D0001-Makefile-Add-LDFLAGS-variable.patch30 …gent-proxy $(extpath)agent-proxy $(extpath)*.o $(extpath)*.obj $(extpath)*.exp $(extpath)*.exe $(e…
/openbmc/linux/Documentation/translations/zh_CN/admin-guide/
H A Dcpu-load.rst10 Linux 2.6.18.3-exp (linmac) 02/20/2007
/openbmc/openbmc-build-scripts/
H A Drun-qemu-robot-test.sh129 "${DOCKER_IMG_NAME}" "${OBMC_BUILD_DIR}"/boot-qemu-test.exp)
/openbmc/libbej/include/libbej/
H A Dbej_common.h140 int64_t exp; member
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/hddtemp/hddtemp/
H A D0001-configure.ac-Rename-to-configure.ac-and-use-external.patch275 - plural-exp.h \
301 - plural-exp.c \
327 - plural-exp.$lo \
414 -plural-exp.lo: $(srcdir)/plural-exp.c
415 - $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/plural-exp.c
634 -dcigettext.$lo loadmsgcat.$lo plural.$lo plural-exp.$lo: $(srcdir)/plural-exp.h
/openbmc/linux/tools/testing/selftests/bpf/
H A Dtest_verifier.c1312 static bool cmp_str_seq(const char *log, const char *exp) in cmp_str_seq() argument
1319 if (!strlen(exp)) in cmp_str_seq()
1321 p = strchr(exp, '\t'); in cmp_str_seq()
1323 p = exp + strlen(exp); in cmp_str_seq()
1325 len = p - exp; in cmp_str_seq()
1330 strncpy(needle, exp, len); in cmp_str_seq()
1339 exp = p + 1; in cmp_str_seq()
/openbmc/linux/arch/m68k/ifpsp060/src/
H A Dfpsp.S7096 # 10.1 If X >= 70log2 , exp(X) - 1 = exp(X) for all #
7637 neg.w %d0 # new exp = -(shft amt)
7646 ori.w &0x7fff,%d0 # clear old exp
7706 # cosh(X) := Fact * exp(Y'). #
13067 or.w %d2,%d1 # concat sign,exp
15198 mov.w (%sp),%d1 # fetch {sgn,exp}
15202 or.w %d2,%d1 # concat sign,exp
15279 or.w %d2,%d1 # concat sgn,exp
15882 cmp.w %d0, %d1 # is src exp >= dst exp?
15885 # dst exp is > src exp; scale dst to exp = 0x3fff
[all …]
/openbmc/u-boot/arch/powerpc/dts/
H A De6500_power_isa.dtsi24 power-isa-exp; // External Proxy
/openbmc/linux/Documentation/translations/zh_TW/admin-guide/
H A Dcpu-load.rst16 Linux 2.6.18.3-exp (linmac) 02/20/2007
/openbmc/linux/arch/ia64/lib/
H A Didiv32.S60 setf.exp f7 = r2 // f7 = 2^-34

12345678910>>...16