Lines Matching refs:ptr
531 ptr = data.ctx.P; \
533 ptr += 2; \
535 *(ptr - 2) = L; \
536 *(ptr - 1) = R; \
537 } while (ptr < &data.ctx.P[BF_N + 2]); \
539 ptr = data.ctx.S[0]; \
541 ptr += 2; \
543 *(ptr - 2) = L; \
544 *(ptr - 1) = R; \
545 } while (ptr < &data.ctx.S[3][0xFF]);
551 const char *ptr = key; in BF_set_key() local
599 tmp[0] |= (unsigned char)*ptr; /* correct */ in BF_set_key()
601 tmp[1] |= (BF_word_signed)(signed char)*ptr; /* bug */ in BF_set_key()
610 if (!*ptr) in BF_set_key()
611 ptr = key; in BF_set_key()
613 ptr++; in BF_set_key()
671 BF_word *ptr; in BF_crypt() local
714 ptr = data.ctx.S[0]; in BF_crypt()
716 ptr += 4; in BF_crypt()
720 *(ptr - 4) = L; in BF_crypt()
721 *(ptr - 3) = R; in BF_crypt()
726 *(ptr - 2) = L; in BF_crypt()
727 *(ptr - 1) = R; in BF_crypt()
728 } while (ptr < &data.ctx.S[3][0xFF]); in BF_crypt()