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

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerSHA1.cpp 57 uint32_t byteCount;
91 s->byteCount = 0;
151 ++s->byteCount;
170 sha1_addUncounted(s, s->byteCount >> 29); // Shifting to multiply by 8
171 sha1_addUncounted(s, s->byteCount >> 21); // as SHA-1 supports bitstreams as well as
172 sha1_addUncounted(s, s->byteCount >> 13); // byte.
173 sha1_addUncounted(s, s->byteCount >> 5);
174 sha1_addUncounted(s, s->byteCount << 3);
FuzzerSHA1.cpp 57 uint32_t byteCount;
91 s->byteCount = 0;
151 ++s->byteCount;
170 sha1_addUncounted(s, s->byteCount >> 29); // Shifting to multiply by 8
171 sha1_addUncounted(s, s->byteCount >> 21); // as SHA-1 supports bitstreams as well as
172 sha1_addUncounted(s, s->byteCount >> 13); // byte.
173 sha1_addUncounted(s, s->byteCount >> 5);
174 sha1_addUncounted(s, s->byteCount << 3);

Completed in 45 milliseconds