Home | History | Annotate | Download | only in C

Lines Matching refs:curBufferPos

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

167 p->buffer[curBufferPos++] = *data++;
170 if (curBufferPos == 64)
172 curBufferPos = 0;
181 UInt32 curBufferPos = (UInt32)p->count & 0x3F;
183 p->buffer[curBufferPos++] = 0x80;
184 while (curBufferPos != (64 - 8))
186 curBufferPos &= 0x3F;
187 if (curBufferPos == 0)
189 p->buffer[curBufferPos++] = 0;
193 p->buffer[curBufferPos++] = (Byte)(lenInBits >> 56);