Searched refs:inLen (Results 1 – 2 of 2) sorted by relevance
| /lib/liblwip/src/netif/ppp/ |
| D | md5.c | 134 MD5Update(MD5_CTX *mdContext, unsigned char *inBuf, unsigned int inLen) in MD5Update() argument 141 PPPDEBUG(LOG_INFO, ("MD5Update: %u:%.*H\n", inLen, LWIP_MIN(inLen, 20) * 2, inBuf)); in MD5Update() 142 PPPDEBUG(LOG_INFO, ("MD5Update: %u:%s\n", inLen, inBuf)); in MD5Update() 149 if ((mdContext->i[0] + ((u32_t)inLen << 3)) < mdContext->i[0]) { in MD5Update() 152 mdContext->i[0] += ((u32_t)inLen << 3); in MD5Update() 153 mdContext->i[1] += ((u32_t)inLen >> 29); in MD5Update() 155 while (inLen--) { in MD5Update()
|
| D | md5.h | 52 void MD5Update( MD5_CTX *mdContext, unsigned char *inBuf, unsigned int inLen);
|