Searched refs:index (Results 126 - 139 of 139) sorted by relevance

123456

/xnu-2422.115.4/bsd/dev/dtrace/
H A Ddtrace.c2955 * passes a reserved variable identifier and optional built-in array index.
4067 * strstr() and index()/rindex() have similar semantics if
4069 * pointer to the (empty) string, and index() and rindex()
4070 * both return index 0 (regardless of any position argument).
4088 * Both index() and rindex() take an optional position
4095 * If the position argument to index() is
4101 * notion that index() can start from a
4102 * negative index and increment its way up to
4113 * index() returns the string length. These
4114 * semantics violate the notion that index()
[all...]
/xnu-2422.115.4/bsd/net/
H A Dpf_ioctl.c3980 if (pl->index < 0 || pl->index >= PF_LIMIT_MAX) {
3984 pl->limit = pf_pool_limits[pl->index].limit;
3991 if (pl->index < 0 || pl->index >= PF_LIMIT_MAX ||
3992 pf_pool_limits[pl->index].pp == NULL) {
3996 pool_sethardlimit(pf_pool_limits[pl->index].pp,
3998 old_limit = pf_pool_limits[pl->index].limit;
3999 pf_pool_limits[pl->index].limit = pl->limit;
H A Dkpi_interface.c1504 int index = 0; local
1586 (*addresses)[index] = ifal->ifal_ifa;
1587 index++;
H A Dpfvar.h1914 int index; member in struct:pfioc_limit
/xnu-2422.115.4/bsd/dev/i386/
H A Dfasttrap_isa.c433 uint_t index = FASTTRAP_SIB_INDEX(sib); local
438 tp->ftt_index = (index == 4) ?
440 regmap[index | (FASTTRAP_REX_X(rex) << 3)];
/xnu-2422.115.4/osfmk/mach/
H A Dmach_traps.h760 PAD_ARG_(uint32_t, index);
/xnu-2422.115.4/bsd/hfs/
H A Dhfs_vnops.c2459 * roughly touch 20k/480 == 41 to 42 nodes, plus the index nodes, for half
5133 * In fact, the offset used by HFS is essentially an index (26 bits)
5138 * Each tag/index pair is tied to a unique directory hint. The hint
5168 int index; local
5302 /* Convert offset into a catalog directory index. */
5303 index = (offset & HFS_INDEX_MASK) - 2;
5313 localhint.dh_index = index - 1;
5325 dirhint = hfs_getdirhint(cp, ((index - 1) & HFS_INDEX_MASK) | tag, 0);
5334 if (index == 0) {
5339 * If we have a non-zero index, ther
[all...]
H A Dhfs_vfsutils.c1964 * Find the current thread's directory hint for a given index.
1972 hfs_getdirhint(struct cnode *dcp, int index, int detach) argument
1988 if (hint->dh_index == index)
2023 hint->dh_index = index;
/xnu-2422.115.4/bsd/netinet/
H A Dip_compat.h63 #define index strchr
/xnu-2422.115.4/osfmk/kern/
H A Dsched_prim.c1124 register int index; local
1132 index = wait_hash(event);
1133 wq = &wait_queues[index];
1702 register int index; local
1704 index = wait_hash(event);
1705 wq = &wait_queues[index];
/xnu-2422.115.4/bsd/hfs/hfscommon/Misc/
H A DFileExtentMapping.c1531 ++extentIndex; // Its index within the extent record
1834 // foundExtentIndex - index to extent entry in xdr
1918 // If we found a record, then search it for the correct index into the extents.
1921 // Find appropriate index into extent record
1998 btIterator->hint.index = 0;
2025 btIterator->hint.index = 0;
/xnu-2422.115.4/SETUP/config/
H A Dmkmakefile.c285 cp = index(line, '\n');
/xnu-2422.115.4/osfmk/vm/
H A Dvm_object.c362 int index; local
364 index = vm_object_lock_hash(pager);
366 lck_mtx_lock_spin(&vm_object_hashed_lock_data[index]);
368 return (&vm_object_hashed_lock_data[index]);
/xnu-2422.115.4/bsd/netinet6/
H A Din6.c899 int error = 0, index; local
902 index = ifp->if_index;

Completed in 139 milliseconds

123456