Home | History | Annotate | Download | only in intltest

Lines Matching full:sortkey2

1123     uint8_t sortkey2[64];
1151 col->getSortKey(test2, sortkey2, 64);
1158 doAssert(memcmp(tempkey, sortkey2, keylength) == 0,
1165 col->getSortKey(test2, 5, sortkey2, 64);
1172 doAssert(memcmp(tempkey, sortkey2, keylength) == 0,
1181 col->getSortKey(strtest2, sortkey2, 64);
1189 doAssert(memcmp(tempkey, sortkey2, keylength) == 0,
1212 col->getSortKey(test2, sortkey2, 64);
1219 doAssert(memcmp(tempkey, sortkey2, keylength) == 0,
1226 col->getSortKey(test2, 5, sortkey2, 64);
1233 doAssert(memcmp(tempkey, sortkey2
1240 col->getSortKey(strtest2, sortkey2, 64);
1247 doAssert(memcmp(tempkey, sortkey2, keylength) == 0,
1270 uint8_t sortKey2[12];
1272 uprv_memset(sortKey2, 2, LENGTHOF(sortKey2));
1273 int32_t length2 = col->getSortKey(i_and_phi, 2, sortKey2, capacity);
1274 if (length2 != length || 0 != uprv_memcmp(sortKey, sortKey2, capacity)) {
1276 } else if (sortKey2[capacity] != 2 || sortKey2[capacity + 1] != 2) {