| Directory | Files | |
|---|---|---|
| .. | 362 | |
| File | Size | |
| Kconfig | 430 B | |
| Makefile | 332 B | |
| cordic.c | 2.3 kB | |
| cordic.mod.c | 0 B | |
| div64.c | 4.9 kB | |
| gcd.c | 1.4 kB | |
| int_log.c | 4.7 kB | |
| int_pow.c | 629 B | |
| int_sqrt.c | 1.2 kB | |
| lcm.c | 482 B | |
| prime_numbers.c | 6.7 kB | |
| prime_numbers.mod.c | 0 B | |
| rational-test.c | 1.7 kB | |
| rational-test.mod.c | 0 B | |
| rational.c | 3.1 kB | |
| reciprocal_div.c | 1.5 kB | |
| test_div64.c | 7.5 kB | |
| test_div64.mod.c | 0 B | |
# SPDX-License-Identifier: GPL-2.0-only config CORDIC tristate "CORDIC algorithm" help This option provides an implementation of the CORDIC algorithm; calculations are in fixed point. Module will be called cordic. config PRIME_NUMBERS tristate "Simple prime number generator for testing" help This option provides a simple prime number generator for test modules. If unsure, say N. config RATIONAL tristate