Lines Matching refs:sptr
391 const unsigned char *sptr = (const unsigned char *)src; in BF_decode() local
395 BF_safe_atoi64(c1, *sptr++); in BF_decode()
396 BF_safe_atoi64(c2, *sptr++); in BF_decode()
400 BF_safe_atoi64(c3, *sptr++); in BF_decode()
404 BF_safe_atoi64(c4, *sptr++); in BF_decode()
420 const unsigned char *sptr = (const unsigned char *)src; in BF_encode() local
421 const unsigned char *end = sptr + size; in BF_encode()
426 c1 = *sptr++; in BF_encode()
429 if (sptr >= end) { in BF_encode()
434 c2 = *sptr++; in BF_encode()
438 if (sptr >= end) { in BF_encode()
443 c2 = *sptr++; in BF_encode()
447 } while (sptr < end); in BF_encode()