n2               1194 lib/strutil/strutilutf8.c     char *n1, *n2;
n2               1198 lib/strutil/strutilutf8.c     n2 = str_utf8_normalize (t2);
n2               1200 lib/strutil/strutilutf8.c     result = strcmp (n1, n2);
n2               1203 lib/strutil/strutilutf8.c     g_free (n2);
n2               1213 lib/strutil/strutilutf8.c     char *n1, *n2;
n2               1218 lib/strutil/strutilutf8.c     n2 = str_utf8_normalize (t2);
n2               1221 lib/strutil/strutilutf8.c     l2 = strlen (n2);
n2               1222 lib/strutil/strutilutf8.c     result = strncmp (n1, n2, MIN (l1, l2));
n2               1225 lib/strutil/strutilutf8.c     g_free (n2);
n2               1235 lib/strutil/strutilutf8.c     char *n1, *n2;
n2               1239 lib/strutil/strutilutf8.c     n2 = str_utf8_casefold_normalize (t2);
n2               1241 lib/strutil/strutilutf8.c     result = strcmp (n1, n2);
n2               1244 lib/strutil/strutilutf8.c     g_free (n2);
n2               1254 lib/strutil/strutilutf8.c     char *n1, *n2;
n2               1259 lib/strutil/strutilutf8.c     n2 = str_utf8_casefold_normalize (t2);
n2               1262 lib/strutil/strutilutf8.c     l2 = strlen (n2);
n2               1263 lib/strutil/strutilutf8.c     result = strncmp (n1, n2, MIN (l1, l2));
n2               1266 lib/strutil/strutilutf8.c     g_free (n2);
n2               1210 lib/tty/key.c      const key_code_name_t *n2 = *(const key_code_name_t * const *) p2;
n2               1212 lib/tty/key.c      return g_ascii_strcasecmp (n1->name, n2->name);
n2               1221 lib/tty/key.c      const key_code_name_t *n2 = *(const key_code_name_t * const *) p2;
n2               1223 lib/tty/key.c      return n1->code - n2->code;
n2                 55 lib/util.h     #define _GL_CMP(n1, n2) (((n1) > (n2)) - ((n1) < (n2)))
n2                155 lib/widget/widget-common.c     gboolean n1, n2;
n2                158 lib/widget/widget-common.c     n2 = s2 != NULL;
n2                160 lib/widget/widget-common.c     if (n1 != n2)
n2                163 lib/widget/widget-common.c     if (n1 && n2 && strcmp (s1, s2) != 0)
n2                213 src/filemanager/cmd.c             int n1, n2;
n2                220 src/filemanager/cmd.c                 while ((n2 = read (file2, buf2, sizeof (buf2))) == -1 && errno == EINTR)
n2                223 src/filemanager/cmd.c             while (n1 == n2 && n1 == sizeof (buf1) && memcmp (buf1, buf2, sizeof (buf1)) == 0);
n2                224 src/filemanager/cmd.c             result = (n1 != n2) || memcmp (buf1, buf2, n1);