|
ESP-IDF Firmware
Firmware architecture and call graph
|
#include "dsp_common.h"Go to the source code of this file.
Functions | |
| bool | dsp_is_power_of_two (int x) |
| check power of two The function check if the argument is power of 2. The implementation use ANSI C and could be compiled and run on any platform | |
| int | dsp_power_of_two (int x) |
| Power of two The function return power of 2 for values 2^N. The implementation use ANSI C and could be compiled and run on any platform. | |
| bool dsp_is_power_of_two | ( | int | x | ) |
check power of two The function check if the argument is power of 2. The implementation use ANSI C and could be compiled and run on any platform
Definition at line 17 of file dsps_pwroftwo.cpp.
| int dsp_power_of_two | ( | int | x | ) |
Power of two The function return power of 2 for values 2^N. The implementation use ANSI C and could be compiled and run on any platform.
Definition at line 22 of file dsps_pwroftwo.cpp.