Home
last modified time | relevance | path

Searched refs:algo (Results 1 – 25 of 53) sorted by relevance

123

/external/iproute2/ip/
Dipxfrm.c514 static void __xfrm_algo_print(struct xfrm_algo *algo, int type, int len, in __xfrm_algo_print() argument
525 if (len < sizeof(*algo)) { in __xfrm_algo_print()
529 len -= sizeof(*algo); in __xfrm_algo_print()
531 fprintf(fp, "%s ", algo->alg_name); in __xfrm_algo_print()
533 keylen = algo->alg_key_len / 8; in __xfrm_algo_print()
542 fprintf(fp, "%.2x", (unsigned char)algo->alg_key[i]); in __xfrm_algo_print()
545 fprintf(fp, " (%d bits)", algo->alg_key_len); in __xfrm_algo_print()
553 static inline void xfrm_algo_print(struct xfrm_algo *algo, int type, int len, in xfrm_algo_print() argument
556 return __xfrm_algo_print(algo, type, len, fp, prefix, 1); in xfrm_algo_print()
559 static void xfrm_aead_print(struct xfrm_algo_aead *algo, int len, in xfrm_aead_print() argument
[all …]
/external/opencv3/modules/calib3d/perf/
Dperf_pnp.cpp28 pnpAlgo algo = get<1>(GetParam()); variable
58 solvePnP(points3d, points2d, intrinsics, distortion, rvec, tvec, false, algo);
73 pnpAlgo algo = get<1>(GetParam()); variable
74 if( algo == SOLVEPNP_P3P )
105 solvePnP(points3d, points2d, intrinsics, distortion, rvec, tvec, false, algo);
/external/lzma/CPP/7zip/Crypto/
DMyAes.cpp75 bool CAesCbcCoder::SetFunctions(UInt32 algo) in SetFunctions() argument
80 if (algo == 1) in SetFunctions()
86 if (algo == 2) in SetFunctions()
DMyAes.h28 bool SetFunctions(UInt32 algo);
/external/toybox/toys/lsb/
Dpasswd.c39 char *algo; in GLOBALS() argument
136 if (!(toys.optflags & FLAG_a)) TT.algo = "des"; in passwd_main()
137 if (get_salt(salt, TT.algo) == -1) in passwd_main()
/external/opencv3/modules/flann/src/
Dminiflann.cpp341 algo = FLANN_INDEX_LINEAR; in Index()
349 algo = FLANN_INDEX_LINEAR; in Index()
357 algo = getParam<flann_algorithm_t>(params, "algorithm", FLANN_INDEX_LINEAR); in build()
358 if( algo == FLANN_INDEX_SAVED ) in build()
369 if ( algo == FLANN_INDEX_LSH) in build()
601 if( algo == FLANN_INDEX_LSH ) in radiusSearch()
638 return algo; in getAlgorithm()
733 algo = header.index_type; in load()
758 …eading FLANN index error: unsupported feature type %d for the index type %d\n", featureType, algo); in load()
/external/lzma/DOC/
DMethods.txt107 F0 - Ciphers without hashing algo
123 01 - Main Zip crypto algo
/external/iptables/extensions/
Dlibxt_string.c62 .flags = XTOPT_MAND | XTOPT_PUT, XTOPT_POINTER(s, algo)},
268 printf(" ALGO name %s", info->algo); in string_print()
292 printf(" --algo %s", info->algo); in string_save()
Dlibxt_string.man3 \fB\-\-algo\fP {\fBbm\fP|\fBkmp\fP}
/external/vboot_reference/scripts/image_signing/
Dsign_official_build.sh463 local algo algos=(
472 algo=${algos[${key_size}]}
473 if [[ -z ${algo} ]]; then
477 pad_digest_utility ${algo} "${image}" | \
/external/iproute2/include/linux/tc_ematch/
Dtc_em_text.h10 char algo[TC_EM_TEXT_ALGOSIZ]; member
/external/kernel-headers/original/uapi/linux/tc_ematch/
Dtc_em_text.h10 char algo[TC_EM_TEXT_ALGOSIZ]; member
/external/iptables/include/linux/netfilter/
Dxt_string.h17 char algo[XT_STRING_MAX_ALGO_NAME_SIZE]; member
/external/kernel-headers/original/uapi/linux/netfilter/
Dxt_string.h17 char algo[XT_STRING_MAX_ALGO_NAME_SIZE]; member
/external/opencv3/doc/tutorials/introduction/transition_guide/
Dtransition_guide.markdown72 Ptr<SomeAlgo> algo = makePtr<SomeAlgo>(...);
73 Ptr<SomeAlgo> algo = SomeAlgo::create(...);
78 Ptr<SomeAlgo> algo = new SomeAlgo(...);
79 SomeAlgo * algo = new SomeAlgo(...);
80 SomeAlgo algo(...);
81 Ptr<SomeAlgo> algo = Algorithm::create<SomeAlgo>("name");
/external/toybox/lib/
Dpassword.c12 int get_salt(char *salt, char *algo) in get_salt() argument
20 if (!strcmp(algo, al[i].type)) { in get_salt()
/external/lzma/CPP/7zip/Bundles/LzmaCon/
DLzmaAlone.cpp422 UInt32 algo = 1; in main2() local
429 ParseUInt32(parser, NKey::kAlgo, algo); in main2()
463 props[4].ulVal = (UInt32)algo; in main2()
/external/lzma/C/
DLzmaEnc.h24 int algo; /* 0 - fast, 1 - normal, default = 1 */ member
/external/iptables/tests/
Doptions-most.rules12 …e DEFAULT --rsource -m socket --transparent -m string --string "foobar" --algo kmp --from 1 --to 2…
39 -A INPUT -p tcp -m string --string "foobar" --algo kmp --from 1 --to 2 --icase
40 -A INPUT -p tcp -m string --hex-string "|00|" --algo kmp --from 1 --to 2 --icase
133 -A matches -m string --hex-string "action=|5C22|http|3A|" --algo bm
135 -A matches -m string --hex-string "action=|5C|http|3A|" --algo bm
/external/mdnsresponder/mDNSCore/
DDNSDigest.c1443 domainname * algo; in DNSDigest_VerifyMessage() local
1449 algo = (domainname*) ptr; in DNSDigest_VerifyMessage()
1451 if (!SameDomainName(algo, &HMAC_MD5_AlgName)) in DNSDigest_VerifyMessage()
1453 LogMsg("ERROR: DNSDigest_VerifyMessage - TSIG algorithm not supported: %##s", algo->c); in DNSDigest_VerifyMessage()
1460 ptr += DomainNameLength(algo); in DNSDigest_VerifyMessage()
1531 MD5_Update(&c, algo->c, DomainNameLength(algo)); in DNSDigest_VerifyMessage()
/external/curl/lib/
Dx509asn1.c804 const char * algo, curl_asn1Element * param, in do_pubkey() argument
819 if(curl_strequal(algo, "rsaEncryption")) { in do_pubkey()
844 else if(curl_strequal(algo, "dsa")) { in do_pubkey()
853 else if(curl_strequal(algo, "dhpublicnumber")) { in do_pubkey()
861 else if(curl_strequal(algo, "ecPublicKey")) { in do_pubkey()
Dcurl_sasl.c842 digest->algo = CURLDIGESTALGO_MD5SESS; in Curl_sasl_decode_digest_http_message()
844 digest->algo = CURLDIGESTALGO_MD5; in Curl_sasl_decode_digest_http_message()
955 if(digest->algo == CURLDIGESTALGO_MD5SESS) { in Curl_sasl_create_digest_http_message()
1127 digest->algo = CURLDIGESTALGO_MD5; /* default algorithm */ in Curl_sasl_digest_cleanup()
/external/opencv3/modules/flann/include/opencv2/flann/
Dminiflann.hpp151 cvflann::flann_algorithm_t algo; member in cv::flann::Index
/external/lzma/CPP/7zip/Compress/
DLzmaEncoder.cpp103 SET_PROP_32(kAlgorithm, algo) in SetLzmaProp()
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
DTestCertUtils.java274 private static final String algo = "testPublicKeyAlgorithm"; field in TestCertUtils.TestPublicKey
282 return algo; in getAlgorithm()

123