Home | History | Annotate | Download | only in unit

Lines Matching defs:strs

23 	const char *strs[] = {"a string", "A string", "a string.", "A string."};
36 for (i = 0; i < sizeof(strs) / sizeof(const char *); i++) {
37 ckh_insert(tsd, &ckh, strs[i], strs[i]);
44 for (i = 0; i < sizeof(strs) / sizeof(const char *); i++) {
56 expect_false(ckh_search(&ckh, strs[i], kp, vp),
59 ks = (i & 1) ? strs[i] : (const char *)NULL;
60 vs = (i & 2) ? strs[i] : (const char *)NULL;
70 for (i = 0; i < sizeof(strs) / sizeof(const char *); i++) {
82 expect_false(ckh_remove(tsd, &ckh, strs[i], kp, vp),
85 ks = (i & 1) ? strs[i] : (const char *)NULL;
86 vs = (i & 2) ? strs[i] : (const char *)NULL;
92 sizeof(strs) / sizeof(const char *) - i - 1,
94 sizeof(strs) / sizeof(const char *) - i - 1,