Lines Matching refs:thisp
40 cbc_xorblock(uint8_t *lastp, uint8_t *thisp, int blocksize)
46 if (IS_P2ALIGNED(thisp, sizeof (uint32_t)) &&
50 this32p = (uint32_t *)thisp;
60 thisp[i] ^= lastp[i];
70 uint8_t *thisp;
77 thisp = data;
81 cbc_xorblock(lastp, thisp, ch->blocklen);
83 ch->encrypt(ch->ks, thisp);
84 lastp = thisp;
85 thisp += ch->blocklen;
98 uint8_t *thisp;
105 thisp = data;
111 bcopy(thisp, cbcblock, ch->blocklen);
114 ch->decrypt(ch->ks, thisp);
116 cbc_xorblock(lastp, thisp, ch->blocklen);
120 thisp += ch->blocklen;