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()
416 const unsigned char *sptr = (const unsigned char *)src; in BF_encode() local
417 const unsigned char *end = sptr + size; in BF_encode()
422 c1 = *sptr++; in BF_encode()
425 if (sptr >= end) { in BF_encode()
430 c2 = *sptr++; in BF_encode()
434 if (sptr >= end) { in BF_encode()
439 c2 = *sptr++; in BF_encode()
443 } while (sptr < end); in BF_encode()