Home
last modified time | relevance | path

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

/string/
A Dtest-strcmp.c71 size_t ns2 = wcslen (s2) + 1; in stupid_wcscmp() local
72 size_t n = ns1 < ns2 ? ns1 : ns2; in stupid_wcscmp()
120 size_t ns2 = strlen (s2) + 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
67 n = ns2 < n ? ns2 : n; in stupid_wcsncmp()
107 size_t ns1 = strnlen (s1, n) + 1, ns2 = strnlen (s2, n) + 1; in stupid_strncmp() local
111 n = ns2 < n ? ns2 : n; in stupid_strncmp()
A Dtest-strncasecmp.c56 size_t ns2 = strlen (s2) + 1; in stupid_strncasecmp() local
57 size_t n = ns1 < ns2 ? ns1 : ns2; in stupid_strncasecmp()

Completed in 10 milliseconds