Go to the source code of this file.
Defines | |
#define | inline __inline__ |
Functions | |
int | ilog2 (int val) |
Asterisk -- A telephony toolkit for Linux.
This program is free software, distributed under the terms of the GNU General Public License
Define WANT_ASM before including this file to use assembly whenever possible
Definition in file log2comp.h.
|
Definition at line 20 of file log2comp.h. |
|
Definition at line 67 of file log2comp.h. References val. Referenced by fmult(), quantize(), and update(). 00068 { 00069 int i; 00070 for (i = -1; val; ++i, val >>= 1) 00071 ; 00072 return (i); 00073 }
|