Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/intltest/
Dapicoll.cpp1116 const uint8_t *tempkey = key1.getByteArray(keylength); in TestSortKey() local
1117 doAssert(memcmp(tempkey, sortkey1, keylength) == 0, in TestSortKey()
1119 tempkey = key2.getByteArray(keylength); in TestSortKey()
1120 doAssert(memcmp(tempkey, sortkey2, keylength) == 0, in TestSortKey()
1122 tempkey = key3.getByteArray(keylength); in TestSortKey()
1123 doAssert(memcmp(tempkey, sortkey3, keylength) == 0, in TestSortKey()
1130 tempkey = key1.getByteArray(keylength); in TestSortKey()
1131 doAssert(memcmp(tempkey, sortkey1, keylength) == 0, in TestSortKey()
1133 tempkey = key2.getByteArray(keylength); in TestSortKey()
1134 doAssert(memcmp(tempkey, sortkey2, keylength) == 0, in TestSortKey()
[all …]
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_encrypt.cpp499 uint8_t tempkey[32]; in GetUserPassword() local
500 FXSYS_memset(tempkey, 0, sizeof(tempkey)); in GetUserPassword()
502 tempkey[j] = enckey[j] ^ i; in GetUserPassword()
504 CRYPT_ArcFourCryptBlock(okeybuf, okeylen, tempkey, key_len); in GetUserPassword()
586 uint8_t tempkey[32]; in OnCreate() local
590 tempkey[j] = enckey[j] ^ (uint8_t)i; in OnCreate()
592 CRYPT_ArcFourCryptBlock(passcode, 32, tempkey, key_len); in OnCreate()
615 uint8_t tempkey[32]; in OnCreate() local
618 tempkey[j] = m_EncryptKey[j] ^ (uint8_t)i; in OnCreate()
620 CRYPT_ArcFourCryptBlock(digest, 16, tempkey, key_len); in OnCreate()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
DCollationAPITest.java133 byte tempkey[] = key2.toByteArray(); in TestCollationKey()
134 byte subkey2compat[] = new byte[tempkey.length]; in TestCollationKey()
135 System.arraycopy(key2identical, 0, subkey2compat, 0, tempkey.length); in TestCollationKey()
137 doAssert(Arrays.equals(tempkey, subkey2compat), in TestCollationKey()
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationAPITest.java129 byte tempkey[] = key2.toByteArray(); in TestCollationKey()
130 byte subkey2compat[] = new byte[tempkey.length]; in TestCollationKey()
131 System.arraycopy(key2identical, 0, subkey2compat, 0, tempkey.length); in TestCollationKey()
133 doAssert(Arrays.equals(tempkey, subkey2compat), in TestCollationKey()