indx 739 arch/i386/i386/bios.c smbios_get_string(struct smbtable *st, u_int8_t indx, char *dest, size_t len) indx 747 arch/i386/i386/bios.c for (i = 1; va < end && i < indx && *va; i++) indx 750 arch/i386/i386/bios.c if (i == indx) { indx 1176 kern/kern_descrip.c dupfdopen(struct filedesc *fdp, int indx, int dfd, int mode, int error) indx 1223 kern/kern_descrip.c fdp->fd_ofiles[indx] = wfp; indx 1224 kern/kern_descrip.c fdp->fd_ofileflags[indx] = fdp->fd_ofileflags[dfd]; indx 1226 kern/kern_descrip.c fd_used(fdp, indx); indx 1233 kern/kern_descrip.c fdp->fd_ofiles[indx] = fdp->fd_ofiles[dfd]; indx 1234 kern/kern_descrip.c fdp->fd_ofileflags[indx] = fdp->fd_ofileflags[dfd]; indx 1241 kern/kern_descrip.c fd_used(fdp, indx); indx 544 kern/kern_exec.c int indx; indx 546 kern/kern_exec.c if ((error = falloc(p, &fp, &indx)) != 0) indx 549 kern/kern_exec.c if (indx != i) indx 553 kern/kern_exec.c fdremove(p->p_fd, indx); indx 558 kern/kern_exec.c fdremove(p->p_fd, indx); indx 145 kern/kern_malloc.c long indx, npg, allocsize; indx 177 kern/kern_malloc.c indx = BUCKETINDX(size); indx 178 kern/kern_malloc.c kbp = &bucket[indx]; indx 190 kern/kern_malloc.c ksp->ks_size |= 1 << indx; indx 193 kern/kern_malloc.c copysize = 1 << indx < MAX_COPY ? 1 << indx : MAX_COPY; indx 200 kern/kern_malloc.c allocsize = 1 << indx; indx 224 kern/kern_malloc.c kup->ku_indx = indx; indx 315 kern/kern_malloc.c if (kup->ku_indx != indx) indx 321 kern/kern_malloc.c ksp->ks_memuse += 1 << indx; indx 506 kern/kern_malloc.c long indx; indx 528 kern/kern_malloc.c for (indx = 0; indx < MINBUCKET + 16; indx++) { indx 529 kern/kern_malloc.c if (1 << indx >= PAGE_SIZE) indx 530 kern/kern_malloc.c bucket[indx].kb_elmpercl = 1; indx 532 kern/kern_malloc.c bucket[indx].kb_elmpercl = PAGE_SIZE / (1 << indx); indx 533 kern/kern_malloc.c bucket[indx].kb_highwat = 5 * bucket[indx].kb_elmpercl; indx 535 kern/kern_malloc.c for (indx = 0; indx < M_LAST; indx++) indx 536 kern/kern_malloc.c kmemstats[indx].ks_limit = nkmempages * PAGE_SIZE * 6 / 10; indx 833 kern/vfs_syscalls.c int type, indx, error, localtrunc = 0; indx 839 kern/vfs_syscalls.c if ((error = falloc(p, &fp, &indx)) != 0) indx 854 kern/vfs_syscalls.c dupfdopen(fdp, indx, p->p_dupfd, flags, error)) == 0) { indx 856 kern/vfs_syscalls.c *retval = indx; indx 861 kern/vfs_syscalls.c fdremove(fdp, indx); indx 886 kern/vfs_syscalls.c fdremove(fdp, indx); indx 908 kern/vfs_syscalls.c fdremove(fdp, indx); indx 914 kern/vfs_syscalls.c *retval = indx; indx 977 kern/vfs_syscalls.c int type, indx, error=0; indx 995 kern/vfs_syscalls.c if ((error = falloc(p, &fp, &indx)) != 0) { indx 1068 kern/vfs_syscalls.c *retval = indx; indx 1076 kern/vfs_syscalls.c fdremove(fdp, indx); indx 114 sys/filedesc.h int dupfdopen(struct filedesc *fdp, int indx, int dfd, int mode, indx 211 sys/vnode.h #define VTTOIF(indx) (vttoif_tab[(int)(indx)]) indx 212 sys/vnode.h #define MAKEIMODE(indx, mode) (int)(VTTOIF(indx) | (mode)) indx 222 ufs/ext2fs/ext2fs_alloc.c ext2fs_blkpref(struct inode *ip, int32_t lbn, int indx, int32_t *bap) indx 243 ufs/ext2fs/ext2fs_alloc.c for (i = indx; i >= 0 ; i--) { indx 1041 ufs/ffs/ffs_alloc.c ffs1_blkpref(struct inode *ip, daddr_t lbn, int indx, int32_t *bap) indx 1047 ufs/ffs/ffs_alloc.c if (indx % fs->fs_maxbpg == 0 || bap[indx - 1] == 0) { indx 1056 ufs/ffs/ffs_alloc.c if (indx == 0 || bap[indx - 1] == 0) indx 1060 ufs/ffs/ffs_alloc.c startcg = dtog(fs, bap[indx - 1]) + 1; indx 1076 ufs/ffs/ffs_alloc.c return (bap[indx - 1] + fs->fs_frag); indx 1084 ufs/ffs/ffs_alloc.c ffs2_blkpref(struct inode *ip, daddr_t lbn, int indx, int64_t *bap) indx 1091 ufs/ffs/ffs_alloc.c if (indx % fs->fs_maxbpg == 0 || bap[indx - 1] == 0) { indx 1101 ufs/ffs/ffs_alloc.c if (indx == 0 || bap[indx - 1] == 0) indx 1105 ufs/ffs/ffs_alloc.c startcg = dtog(fs, bap[indx - 1] + 1); indx 1124 ufs/ffs/ffs_alloc.c return (bap[indx - 1] + fs->fs_frag); indx 368 ufs/ffs/fs.h #define fs_cs(fs, indx) fs_csp[indx]