HomeSort by relevance Sort by last modified time
    Searched refs:partLen (Results 1 - 6 of 6) sorted by null

  /external/libjpeg-turbo/md5/
md5.c 158 unsigned int i, idx, partLen;
170 partLen = 64 - idx;
173 if (inputLen >= partLen) {
175 partLen);
178 for (i = partLen; i + 63 < inputLen; i += 64)
  /external/syslinux/com32/libutil/
md5.c 99 unsigned int i, idx, partLen;
111 partLen = 64 - idx;
114 if (inputLen >= partLen) {
115 memcpy((void *)&context->buffer[idx], (const void *)input, partLen);
118 for (i = partLen; i + 63 < inputLen; i += 64)
  /external/dng_sdk/source/
dng_fingerprint.cpp 282 uint32 partLen = 64 - index;
284 if (inputLen >= partLen)
289 partLen);
293 for (i = partLen; i + 63 < inputLen; i += 64)
  /external/icu/icu4c/source/test/perf/collperf2/
collperf2.cpp 379 int32_t partLen = bufSize;
380 for (int32_t n = 0; U_SUCCESS(*status) && partLen == bufSize && (maxIteration < 0 || n < maxIteration); n++) {
381 partLen = ucol_nextSortKeyPart(coll, &iter, state, part, bufSize, status);
446 int32_t partLen = bufSize;
447 for (int32_t n = 0; U_SUCCESS(*status) && partLen == bufSize && (maxIteration < 0 || n < maxIteration); n++) {
448 partLen = ucol_nextSortKeyPart(coll, &iter, state, part, bufSize, status);
    [all...]
  /external/skia/tools/bookmaker/
includeWriter.cpp 692 int partLen = (int) (partEnd - partStart);
694 SkASSERT(partLen > 0 && partLen < 300); // may assert if param desc is especially long
696 this->rewriteBlock(partLen, partStart, Phrase::kYes);
    [all...]
  /external/skqp/tools/bookmaker/
includeWriter.cpp 639 int partLen = (int) (partEnd - partStart);
641 SkASSERT(partLen > 0 && partLen < 300); // may assert if param desc is especially long
643 this->rewriteBlock(partLen, partStart, Phrase::kYes);
    [all...]

Completed in 151 milliseconds