Lines Matching refs:i
46 size_t i; in CryptoUtils_buffersMatch() local
53 for (i = 0; i < bufferByteLength; i++) { in CryptoUtils_buffersMatch()
54 tempResult |= ((uint8_t *)buffer0)[i] ^ ((uint8_t *)buffer1)[i]; in CryptoUtils_buffersMatch()
67 size_t i; in CryptoUtils_buffersMatchWordAligned() local
81 for (i = 0; i < bufferByteLength / sizeof(uint32_t); i++) { in CryptoUtils_buffersMatchWordAligned()
82 tempResult |= buffer0[i] ^ buffer1[i]; in CryptoUtils_buffersMatchWordAligned()
111 uint32_t i; in CryptoUtils_reverseCopyPad() local
128 for (i = 0; i < sourceLength / sizeof(uint32_t); i++) { in CryptoUtils_reverseCopyPad()
129 uint32_t sourceOffset = sourceLength - 1 - sizeof(uint32_t) * i; in CryptoUtils_reverseCopyPad()
136 *((uint32_t *)destination + i) = temp; in CryptoUtils_reverseCopyPad()
152 *((uint32_t *)destination + i) = temp; in CryptoUtils_reverseCopyPad()
159 *((uint32_t *)destination + i) = temp; in CryptoUtils_reverseCopyPad()
167 *((uint32_t *)destination + i) = temp; in CryptoUtils_reverseCopyPad()