Lines Matching refs:i
69 uint8_t i; in Init() local
115 for (i = sizeof(mBlock) - 1; i > aNonceLength; i--) in Init()
117 mBlock[i] = len & 0xff; in Init()
166 for (unsigned i = 0; i < aHeaderLength; i++) in Header() local
174 mBlock[mBlockLength++] ^= headerBytes[i]; in Header()
199 for (unsigned i = 0; i < aLength; i++) in Payload() local
217 byte = plaintextBytes[i]; in Payload()
218 ciphertextBytes[i] = byte ^ mCtrPad[mCtrLength++]; in Payload()
222 byte = ciphertextBytes[i] ^ mCtrPad[mCtrLength++]; in Payload()
223 plaintextBytes[i] = byte; in Payload()
272 for (int i = 0; i < mTagLength; i++) in Finalize() local
274 tagBytes[i] = mBlock[i] ^ mCtrPad[i]; in Finalize()