ngroups 1249 lib/utilunix.c static int ngroups; ngroups 1257 lib/utilunix.c ngroups = getgroups (0, NULL); ngroups 1258 lib/utilunix.c if (ngroups == -1) ngroups 1259 lib/utilunix.c ngroups = 0; // ignore errors ngroups 1263 lib/utilunix.c groups = g_new (gid_t, ngroups + 1); ngroups 1265 lib/utilunix.c if (ngroups != 0) ngroups 1267 lib/utilunix.c ngroups = getgroups (ngroups, groups); ngroups 1268 lib/utilunix.c if (ngroups == -1) ngroups 1269 lib/utilunix.c ngroups = 0; // ignore errors ngroups 1274 lib/utilunix.c groups[ngroups++] = getegid (); ngroups 1282 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;