ngroups          1175 lib/utilunix.c     static int ngroups;
ngroups          1183 lib/utilunix.c         ngroups = getgroups (0, NULL);
ngroups          1184 lib/utilunix.c         if (ngroups == -1)
ngroups          1185 lib/utilunix.c             ngroups = 0;        /* ignore errors */
ngroups          1189 lib/utilunix.c         groups = g_new (gid_t, ngroups + 1);
ngroups          1191 lib/utilunix.c         if (ngroups != 0)
ngroups          1193 lib/utilunix.c             ngroups = getgroups (ngroups, groups);
ngroups          1194 lib/utilunix.c             if (ngroups == -1)
ngroups          1195 lib/utilunix.c                 ngroups = 0;    /* ignore errors */
ngroups          1200 lib/utilunix.c         groups[ngroups++] = getegid ();
ngroups          1208 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           124 src/viewer/hex.c         ((r->cols < 80) ? 0 : (r->cols == 80) ? (ngroups - 1) : (ngroups - 1 + 1));