ngroups          1245 lib/utilunix.c     static int ngroups;
ngroups          1253 lib/utilunix.c         ngroups = getgroups (0, NULL);
ngroups          1254 lib/utilunix.c         if (ngroups == -1)
ngroups          1255 lib/utilunix.c             ngroups = 0;        /* ignore errors */
ngroups          1259 lib/utilunix.c         groups = g_new (gid_t, ngroups + 1);
ngroups          1261 lib/utilunix.c         if (ngroups != 0)
ngroups          1263 lib/utilunix.c             ngroups = getgroups (ngroups, groups);
ngroups          1264 lib/utilunix.c             if (ngroups == -1)
ngroups          1265 lib/utilunix.c                 ngroups = 0;    /* ignore errors */
ngroups          1270 lib/utilunix.c         groups[ngroups++] = getegid ();
ngroups          1278 lib/utilunix.c     for (i = 0; i < ngroups; i++)
ngroups           101 src/viewer/hex.c     int ngroups = view->bytes_per_line / 4;
ngroups           123 src/viewer/hex.c     text_start = 8 + 13 * ngroups;
ngroups           125 src/viewer/hex.c         text_start += ngroups - 1;
ngroups           127 src/viewer/hex.c         text_start += ngroups;