Home
last modified time | relevance | path

Searched refs:needle (Results 1 – 2 of 2) sorted by relevance

/xnu-8020.140.41/osfmk/kern/
H A Dbtlog.c679 bt_stack_t needle, in __btlib_insert() argument
710 if (needle->bts_hash < bts->bts_hash) { in __btlib_insert()
713 if (__btstack_same(needle, bts)) { in __btlib_insert()
746 *bts = *needle; in __btlib_insert()
826 union bt_stack needle; in __btlib_get() local
835 hash = __btstack_capture(&needle, fp, (flags & BTREF_GET_PERMANENT)); in __btlib_get()
874 if (needle.bts_hash < bts->bts_hash) { in __btlib_get()
877 if (__btstack_same(&needle, bts) && in __btlib_get()
888 return __btlib_insert(btl, &needle, flags, hash); in __btlib_get()
/xnu-8020.140.41/bsd/net/
H A Dif_vlan.c915 findsubstr(const char * haystack, const char * needle, size_t needle_len) in findsubstr() argument
920 if (strncmp(scan, needle, needle_len) == 0) { in findsubstr()