Home
last modified time | relevance | path

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

/string/
A Dtest-strcmp.c70 size_t ns1 = wcslen (s1) + 1; in stupid_wcscmp() local
72 size_t n = ns1 < ns2 ? ns1 : ns2; in stupid_wcscmp()
119 size_t ns1 = strlen (s1) + 1; in stupid_strcmp() local
121 size_t n = ns1 < ns2 ? ns1 : ns2; in stupid_strcmp()
A Dtest-strcasecmp.c48 size_t ns1 = strlen (s1) + 1, ns2 = strlen (s2) + 1; in stupid_strcasecmp() local
49 size_t n = ns1 < ns2 ? ns1 : ns2; in stupid_strcasecmp()
A Dtest-strncmp.c64 size_t ns1 = wcsnlen (s1, n) + 1, ns2 = wcsnlen (s2, n) + 1; in stupid_wcsncmp() local
66 n = ns1 < n ? ns1 : n; in stupid_wcsncmp()
107 size_t ns1 = strnlen (s1, n) + 1, ns2 = strnlen (s2, n) + 1; in stupid_strncmp() local
110 n = ns1 < n ? ns1 : n; in stupid_strncmp()
A Dtest-strncasecmp.c55 size_t ns1 = strlen (s1) + 1; in stupid_strncasecmp() local
57 size_t n = ns1 < ns2 ? ns1 : ns2; in stupid_strncasecmp()

Completed in 10 milliseconds