This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| int | ilog2 (const double &val) |
| int | ilog2 (const float &val) |
|
|
Definition at line 30 of file ilog2.cpp. References dilog2_().
00031 {
00032 int itmp;
00033 #ifdef STORM_USEF
00034 dilog2_( &val, &itmp );
00035 #else
00036 #endif
00037 return itmp;
00038 }
|
|
|
Definition at line 20 of file ilog2.cpp. References ilog2_().
00021 {
00022 int itmp;
00023 #ifdef STORM_USEF
00024 ilog2_( &val, &itmp );
00025 #else
00026 #endif
00027 return itmp;
00028 }
|
1.3.6