Home | History | Annotate | Download | only in utils

Lines Matching defs:bufferIndex

34     unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F);
35 unsigned int bufferAvailable = 64 - bufferIndex;
39 if (bufferIndex) {
40 memcpy(&this->buffer[bufferIndex], input, bufferAvailable);
51 bufferIndex = 0;
56 memcpy(&this->buffer[bufferIndex], &input[inputIndex], inputLength - inputIndex);
67 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F);
68 unsigned int paddingLength = (bufferIndex < 56) ? (56 - bufferIndex) : (120 - bufferIndex);