Home
last modified time | relevance | path

Searched refs:mod_str (Results 1 – 5 of 5) sorted by relevance

/external/boringssl/src/fipstools/
Dcavp_rsa2_keygen_test.cc30 std::string mod_str, table, count_str; in TestRSA2KeyGen() local
31 if (!t->GetInstruction(&mod_str, "mod") || in TestRSA2KeyGen()
38 printf("[mod = %s]\r\n", mod_str.c_str()); in TestRSA2KeyGen()
41 size_t bits = strtoul(mod_str.c_str(), nullptr, 0); in TestRSA2KeyGen()
Dcavp_rsa2_siggen_test.cc41 std::string mod_str, hash; in TestRSA2SigGen() local
43 if (!t->GetInstruction(&mod_str, "mod") || in TestRSA2SigGen()
51 int mod_bits = strtoul(mod_str.c_str(), nullptr, 0); in TestRSA2SigGen()
70 mod_str.c_str(), in TestRSA2SigGen()
Dcavp_rsa2_sigver_test.cc43 std::string mod_str; in TestRSA2SigVer() local
44 if (!t->GetInstruction(&mod_str, "mod")) { in TestRSA2SigVer()
/external/python/cpython2/Python/
D_warnings.c200 const char *mod_str; in normalize_module() local
209 mod_str = PyString_AsString(filename); in normalize_module()
210 if (mod_str == NULL) in normalize_module()
216 strncmp(mod_str + (len - 3), ".py", 3) == 0) { in normalize_module()
217 module = PyString_FromStringAndSize(mod_str, len-3); in normalize_module()
/external/epid-sdk/epid/common/math/src/
Dfinitefield.c652 BNU mod_str = NULL; in InitFfElementFromBn() local
681 mod_str = (BNU)SAFE_ALLOC(elem_size); in InitFfElementFromBn()
682 if (NULL == mod_str) { in InitFfElementFromBn()
686 result = WriteBigNum(mod_bn, elem_size, mod_str); in InitFfElementFromBn()
690 result = ReadFfElement(ff, mod_str, elem_size, ff_elem); in InitFfElementFromBn()
696 SAFE_FREE(mod_str); in InitFfElementFromBn()