Home | History | Annotate | Download | only in C

Lines Matching refs:curBufferPos

162   UInt32 curBufferPos = (UInt32)p->count & 0x3F;

165 p->buffer[curBufferPos++] = *data++;
168 if (curBufferPos == 64)
170 curBufferPos = 0;
179 UInt32 curBufferPos = (UInt32)p->count & 0x3F;
181 p->buffer[curBufferPos++] = 0x80;
182 while (curBufferPos != (64 - 8))
184 curBufferPos &= 0x3F;
185 if (curBufferPos == 0)
187 p->buffer[curBufferPos++] = 0;
191 p->buffer[curBufferPos++] = (Byte)(lenInBits >> 56);