Searched refs:isPrime (Results 1 - 6 of 6) sorted by relevance
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | typedArray-find-index.js | 68 function isPrime (element, index, array) { 82 assert (src_array.findIndex (isPrime) === -1); 86 assert (src_array.findIndex (isPrime) === 1);
|
H A D | typedArray-find.js | 68 function isPrime (element, index, array) { 82 assert (src_array.find (isPrime) === undefined); 86 assert (src_array.find (isPrime) === 5);
|
H A D | array-prototype-find-index.js | 67 function isPrime (element, index, array) { function 81 assert (src_array.findIndex (isPrime) === -1); 85 assert (src_array.findIndex (isPrime) === 1);
|
H A D | array-prototype-find.js | 67 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 D | bignum_data.py | 12 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 D | primes.cpp | 33 // 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