Lines Matching refs:ptp

927     const block* ptp = (block*)pt;  in ae_encrypt()  local
954 ta[0] = xor_block(oa[0], ptp[0]); in ae_encrypt()
955 checksum = xor_block(checksum, ptp[0]); in ae_encrypt()
957 ta[1] = xor_block(oa[1], ptp[1]); in ae_encrypt()
958 checksum = xor_block(checksum, ptp[1]); in ae_encrypt()
960 ta[2] = xor_block(oa[2], ptp[2]); in ae_encrypt()
961 checksum = xor_block(checksum, ptp[2]); in ae_encrypt()
964 ta[3] = xor_block(oa[3], ptp[3]); in ae_encrypt()
965 checksum = xor_block(checksum, ptp[3]); in ae_encrypt()
968 ta[3] = xor_block(oa[3], ptp[3]); in ae_encrypt()
969 checksum = xor_block(checksum, ptp[3]); in ae_encrypt()
971 ta[4] = xor_block(oa[4], ptp[4]); in ae_encrypt()
972 checksum = xor_block(checksum, ptp[4]); in ae_encrypt()
974 ta[5] = xor_block(oa[5], ptp[5]); in ae_encrypt()
975 checksum = xor_block(checksum, ptp[5]); in ae_encrypt()
977 ta[6] = xor_block(oa[6], ptp[6]); in ae_encrypt()
978 checksum = xor_block(checksum, ptp[6]); in ae_encrypt()
980 ta[7] = xor_block(oa[7], ptp[7]); in ae_encrypt()
981 checksum = xor_block(checksum, ptp[7]); in ae_encrypt()
994 ptp += BPI; in ae_encrypt()
1012 ta[0] = xor_block(oa[0], ptp[0]); in ae_encrypt()
1013 checksum = xor_block(checksum, ptp[0]); in ae_encrypt()
1015 ta[1] = xor_block(oa[1], ptp[1]); in ae_encrypt()
1016 checksum = xor_block(checksum, ptp[1]); in ae_encrypt()
1018 ta[2] = xor_block(oa[2], ptp[2]); in ae_encrypt()
1019 checksum = xor_block(checksum, ptp[2]); in ae_encrypt()
1021 ta[3] = xor_block(offset, ptp[3]); in ae_encrypt()
1022 checksum = xor_block(checksum, ptp[3]); in ae_encrypt()
1029 ta[k] = xor_block(oa[k], ptp[k]); in ae_encrypt()
1030 checksum = xor_block(checksum, ptp[k]); in ae_encrypt()
1032 ta[k + 1] = xor_block(offset, ptp[k + 1]); in ae_encrypt()
1033 checksum = xor_block(checksum, ptp[k + 1]); in ae_encrypt()
1039 ta[k] = xor_block(offset, ptp[k]); in ae_encrypt()
1040 checksum = xor_block(checksum, ptp[k]); in ae_encrypt()
1046 memcpy(tmp.u8, ptp + k, remaining); in ae_encrypt()
1138 block* ptp = (block*)pt; in ae_decrypt() local
1194 ptp[0] = xor_block(ta[0], oa[0]); in ae_decrypt()
1195 checksum = xor_block(checksum, ptp[0]); in ae_decrypt()
1196 ptp[1] = xor_block(ta[1], oa[1]); in ae_decrypt()
1197 checksum = xor_block(checksum, ptp[1]); in ae_decrypt()
1198 ptp[2] = xor_block(ta[2], oa[2]); in ae_decrypt()
1199 checksum = xor_block(checksum, ptp[2]); in ae_decrypt()
1200 ptp[3] = xor_block(ta[3], oa[3]); in ae_decrypt()
1201 checksum = xor_block(checksum, ptp[3]); in ae_decrypt()
1203 ptp[4] = xor_block(ta[4], oa[4]); in ae_decrypt()
1204 checksum = xor_block(checksum, ptp[4]); in ae_decrypt()
1205 ptp[5] = xor_block(ta[5], oa[5]); in ae_decrypt()
1206 checksum = xor_block(checksum, ptp[5]); in ae_decrypt()
1207 ptp[6] = xor_block(ta[6], oa[6]); in ae_decrypt()
1208 checksum = xor_block(checksum, ptp[6]); in ae_decrypt()
1209 ptp[7] = xor_block(ta[7], oa[7]); in ae_decrypt()
1210 checksum = xor_block(checksum, ptp[7]); in ae_decrypt()
1212 ptp += BPI; in ae_decrypt()
1263 memcpy(ptp + k, tmp.u8, remaining); in ae_decrypt()
1271 ptp[6] = xor_block(ta[6], oa[6]); in ae_decrypt()
1272 checksum = xor_block(checksum, ptp[6]); in ae_decrypt()
1274 ptp[5] = xor_block(ta[5], oa[5]); in ae_decrypt()
1275 checksum = xor_block(checksum, ptp[5]); in ae_decrypt()
1277 ptp[4] = xor_block(ta[4], oa[4]); in ae_decrypt()
1278 checksum = xor_block(checksum, ptp[4]); in ae_decrypt()
1280 ptp[3] = xor_block(ta[3], oa[3]); in ae_decrypt()
1281 checksum = xor_block(checksum, ptp[3]); in ae_decrypt()
1284 ptp[2] = xor_block(ta[2], oa[2]); in ae_decrypt()
1285 checksum = xor_block(checksum, ptp[2]); in ae_decrypt()
1287 ptp[1] = xor_block(ta[1], oa[1]); in ae_decrypt()
1288 checksum = xor_block(checksum, ptp[1]); in ae_decrypt()
1290 ptp[0] = xor_block(ta[0], oa[0]); in ae_decrypt()
1291 checksum = xor_block(checksum, ptp[0]); in ae_decrypt()