Home
last modified time | relevance | path

Searched refs:isPrime (Results 1 - 6 of 6) sorted by relevance

/third_party/jerryscript/tests/jerry/es2015/
H A DtypedArray-find-index.js68 function isPrime (element, index, array) {
82 assert (src_array.findIndex (isPrime) === -1);
86 assert (src_array.findIndex (isPrime) === 1);
H A DtypedArray-find.js68 function isPrime (element, index, array) {
82 assert (src_array.find (isPrime) === undefined);
86 assert (src_array.find (isPrime) === 5);
H A Darray-prototype-find-index.js67 function isPrime (element, index, array) { function
81 assert (src_array.findIndex (isPrime) === -1);
85 assert (src_array.findIndex (isPrime) === 1);
H A Darray-prototype-find.js67 function isPrime (element, index, array) { function
81 assert (src_array.find (isPrime) === undefined);
85 assert (src_array.find (isPrime) === 5);
/third_party/mbedtls/scripts/mbedtls_dev/
H A Dbignum_data.py12 from Cryptodome.Util.number import isPrime, getPrime #type: ignore #pylint: disable=import-error namespace
150 Requires pycryptodomex for getPrime and isPrime and python 3.9 or later for
158 if isPrime(prime, 1e-30):
/third_party/skia/third_party/externals/swiftshader/third_party/marl/examples/
H A Dprimes.cpp33 // isPrime returns true if i is prime.
34 bool isPrime(int i) { in isPrime() function
67 if (isPrime(i)) { in main()

Completed in 3 milliseconds