Searched refs:inputLen (Results 1 - 4 of 4) sorted by relevance

/haiku/src/bin/network/ftpd/
H A Dmd5c.c153 MD5Update (context, in, inputLen)
156 unsigned int inputLen;
165 if ((context->count[0] += ((u_int32_t)inputLen << 3))
166 < ((u_int32_t)inputLen << 3))
168 context->count[1] += ((u_int32_t)inputLen >> 29);
173 if (inputLen >= partLen) {
178 for (i = partLen; i + 63 < inputLen; i += 64)
188 inputLen-i);
/haiku/src/libs/compat/freebsd_iflib/
H A Dmd5c.c154 MD5Update (context, in, inputLen)
157 unsigned int inputLen;
166 if ((context->count[0] += ((u_int32_t)inputLen << 3))
167 < ((u_int32_t)inputLen << 3))
169 context->count[1] += ((u_int32_t)inputLen >> 29);
174 if (inputLen >= partLen) {
179 for (i = partLen; i + 63 < inputLen; i += 64)
189 inputLen-i);
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A Dmd5c.c119 void MD5_Update (MD5_CTX *context, unsigned char *input, unsigned int inputLen) argument
130 if ((context->count[0] += ((UINT4)inputLen << 3))
131 < ((UINT4)inputLen << 3))
133 context->count[1] += ((UINT4)inputLen >> 29);
139 if (inputLen >= partLen) {
144 for (i = partLen; i + 63 < inputLen; i += 64)
155 inputLen-i);
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A Dmd5c.c119 void MD5Update (MD5_CTX *context, unsigned char *input, unsigned int inputLen) argument
130 if ((context->count[0] += ((UINT4)inputLen << 3))
131 < ((UINT4)inputLen << 3))
133 context->count[1] += ((UINT4)inputLen >> 29);
139 if (inputLen >= partLen) {
144 for (i = partLen; i + 63 < inputLen; i += 64)
155 inputLen-i);

Completed in 45 milliseconds