Home
last modified time | relevance | path

Searched refs:tempkey (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4c/source/test/intltest/
Dapicoll.cpp1135 const uint8_t *tempkey = key1.getByteArray(keylength); in TestSortKey() local
1136 doAssert(memcmp(tempkey, sortkey1, keylength) == 0, in TestSortKey()
1138 tempkey = key2.getByteArray(keylength); in TestSortKey()
1139 doAssert(memcmp(tempkey, sortkey2, keylength) == 0, in TestSortKey()
1141 tempkey = key3.getByteArray(keylength); in TestSortKey()
1142 doAssert(memcmp(tempkey, sortkey3, keylength) == 0, in TestSortKey()
1149 tempkey = key1.getByteArray(keylength); in TestSortKey()
1150 doAssert(memcmp(tempkey, sortkey1, keylength) == 0, in TestSortKey()
1152 tempkey = key2.getByteArray(keylength); in TestSortKey()
1153 doAssert(memcmp(tempkey, sortkey2, keylength) == 0, in TestSortKey()
[all …]
/external/pdfium/core/fpdfapi/parser/
Dcpdf_security_handler.cpp484 uint8_t tempkey[32]; in GetUserPassword() local
485 memset(tempkey, 0, sizeof(tempkey)); in GetUserPassword()
487 tempkey[j] = enckey[j] ^ static_cast<uint8_t>(i); in GetUserPassword()
488 CRYPT_ArcFourCryptBlock(okeybuf, okeylen, tempkey, key_len); in GetUserPassword()
565 uint8_t tempkey[32]; in OnCreateInternal() local
569 tempkey[j] = enckey[j] ^ i; in OnCreateInternal()
570 CRYPT_ArcFourCryptBlock(passcode, 32, tempkey, key_len); in OnCreateInternal()
598 uint8_t tempkey[32]; in OnCreateInternal() local
601 tempkey[j] = m_EncryptKey[j] ^ i; in OnCreateInternal()
603 CRYPT_ArcFourCryptBlock(digest, 16, tempkey, key_len); in OnCreateInternal()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
DCollationAPITest.java135 byte tempkey[] = key2.toByteArray(); in TestCollationKey()
136 byte subkey2compat[] = new byte[tempkey.length]; in TestCollationKey()
137 System.arraycopy(key2identical, 0, subkey2compat, 0, tempkey.length); in TestCollationKey()
139 doAssert(Arrays.equals(tempkey, subkey2compat), in TestCollationKey()
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationAPITest.java132 byte tempkey[] = key2.toByteArray(); in TestCollationKey()
133 byte subkey2compat[] = new byte[tempkey.length]; in TestCollationKey()
134 System.arraycopy(key2identical, 0, subkey2compat, 0, tempkey.length); in TestCollationKey()
136 doAssert(Arrays.equals(tempkey, subkey2compat), in TestCollationKey()