ngroups 1233 lib/utilunix.c static int ngroups; ngroups 1241 lib/utilunix.c ngroups = getgroups (0, NULL); ngroups 1242 lib/utilunix.c if (ngroups == -1) ngroups 1243 lib/utilunix.c ngroups = 0; // ignore errors ngroups 1247 lib/utilunix.c groups = g_new (gid_t, ngroups + 1); ngroups 1249 lib/utilunix.c if (ngroups != 0) ngroups 1251 lib/utilunix.c ngroups = getgroups (ngroups, groups); ngroups 1252 lib/utilunix.c if (ngroups == -1) ngroups 1253 lib/utilunix.c ngroups = 0; // ignore errors ngroups 1258 lib/utilunix.c groups[ngroups++] = getegid (); ngroups 1266 lib/utilunix.c for (i = 0; i < ngroups; i++) ngroups 100 src/viewer/hex.c int ngroups = view->bytes_per_line / 4; ngroups 120 src/viewer/hex.c text_start = 8 + 13 * ngroups; ngroups 122 src/viewer/hex.c text_start += ngroups - 1; ngroups 124 src/viewer/hex.c text_start += ngroups;