Lines Matching refs:l
48 locale_t l = newlocale(LC_ALL, "C", 0); in TEST() local
49 ASSERT_EQ(0, strcasecmp_l("hello", "HELLO", l)); in TEST()
50 ASSERT_LT(strcasecmp_l("hello1", "hello2", l), 0); in TEST()
51 ASSERT_GT(strcasecmp_l("hello2", "hello1", l), 0); in TEST()
52 freelocale(l); in TEST()
63 locale_t l = newlocale(LC_ALL, "C", 0); in TEST() local
64 ASSERT_EQ(0, strncasecmp_l("hello", "HELLO", 3, l)); in TEST()
65 ASSERT_EQ(0, strncasecmp_l("abcXX", "ABCYY", 3, l)); in TEST()
66 ASSERT_LT(strncasecmp_l("hello1", "hello2", 6, l), 0); in TEST()
67 ASSERT_GT(strncasecmp_l("hello2", "hello1", 6, l), 0); in TEST()
68 freelocale(l); in TEST()