OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:shx
(Results
1 - 2
of
2
) sorted by null
/external/opencv/cxcore/src/
cxmathfuncs.cpp
185
int ex,
shx
;
local
191
shx
= ex % 3;
192
shx
-=
shx
>= 0 ? 3 : 0;
193
ex = (ex -
shx
) / 3; /* exponent of cube root */
194
v.i = (ix & ((1<<23)-1)) | ((
shx
+ 127)<<23);
[
all
...]
/external/opencv3/modules/core/src/
mathfuncs.cpp
134
int ex,
shx
;
local
140
shx
= ex % 3;
141
shx
-=
shx
>= 0 ? 3 : 0;
142
ex = (ex -
shx
) / 3; /* exponent of cube root */
143
v.i = (ix & ((1<<23)-1)) | ((
shx
+ 127)<<23);
[
all
...]
Completed in 162 milliseconds