Home
last modified time | relevance | path

Searched refs:Step (Results 1 – 25 of 37) sorted by relevance

12

/linux-6.6.21/arch/m68k/fpsp040/
Dsetox.S50 | Step 1. Set ans := 1.0
52 | Step 2. Return ans := ans + sign(X)*2^(-126). Exit.
59 | Step 1. Filter out extreme cases of input argument.
60 | 1.1 If |X| >= 2^(-65), go to Step 1.3.
61 | 1.2 Go to Step 7.
62 | 1.3 If |X| < 16380 log(2), go to Step 2.
63 | 1.4 Go to Step 8.
72 | Note also that the constant 16380 log(2) used in Step 1.3
74 | to Step 2 guarantees |X| < 16380 log(2). There is no harm
76 | but close to, 16380 log(2) and the branch to Step 9 is
[all …]
Dslog2.S32 | Step 0. If X < 0, create a NaN and raise the invalid operation
37 | Step 1. Call slognd to obtain Y = log(X), the natural log of X.
40 | Step 2. Compute log_10(X) = log(X) * (1/log(10)).
47 | Step 0. If X < 0, create a NaN and raise the invalid operation
52 | Step 1. Call sLogN to obtain Y = log(X), the natural log of X.
54 | Step 2. Compute log_10(X) = log(X) * (1/log(10)).
61 | Step 0. If X < 0, create a NaN and raise the invalid operation
66 | Step 1. Call slognd to obtain Y = log(X), the natural log of X.
69 | Step 2. Compute log_10(X) = log(X) * (1/log(2)).
76 | Step 0. If X < 0, create a NaN and raise the invalid operation
[all …]
Dsrem_mod.S23 | Step 1. Save and strip signs of X and Y: signX := sign(X),
28 | Step 2. Set L := expo(X)-expo(Y), k := 0, Q := 0.
30 | R := X, go to Step 4.
35 | Step 3. Perform MOD(X,Y)
36 | 3.1 If R = Y, go to Step 9.
38 | 3.3 If j = 0, go to Step 4.
40 | Step 3.1.
42 | Step 4. At this point, R = X - QY = MOD(X,Y). Set
43 | Last_Subtract := false (used in Step 7 below). If
44 | MOD is requested, go to Step 6.
[all …]
Dsatan.S23 | Step 1. If |X| >= 16 or |X| < 1/16, go to Step 5.
25 | Step 2. Let X = sgn * 2**k * 1.xxxxxxxx...x. Note that k = -4, -3,..., or 3.
30 | Step 3. Approximate arctan(u) by a polynomial poly.
32 | Step 4. Return arctan(F) + poly, arctan(F) is fetched from a table of values
35 | Step 5. If |X| >= 16, go to Step 7.
37 | Step 6. Approximate arctan(X) by an odd polynomial in X. Exit.
39 | Step 7. Define X' = -1/X. Approximate arctan(X') by an odd polynomial in X'.
Dslogn.S27 | Step 1. If |X-1| < 1/16, approximate log(X) by an odd polynomial in
28 | u, where u = 2(X-1)/(X+1). Otherwise, move on to Step 2.
30 | Step 2. X = 2**k * Y where 1 <= Y < 2. Define F to be the first seven
34 | Step 3. Define u = (Y-F)/F. Approximate log(1+u) by a polynomial in u,
37 | Step 4. Reconstruct log(X) = log( 2**k * Y ) = k*log(2) + log(F) + log(1+u)
42 | Step 1: If |X| < 1/16, approximate log(1+X) by an odd polynomial in
43 | u where u = 2X/(2+X). Otherwise, move on to Step 2.
45 | Step 2: Let 1+X = 2**k * Y, where 1 <= Y < 2. Define F as done in Step 2
/linux-6.6.21/arch/arm/mach-sa1100/
Dsleep.S119 @ Step 1 clear RT field of all MSCx registers
124 @ Step 2 clear DRI field in MDREFR
127 @ Step 3 set SLFRSH bit in MDREFR
130 @ Step 4 clear DE bis in MDCNFG
133 @ Step 5 clear DRAM refresh control register
139 @ Step 6 set force sleep bit in PMCR
/linux-6.6.21/Documentation/devicetree/bindings/iio/amplifiers/
Dadi,hmc425a.yaml7 title: HMC425A 6-bit Digital Step Attenuator
13 Digital Step Attenuator IIO device with gpio interface.
/linux-6.6.21/Documentation/driver-api/driver-model/
Dporting.rst34 Step 0: Read include/linux/device.h for object and function definitions.
36 Step 1: Registering the bus driver.
91 Step 2: Registering Devices.
228 Step 3: Registering Drivers.
281 Step 4: Define Generic Methods for Drivers.
328 Step 5: Support generic driver binding.
377 Step 6: Supply a hotplug callback.
400 Step 7: Cleaning up the bus driver.
/linux-6.6.21/arch/arm/boot/dts/amlogic/
Dmeson8b-ec100.dts169 * Synchronous Step Down Regulator.
202 * Synchronous Step Down Regulator. Also called
217 * Synchronous Step Down Regulator. Also called
252 * Synchronous Step Down Regulator. Also called VDDAO
/linux-6.6.21/arch/m68k/ifpsp060/src/
Dfplsp.S6704 # Step 1. Set ans := 1.0 #
6706 # Step 2. Return ans := ans + sign(X)*2^(-126). Exit. #
6713 # Step 1. Filter out extreme cases of input argument. #
6714 # 1.1 If |X| >= 2^(-65), go to Step 1.3. #
6715 # 1.2 Go to Step 7. #
6716 # 1.3 If |X| < 16380 log(2), go to Step 2. #
6717 # 1.4 Go to Step 8. #
6727 # 16380 log(2) used in Step 1.3 is also in the compact #
6728 # form. Thus taking the branch to Step 2 guarantees #
6731 # 16380 log(2) and the branch to Step 9 is taken. #
[all …]
Dfpsp.S6160 # Step 1. If |X| >= 16 or |X| < 1/16, go to Step 5. #
6162 # Step 2. Let X = sgn * 2**k * 1.xxxxxxxx...x. #
6168 # Step 3. Approximate arctan(u) by a polynomial poly. #
6170 # Step 4. Return arctan(F) + poly, arctan(F) is fetched from a #
6173 # Step 5. If |X| >= 16, go to Step 7. #
6175 # Step 6. Approximate arctan(X) by an odd polynomial in X. Exit. #
6177 # Step 7. Define X' = -1/X. Approximate arctan(X') by an odd #
6978 # Step 1. Set ans := 0 #
6980 # Step 2. Return ans := X + ans. Exit. #
6987 # Step 1. Check |X| #
[all …]
/linux-6.6.21/Documentation/devicetree/bindings/regulator/
Dmaxim,max20411.yaml7 title: Maxim Integrated MAX20411 Step-Down DC-DC Converter
Drichtek,rt5739.yaml7 title: Richtek RT5739 Step-Down Buck Converter
/linux-6.6.21/Documentation/admin-guide/LSM/
DSELinux.rst29 Step 4 will create a new dummy policy valid for your
/linux-6.6.21/Documentation/hwmon/
Dltc3815.rst20 LTC3815 is a Monolithic Synchronous DC/DC Step-Down Converter.
Dmax20730.rst47 Integrated, Step-Down Switching Regulators with PMBus support.
Dlt7182s.rst22 LT7182S is a Dual Channel 6A, 20V PolyPhase Step-Down Silent Switcher with
/linux-6.6.21/Documentation/userspace-api/media/v4l/
Dvidioc-enum-framesizes.rst54 - **Step-wise:** The function returns success if the given index value
187 - Step-wise defined frame size.
Dvidioc-enum-frameintervals.rst53 - **Step-wise:** The function returns success if the given index value
179 - Step-wise defined frame interval.
Dext-ctrls-fm-tx.rst107 useconds. Step and range are driver-specific.
/linux-6.6.21/Documentation/networking/
Dnet_dim.rst56 considered "better". Step #2 has an optimization for avoiding false results: it
61 Step #3 decides on the suggested configuration based on the result from step #2
/linux-6.6.21/Documentation/core-api/
Ddebugging-via-ohci1394.rst89 Step-by-step instructions for using firescope with early OHCI initialization:
/linux-6.6.21/Documentation/scsi/
Dscsi_eh.rst101 Step #2 is taken.
111 expired. In these cases Step #3 is taken.
/linux-6.6.21/drivers/regulator/
DKconfig584 chip to control Step-Down DC-DC and LDOs. Say Y here to
634 chip to control Step-Down DC-DC and LDOs.
688 tristate "Maxim MAX20411 High-Efficiency Single Step-Down Converter"
1431 The TPS51632 is 3-2-1 Phase D-Cap+ Step Down Driverless Controller
/linux-6.6.21/Documentation/devicetree/bindings/
Dtrivial-devices.yaml46 # Analog Devices LT7182S Dual Channel 6A, 20V PolyPhase Step-Down Silent Switcher

12