Searched refs:ngrp (Results 1 - 10 of 10) sorted by path

/freebsd-11-stable/lib/libc/stdio/
H A Dxprintf_int.c262 int l, ngrp, rdx, sign, zext; local
278 ngrp = 1;
282 ngrp = 0;
350 p = __ultoa(uu, pe, rdx, digit, ngrp, thousands_sep, grouping);
352 p = __ujtoa(uu, pe, rdx, digit, ngrp, thousands_sep, grouping);
/freebsd-11-stable/sys/compat/linux/
H A Dlinux_uid16.c163 int ngrp, error; local
169 ngrp = args->gidsetsize;
170 if (ngrp < 0 || ngrp >= ngroups_max + 1) {
174 linux_gidset = malloc(ngrp * sizeof(*linux_gidset), M_LINUX, M_WAITOK);
175 error = copyin(args->gidset, linux_gidset, ngrp * sizeof(l_gid16_t));
202 if (ngrp > 0) {
203 newcred->cr_ngroups = ngrp + 1;
206 ngrp--;
207 while (ngrp >
233 int bsd_gidsetsz, ngrp, error; local
[all...]
H A Dlinux_misc.c1318 int ngrp, error; local
1321 ngrp = args->gidsetsize;
1322 if (ngrp < 0 || ngrp >= ngroups_max + 1)
1324 linux_gidset = malloc(ngrp * sizeof(*linux_gidset), M_LINUX, M_WAITOK);
1325 error = copyin(args->grouplist, linux_gidset, ngrp * sizeof(l_gid_t));
1329 crextend(newcred, ngrp + 1);
1347 if (ngrp > 0) {
1348 newcred->cr_ngroups = ngrp + 1;
1351 ngrp
1375 int bsd_gidsetsz, ngrp, error; local
[all...]
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-pip.h264 uint64_t ngrp : 1; /**< Must be 0 when PKT_INST_HDR[R] = 0. member in struct:__anon6171::__anon6172
H A Dcvmx-sli-defs.h4493 uint64_t ngrp : 1; /**< Becomes PKT_INST_HDR[NGRP] member in struct:cvmx_sli_pktx_instr_header::cvmx_sli_pktx_instr_header_s
4502 uint64_t ngrp : 1;
4559 uint64_t ngrp : 1; /**< Becomes PKT_INST_HDR[NGRP] member in struct:cvmx_sli_pktx_instr_header::cvmx_sli_pktx_instr_header_cn61xx
4568 uint64_t ngrp : 1;
H A Dcvmx-srio.h214 uint64_t ngrp : 1; /**< WORD1[NGRP] must not be set when WORD1[R] member in struct:__anon8759::__anon8762::__anon8763
293 uint64_t ngrp : 1;
H A Dcvmx-sriox-defs.h1031 uint64_t ngrp : 1; /**< Port/Controller X NGRP */ member in struct:cvmx_sriox_imsg_inst_hdrx::cvmx_sriox_imsg_inst_hdrx_s
1045 uint64_t ngrp : 1;
/freebsd-11-stable/sys/i386/ibcs2/
H A Dibcs2_misc.c650 u_int i, ngrp; local
654 ngrp = cred->cr_ngroups;
660 if (uap->gidsetsize < ngrp)
663 iset = malloc(ngrp * sizeof(*iset), M_TEMP, M_WAITOK);
664 for (i = 0; i < ngrp; i++)
666 error = copyout(iset, uap->gidset, ngrp * sizeof(ibcs2_gid_t));
669 td->td_retval[0] = ngrp;
/freebsd-11-stable/sys/kern/
H A Dkern_prot.c92 static void crsetgroups_locked(struct ucred *cr, int ngrp,
307 u_int ngrp; local
311 ngrp = cred->cr_ngroups;
317 if (uap->gidsetsize < ngrp)
320 error = copyout(cred->cr_groups, uap->gidset, ngrp * sizeof(gid_t));
322 td->td_retval[0] = ngrp;
837 kern_setgroups(struct thread *td, u_int ngrp, gid_t *groups) argument
843 MPASS(ngrp <= ngroups_max + 1);
844 AUDIT_ARG_GROUPSET(groups, ngrp);
846 crextend(newcred, ngrp);
2057 crsetgroups_locked(struct ucred *cr, int ngrp, gid_t *groups) argument
2089 crsetgroups(struct ucred *cr, int ngrp, gid_t *groups) argument
[all...]
/freebsd-11-stable/sys/sys/
H A Dsyscallsubr.h239 int kern_setgroups(struct thread *td, u_int ngrp, gid_t *groups);

Completed in 191 milliseconds