n1               1194 lib/strutil/strutilutf8.c     char *n1, *n2;
n1               1197 lib/strutil/strutilutf8.c     n1 = str_utf8_normalize (t1);
n1               1200 lib/strutil/strutilutf8.c     result = strcmp (n1, n2);
n1               1202 lib/strutil/strutilutf8.c     g_free (n1);
n1               1213 lib/strutil/strutilutf8.c     char *n1, *n2;
n1               1217 lib/strutil/strutilutf8.c     n1 = str_utf8_normalize (t1);
n1               1220 lib/strutil/strutilutf8.c     l1 = strlen (n1);
n1               1222 lib/strutil/strutilutf8.c     result = strncmp (n1, n2, MIN (l1, l2));
n1               1224 lib/strutil/strutilutf8.c     g_free (n1);
n1               1235 lib/strutil/strutilutf8.c     char *n1, *n2;
n1               1238 lib/strutil/strutilutf8.c     n1 = str_utf8_casefold_normalize (t1);
n1               1241 lib/strutil/strutilutf8.c     result = strcmp (n1, n2);
n1               1243 lib/strutil/strutilutf8.c     g_free (n1);
n1               1254 lib/strutil/strutilutf8.c     char *n1, *n2;
n1               1258 lib/strutil/strutilutf8.c     n1 = str_utf8_casefold_normalize (t1);
n1               1261 lib/strutil/strutilutf8.c     l1 = strlen (n1);
n1               1263 lib/strutil/strutilutf8.c     result = strncmp (n1, n2, MIN (l1, l2));
n1               1265 lib/strutil/strutilutf8.c     g_free (n1);
n1               1209 lib/tty/key.c      const key_code_name_t *n1 = *(const key_code_name_t * const *) p1;
n1               1212 lib/tty/key.c      return g_ascii_strcasecmp (n1->name, n2->name);
n1               1220 lib/tty/key.c      const key_code_name_t *n1 = *(const key_code_name_t * const *) p1;
n1               1223 lib/tty/key.c      return n1->code - n2->code;
n1                 55 lib/util.h     #define _GL_CMP(n1, n2) (((n1) > (n2)) - ((n1) < (n2)))
n1                155 lib/widget/widget-common.c     gboolean n1, n2;
n1                157 lib/widget/widget-common.c     n1 = s1 != NULL;
n1                160 lib/widget/widget-common.c     if (n1 != n2)
n1                163 lib/widget/widget-common.c     if (n1 && n2 && strcmp (s1, s2) != 0)
n1                213 src/filemanager/cmd.c             int n1, n2;
n1                218 src/filemanager/cmd.c                 while ((n1 = read (file1, buf1, sizeof (buf1))) == -1 && errno == EINTR)
n1                223 src/filemanager/cmd.c             while (n1 == n2 && n1 == sizeof (buf1) && memcmp (buf1, buf2, sizeof (buf1)) == 0);
n1                224 src/filemanager/cmd.c             result = (n1 != n2) || memcmp (buf1, buf2, n1);