Lines Matching refs:sptr
384 const unsigned char *sptr = (const unsigned char *)src; in BF_decode() local
388 BF_safe_atoi64(c1, *sptr++); in BF_decode()
389 BF_safe_atoi64(c2, *sptr++); in BF_decode()
393 BF_safe_atoi64(c3, *sptr++); in BF_decode()
397 BF_safe_atoi64(c4, *sptr++); in BF_decode()
406 const unsigned char *sptr = (const unsigned char *)src; in BF_encode() local
407 const unsigned char *end = sptr + size; in BF_encode()
412 c1 = *sptr++; in BF_encode()
415 if (sptr >= end) { in BF_encode()
420 c2 = *sptr++; in BF_encode()
424 if (sptr >= end) { in BF_encode()
429 c2 = *sptr++; in BF_encode()
433 } while (sptr < end); in BF_encode()