Home
last modified time | relevance | path

Searched refs:log2 (Results 1 – 25 of 2453) sorted by relevance

12345678910>>...99

/linux/arch/m68k/fpsp040/
A Dsetox.S103 | Step 3. Calculate X - N*log2/64.
116 | X*64/log2 (1+eps) = N + f, |f| <= 0.5
117 | X*64/log2 - N = f - eps*X 64/log2
118 | X - N*log2/64 = f*log2/64 - eps*X
121 | Now |X| <= 16446 log2, thus
123 | |X - N*log2/64| <= (0.5 + 16446/2^(18))*log2/64
124 | <= 0.57 log2/64.
186 | 8.1 If |X| > 16480 log2, go to Step 9.
196 | Step 9. Handle exp(X), |X| > 16480 log2.
579 cmpil #0x400CB27C,%d0 | ...16480 log2
[all …]
A Dscosh.S23 | 1. If |X| > 16380 log2, go to 3.
25 | 2. (|X| <= 16380 log2) Cosh(X) is obtained by the formulae
30 | 3. (|X| > 16380 log2). If |X| > 16480 log2, go to 5.
32 | 4. (16380 log2 < |X| <= 16480 log2)
42 | 5. (|X| > 16480 log2) sinh(X) must overflow. Return
A Dstanh.S23 | 1. If |X| >= (5/2) log2 or |X| <= 2**(-40), go to 3.
25 | 2. (2**(-40) < |X| < (5/2) log2) Calculate tanh(X) by
30 | 3. (|X| <= 2**(-40) or |X| >= (5/2) log2). If |X| < 1,
33 | 4. (|X| >= (5/2) log2) If |X| >= 50 log2, go to 6.
35 | 5. ((5/2) log2 <= |X| < 50 log2) Calculate tanh(X) by
40 | 6. (|X| >= 50 log2) Tanh(X) = +-1 (round to nearest). Thus, we
A Dssinh.S23 | 1. If |X| > 16380 log2, go to 3.
25 | 2. (|X| <= 16380 log2) Sinh(X) is obtained by the formulae
30 | 3. If |X| > 16480 log2, go to 5.
32 | 4. (16380 log2 < |X| <= 16480 log2)
43 | 5. (|X| > 16480 log2) sinh(X) must overflow. Return
A Dstwotox.S325 cmpil #0x400B9B07,%d0 | ...|X| <= 16480*log2/log10 ?
/linux/samples/bpf/
A Dlwt_len_hist_kern.c44 static unsigned int log2(unsigned int v) in log2() function
61 return log2(hi) + 32; in log2l()
63 return log2(v); in log2l()
A Dlathist_kern.c40 static unsigned int log2(unsigned int v) in log2() function
59 return log2(hi) + 32; in log2l()
61 return log2(v); in log2l()
A Dtracex2_kern.c45 static unsigned int log2(unsigned int v) in log2() function
62 return log2(hi) + 32; in log2l()
64 return log2(v); in log2l()
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/
A Dhost.fuc40 .equ #fifo_qlen 4 // log2(size of queue entry in bytes)
41 .equ #fifo_qnum 3 // log2(max number of entries in queue)
49 .equ #rfifo_qlen 4 // log2(size of queue entry in bytes)
50 .equ #rfifo_qnum 3 // log2(max number of entries in queue)
A Dmacros.fuc146 .equ #proc_qlen 4 // log2(size of queue entry in bytes)
147 .equ #proc_qnum 2 // log2(max number of entries in queue)
/linux/sound/soc/fsl/
A Dfsl_xcvr.c261 u32 i, div = 0, log2; in fsl_xcvr_en_phy_pll() local
274 log2 = ilog2(div); in fsl_xcvr_en_phy_pll()
305 FSL_XCVR_PLL_PDIVx(log2, 0), 0); in fsl_xcvr_en_phy_pll()
312 FSL_XCVR_PLL_PDIVx(log2, 1), 0); in fsl_xcvr_en_phy_pll()
319 FSL_XCVR_PLL_PDIVx(log2, 2), 0); in fsl_xcvr_en_phy_pll()
347 fsl_xcvr_pll_cfg[i].mfn, fsl_xcvr_pll_cfg[i].mfd, div, log2); in fsl_xcvr_en_phy_pll()
/linux/drivers/edac/
A Di10nm_base.c139 u32 log0, log1, log2, log3, log4; in show_retry_rd_err_log() local
161 log2 = I10NM_GET_REG32(imc, res->channel, offsets[2]); in show_retry_rd_err_log()
163 log0, log1, log2, log3, log4, log5); in show_retry_rd_err_log()
A Dskx_base.c236 u32 log0, log1, log2, log3, log4; in skx_show_retry_rd_err_log() local
245 pci_read_config_dword(edev, 0x150, &log2); in skx_show_retry_rd_err_log()
250 log0, log1, log2, log3, log4); in skx_show_retry_rd_err_log()
/linux/fs/xfs/
A Dxfs_rtalloc.c1340 int log2; /* log of sequence number */ in xfs_rtpick_extent() local
1353 if ((log2 = xfs_highbit64(seq)) == -1) in xfs_rtpick_extent()
1356 resid = seq - (1ULL << log2); in xfs_rtpick_extent()
1358 (log2 + 1); in xfs_rtpick_extent()
/linux/arch/m68k/ifpsp060/src/
A Dfplsp.S6774 # X*64/log2 - N = f - eps*X 64/log2 #
6775 # X - N*log2/64 = f*log2/64 - eps*X #
6778 # Now |X| <= 16446 log2, thus #
6780 # |X - N*log2/64| <= (0.5 + 16446/2^(18))*log2/64 #
6781 # <= 0.57 log2/64. #
7479 #--Step 10 |X| > 70 log2
7591 # 3. (|X| > 16380 log2). If |X| > 16480 log2, go to 5. #
7593 # 4. (16380 log2 < |X| <= 16480 log2) #
7707 # 4. (16380 log2 < |X| <= 16480 log2) #
7826 # 4. (|X| >= (5/2) log2) If |X| >= 50 log2, go to 6. #
[all …]
/linux/Documentation/translations/zh_CN/core-api/
A Dkernel-api.rst148 include/linux/log2.h
/linux/Documentation/admin-guide/device-mapper/
A Ddm-integrity.rst231 * log2(interleave sectors)
246 * log2(sectors per block)
291 in one run must be a power of two. log2 of this value is stored
/linux/Documentation/devicetree/bindings/pinctrl/
A Dcirrus,madera.yaml84 log2-fifo-ne, log3-fifo-ne, log4-fifo-ne,
/linux/arch/arm/mm/
A Dproc-macros.S383 pr_sz \dest, \size, \size @ calculate log2(size) - 1
/linux/arch/powerpc/platforms/ps3/
A DKconfig44 expressed as the log2 of the page table size. Valid values are
/linux/arch/m68k/math-emu/
A Dfp_scan.S368 .long 0x00003fff,0xb8aa3b29,0x5c17f0bc | log2(e)
/linux/lib/math/
A D.div64.o.cmd138 include/linux/log2.h \
/linux/Documentation/core-api/
A Dkernel-api.rst147 .. kernel-doc:: include/linux/log2.h
/linux/lib/
A D.clz_ctz.o.cmd156 include/linux/log2.h \
A D.errseq.o.cmd200 include/linux/log2.h \

Completed in 63 milliseconds

12345678910>>...99