Home
last modified time | relevance | path

Searched refs:mod (Results 1 – 6 of 6) sorted by relevance

/system/media/camera/docs/
Dmetadata-check-dependencies79 local mod=$1
85 if python -c "import $mod" >& /dev/null
100 echo "Missing python module $mod, please install with '$(packager_install $pkg)'"
/system/core/libmincrypt/tools/
DDumpPublicKey.java131 BigInteger RR = R.multiply(R).mod(N); // 2^4096 mod N in printRSA()
136 long n = N.mod(B).longValue(); in printRSA()
150 long rr = RR.mod(B).longValue(); in printRSA()
192 long n = X.mod(B).longValue(); in printEC()
206 long n = Y.mod(B).longValue(); in printEC()
/system/extras/tests/lib/testUtil/
DtestUtil.c204 uint32_t testRandMod(uint32_t mod) in testRandMod() argument
210 uint32_t val = (mod <= lrand48maxVal) ? (uint32_t) lrand48() : testRand(); in testRandMod()
220 if (mod <= 0x10000) { in testRandMod()
225 if (mod <= 0x100) { in testRandMod()
230 return val % mod; in testRandMod()
/system/extras/tests/include/
DtestUtil.h43 uint32_t testRandMod(uint32_t mod);
/system/vold/
Dcryptfs.c104 const hw_module_t* mod; in keymaster_init() local
105 rc = hw_get_module_by_class(KEYSTORE_HARDWARE_MODULE_ID, NULL, &mod); in keymaster_init()
111 rc = keymaster_open(mod, keymaster_dev); in keymaster_init()
/system/security/keystore/
Dkeystore.cpp108 const hw_module_t* mod; in keymaster_device_initialize() local
109 rc = hw_get_module_by_class(KEYSTORE_HARDWARE_MODULE_ID, NULL, &mod); in keymaster_device_initialize()
115 rc = keymaster_open(mod, dev); in keymaster_device_initialize()