HomeSort by relevance Sort by last modified time
    Searched defs:bufferAvailable (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/src/utils/
SkSHA1.cpp 35 unsigned int bufferAvailable = 64 - bufferIndex;
38 if (inputLength >= bufferAvailable) {
40 memcpy(&this->buffer[bufferIndex], input, bufferAvailable);
42 inputIndex = bufferAvailable;
SkMD5.cpp 37 unsigned int bufferAvailable = 64 - bufferIndex;
40 if (inputLength >= bufferAvailable) {
42 memcpy(&this->buffer[bufferIndex], input, bufferAvailable);
44 inputIndex = bufferAvailable;

Completed in 53 milliseconds