Home | History | Annotate | Download | only in intltest

Lines Matching refs:sortkey2

1101     uint8_t sortkey2[64];
1129 col->getSortKey(test2, sortkey2, 64);
1136 doAssert(memcmp(tempkey, sortkey2, keylength) == 0,
1143 col->getSortKey(test2, 5, sortkey2, 64);
1150 doAssert(memcmp(tempkey, sortkey2, keylength) == 0,
1159 col->getSortKey(strtest2, sortkey2, 64);
1167 doAssert(memcmp(tempkey, sortkey2, keylength) == 0,
1190 col->getSortKey(test2, sortkey2, 64);
1197 doAssert(memcmp(tempkey, sortkey2, keylength) == 0,
1204 col->getSortKey(test2, 5, sortkey2, 64);
1211 doAssert(memcmp(tempkey, sortkey2, keylength) == 0,
1218 col->getSortKey(strtest2, sortkey2, 64);
1225 doAssert(memcmp(tempkey, sortkey2, keylength) == 0,
1248 uint8_t sortKey2[12];
1250 uprv_memset(sortKey2, 2, LENGTHOF(sortKey2));
1251 int32_t length2 = col->getSortKey(i_and_phi, 2, sortKey2, capacity);
1252 if (length2 != length || 0 != uprv_memcmp(sortKey, sortKey2, capacity)) {
1254 } else if (sortKey2[capacity] != 2 || sortKey2[capacity + 1] != 2) {