Home | History | Annotate | Download | only in utils

Lines Matching defs:bufferIndex

36     unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F);
37 unsigned int bufferAvailable = 64 - bufferIndex;
41 if (bufferIndex) {
42 memcpy(&this->buffer[bufferIndex], input, bufferAvailable);
53 bufferIndex = 0;
58 memcpy(&this->buffer[bufferIndex], &input[inputIndex], inputLength - inputIndex);
69 unsigned int bufferIndex = (unsigned int)(this->byteCount & 0x3F);
70 unsigned int paddingLength = (bufferIndex < 56) ? (56 - bufferIndex) : (120 - bufferIndex);