OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sqrt_n
(Results
1 - 2
of
2
) sorted by null
/external/valgrind/auxprogs/
primes.c
8
int
sqrt_n
= sqrt(n);
local
9
for (m = 2; m <=
sqrt_n
+1; m++) // +1 in case of obscure rounding error
/external/python/futures/
primes.py
21
sqrt_n
= int(math.floor(math.sqrt(n)))
22
for i in range(3,
sqrt_n
+ 1, 2):
Completed in 108 milliseconds