Lines Matching defs:uint8_t
44 int (*encrypt)(const void *, const uint8_t *, uint8_t *),
45 void (*copy_block)(uint8_t *, uint8_t *),
46 void (*xor_block)(uint8_t *, uint8_t *))
50 uint8_t *datap = (uint8_t *)data;
51 uint8_t *blockp;
52 uint8_t *lastp;
55 uint8_t *out_data_1;
56 uint8_t *out_data_2;
62 (uint8_t *)ctx->cbc_remainder + ctx->cbc_remainder_len,
69 lastp = (uint8_t *)ctx->cbc_iv;
81 bcopy(datap, &((uint8_t *)ctx->cbc_remainder)
84 blockp = (uint8_t *)ctx->cbc_remainder;
157 copy_block((uint8_t *)ctx->cbc_lastp, (uint8_t *)ctx->cbc_iv);
158 ctx->cbc_lastp = (uint8_t *)ctx->cbc_iv;
171 int (*decrypt)(const void *, const uint8_t *, uint8_t *),
172 void (*copy_block)(uint8_t *, uint8_t *),
173 void (*xor_block)(uint8_t *, uint8_t *))
177 uint8_t *datap = (uint8_t *)data;
178 uint8_t *blockp;
179 uint8_t *lastp;
182 uint8_t *out_data_1;
183 uint8_t *out_data_2;
189 (uint8_t *)ctx->cbc_remainder + ctx->cbc_remainder_len,
208 bcopy(datap, &((uint8_t *)ctx->cbc_remainder)
211 blockp = (uint8_t *)ctx->cbc_remainder;
217 copy_block(blockp, (uint8_t *)OTHER((uint64_t *)lastp, ctx));
221 (uint8_t *)ctx->cbc_remainder);
222 blockp = (uint8_t *)ctx->cbc_remainder;
234 lastp = (uint8_t *)OTHER((uint64_t *)lastp, ctx);
283 size_t block_size, void (*copy_block)(uint8_t *, uint64_t *))
300 cbc_ctx->cbc_lastp = (uint8_t *)&cbc_ctx->cbc_iv[0];