OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ilog2x
(Results
1 - 2
of
2
) sorted by relevancy
/src/sys/dev/dtv/
dtv_math.c
89
uint32_t
ilog2x
;
local in function:dtv_intlog10
97
* find
ilog2x
= floor(log2(x)), as an integer in the range [0,31].
99
ilog2x
= ilog2(x);
115
t = (
ilog2x
> 24 ? x >> (
ilog2x
- 24) : x << (24 -
ilog2x
));
128
* Calculate "t =
ilog2x
+ t/2 - t1 + 0.5" in the 8.24
141
t = (
ilog2x
<< 24) + (t >> 1) - t1 + (1 << 23);
dtv_math.c
89
uint32_t
ilog2x
;
local in function:dtv_intlog10
97
* find
ilog2x
= floor(log2(x)), as an integer in the range [0,31].
99
ilog2x
= ilog2(x);
115
t = (
ilog2x
> 24 ? x >> (
ilog2x
- 24) : x << (24 -
ilog2x
));
128
* Calculate "t =
ilog2x
+ t/2 - t1 + 0.5" in the 8.24
141
t = (
ilog2x
<< 24) + (t >> 1) - t1 + (1 << 23);
Completed in 284 milliseconds
Indexes created Fri Sep 26 08:10:20 GMT 2025