HomeSort by: relevance | last modified time | path
    Searched defs:II (Results 1 - 3 of 3) sorted by relevancy

  /src/common/lib/libc/md/
md5c.c 147 * FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
168 #define II(a, b, c, d, x, s, ac) { \
331 II (a, b, c, d, x[ 0], S41, 0xf4292244); /* 49 */
332 II (d, a, b, c, x[ 7], S42, 0x432aff97); /* 50 */
333 II (c, d, a, b, x[14], S43, 0xab9423a7); /* 51 */
334 II (b, c, d, a, x[ 5], S44, 0xfc93a039); /* 52 */
335 II (a, b, c, d, x[12], S41, 0x655b59c3); /* 53 */
336 II (d, a, b, c, x[ 3], S42, 0x8f0ccc92); /* 54 */
337 II (c, d, a, b, x[10], S43, 0xffeff47d); /* 55 */
338 II (b, c, d, a, x[ 1], S44, 0x85845dd1); /* 56 *
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerCorpus.h 52 for (auto II : Inputs)
53 delete II;
58 for (auto II : Inputs)
59 Res += II->U.size();
64 for (auto II : Inputs)
65 Res += !II->U.empty();
70 for (auto II : Inputs)
71 Res = std::max(Res, II->U.size());
76 return std::count_if(Inputs.begin(), Inputs.end(), [](const InputInfo *II) {
77 return II->HasFocusFunction
    [all...]
FuzzerLoop.cpp 476 InputInfo *II, bool *FoundUniqFeatures) {
499 if (Options.ReduceInputs && II)
500 if (std::binary_search(II->UniqFeatureSet.begin(),
501 II->UniqFeatureSet.end(), Feature))
513 TPC.ObservedFocusFunction(), UniqFeatureSetTmp, DFT, II);
516 if (II && FoundUniqFeaturesOfII &&
517 II->DataFlowTraceForFocusFunction.empty() &&
518 FoundUniqFeaturesOfII == II->UniqFeatureSet.size() &&
519 II->U.size() > Size) {
520 Corpus.Replace(II, {Data, Data + Size})
    [all...]

Completed in 14 milliseconds