Lines Matching full:step
32 | 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
81 | Step 1. If X is not an integer power of two, i.e., X != 2^k,
82 | go to Step 3.
84 | Step 2. Return k.
89 | Step 3. Call sLogN to obtain Y = log(X), the natural log of X.
91 | Step 4. Compute log_2(X) = log(X) * (1/log(2)).