Home
last modified time | relevance | path

Searched refs:indx (Results 1 – 14 of 14) sorted by relevance

/f-stack/freebsd/kern/
H A Dkern_malloc.c505 int indx; in malloc_dbg() local
511 indx = flags & (M_WAITOK | M_NOWAIT); in malloc_dbg()
512 if (indx != M_NOWAIT && indx != M_WAITOK) { in malloc_dbg()
633 int indx; variable
678 int indx; in malloc_domain() local
690 *indxp = indx; in malloc_domain()
701 int indx; in malloc_domainset() local
1024 int indx; in malloc_size() local
1031 return (kmemzones[indx].kz_size); in malloc_size()
1168 uint8_t indx; in mallocinit() local
[all …]
H A Dkern_sysctl.c352 int indx; in sysctl_search_oid() local
355 indx = 0; in sysctl_search_oid()
356 while (indx < CTL_MAXNAME && indx >= 0) { in sysctl_search_oid()
357 if (nodes[indx] == NULL && indx == 0) in sysctl_search_oid()
360 nodes[indx] = SLIST_FIRST(&nodes[indx - 1]->oid_children); in sysctl_search_oid()
362 nodes[indx] = SLIST_NEXT(nodes[indx], oid_link); in sysctl_search_oid()
368 indx--; in sysctl_search_oid()
373 indx++; in sysctl_search_oid()
2112 int indx; in sysctl_find_oid() local
2116 indx = 0; in sysctl_find_oid()
[all …]
H A Dvfs_syscalls.c1105 int cmode, error, indx; in kern_openat() local
1107 indx = -1; in kern_openat()
1162 &indx); in kern_openat()
1199 if (indx == -1) { in kern_openat()
1208 error = finstall_refed(td, fp, &indx, flags, fcaps); in kern_openat()
1219 td->td_retval[0] = indx; in kern_openat()
1222 KASSERT(indx == -1, ("indx=%d, should be -1", indx)); in kern_openat()
4475 int indx; in kern_fhopen() local
4480 indx = -1; in kern_fhopen()
4533 error = finstall(td, fp, &indx, fmode, NULL); in kern_fhopen()
[all …]
H A Dkern_descrip.c3593 int error, indx; in dupfdopen() local
3609 error = fdalloc(td, 0, &indx); in dupfdopen()
3630 fdunused(fdp, indx); in dupfdopen()
3635 fdunused(fdp, indx); in dupfdopen()
3639 newfde = &fdp->fd_ofiles[indx]; in dupfdopen()
3656 newfde = &fdp->fd_ofiles[indx]; in dupfdopen()
3670 *indxp = indx; in dupfdopen()
/f-stack/freebsd/mips/mips/
H A Dmachdep.c197 int indx; in cpu_startup() local
200 for (indx = 0; phys_avail[indx + 1] != 0; indx += 2) { in cpu_startup()
201 vm_paddr_t size1 = phys_avail[indx + 1] - phys_avail[indx]; in cpu_startup()
204 (uintmax_t)phys_avail[indx], in cpu_startup()
205 (uintmax_t)phys_avail[indx + 1] - 1, in cpu_startup()
/f-stack/lib/include/sys/
H A Dvnode.h118 #define VTTOIF(indx) (vttoif_tab[(int)(indx)]) argument
119 #define MAKEIMODE(indx, mode) (int)(VTTOIF(indx) | (mode)) argument
/f-stack/freebsd/opencrypto/
H A Dcbc_mac.c276 for (size_t indx = 0; indx < AES_CBC_MAC_HASH_LEN; indx++) in AES_CBC_MAC_Final() local
277 buf[indx] = ctx->block[indx] ^ s0[indx]; in AES_CBC_MAC_Final()
/f-stack/freebsd/crypto/aesni/
H A Daesni_ccm.c75 int indx = sizeof(*block) - 1; in append_int() local
78 while (indx > (sizeof(*block) - offset)) { in append_int()
79 bp[indx] = value & 0xff; in append_int()
80 indx--; in append_int()
/f-stack/freebsd/contrib/openzfs/module/icp/core/
H A Dkcf_sched.c1306 int indx; in kcf_reqid_insert() local
1318 indx = REQID_HASH(id); in kcf_reqid_insert()
1319 headp = areq->an_idnext = rt->rt_idhash[indx]; in kcf_reqid_insert()
1324 rt->rt_idhash[indx] = areq; in kcf_reqid_insert()
1336 int indx; in kcf_reqid_delete() local
1342 indx = REQID_HASH(id); in kcf_reqid_delete()
1353 rt->rt_idhash[indx] = nextp; in kcf_reqid_delete()
1384 int indx; in crypto_cancel_req() local
1391 indx = REQID_HASH(id); in crypto_cancel_req()
1394 for (areq = rt->rt_idhash[indx]; areq; areq = areq->an_idnext) { in crypto_cancel_req()
/f-stack/freebsd/netinet/
H A Dsctp_cc_functions.c1609 int cur_val, i, indx, incr; in sctp_hs_cwnd_increase() local
1613 indx = SCTP_HS_TABLE_SIZE - 1; in sctp_hs_cwnd_increase()
1625 indx = i; in sctp_hs_cwnd_increase()
1629 net->last_hs_used = indx; in sctp_hs_cwnd_increase()
1630 incr = (((int32_t)sctp_cwnd_adjust[indx].increase) << 10); in sctp_hs_cwnd_increase()
1642 int cur_val, i, indx; in sctp_hs_cwnd_decrease() local
1659 indx = net->last_hs_used; in sctp_hs_cwnd_decrease()
1666 for (i = indx; i >= 1; i--) { in sctp_hs_cwnd_decrease()
1671 net->last_hs_used = indx; in sctp_hs_cwnd_decrease()
/f-stack/freebsd/sys/
H A Dvnode.h408 #define VTTOIF(indx) (vttoif_tab[(int)(indx)]) argument
409 #define MAKEIMODE(indx, mode) (int)(VTTOIF(indx) | (mode)) argument
/f-stack/freebsd/amd64/amd64/
H A Dmachdep.c288 int indx; local
291 for (indx = 0; phys_avail[indx + 1] != 0; indx += 2) {
294 size = phys_avail[indx + 1] - phys_avail[indx];
297 (uintmax_t)phys_avail[indx],
298 (uintmax_t)phys_avail[indx + 1] - 1,
/f-stack/freebsd/i386/i386/
H A Dmachdep.c281 int indx; local
284 for (indx = 0; phys_avail[indx + 1] != 0; indx += 2) {
287 size = phys_avail[indx + 1] - phys_avail[indx];
290 (uintmax_t)phys_avail[indx],
291 (uintmax_t)phys_avail[indx + 1] - 1,
/f-stack/dpdk/drivers/net/dpaa/fmlib/
H A Dfm_pcd_ext.h2093 uint8_t indx; member