Home | History | Annotate | Download | only in libvpx

Lines Matching full:bytes

12  * To compute the message digest of a chunk of bytes, declare an
14 * needed on buffers full of bytes, and then call MD5Final, which
32 /* Only swap bytes for big endian machines */
61 ctx->bytes[0] = 0;
62 ctx->bytes[1] = 0;
67 * of bytes.
76 t = ctx->bytes[0];
78 if ((ctx->bytes[0] = t + len) < t)
79 ctx->bytes[1]++; /* Carry from low to high */
106 /* Handle any remaining bytes of data. */
117 int count = ctx->bytes[0] & 0x3f; /* Number of bytes in ctx->in */
123 /* Bytes of padding needed to make 56 bytes (-8..55) */
139 ctx->in[14] = ctx->bytes[0] << 3;
140 ctx->in[15] = ctx->bytes[1] << 3 | ctx->bytes[0] >> 29;
165 * the data and converts bytes into longwords for this routine.