Lines Matching refs:sie
236 __static_if_entry_next(static_if_entry_t sie) in __static_if_entry_next() argument
238 return (void *)(sie->sie_link & ~3ul); in __static_if_entry_next()
243 __static_if_is_jump(static_if_entry_t sie) in __static_if_is_jump() argument
245 return sie->sie_link & 1; in __static_if_is_jump()
252 struct static_if_entry *sie = __static_if_entries_end; in static_if_init() local
256 while (--sie >= __static_if_entries) { in static_if_init()
257 sie_flags = sie->sie_link & 3ul; in static_if_init()
258 sie_key = __static_if_entry_next(sie); in static_if_init()
259 sie->sie_link = (vm_offset_t)sie_key->sik_entries_head | sie_flags; in static_if_init()
261 sie_key->sik_entries_head = sie; in static_if_init()
302 static_if_entry_t sie = key->sik_entries_head; in __static_if_key_delta() local
305 while (sie) { in __static_if_key_delta()
306 ml_static_if_entry_patch(sie, in __static_if_key_delta()
308 __static_if_is_jump(sie)); in __static_if_key_delta()
309 sie = __static_if_entry_next(sie); in __static_if_key_delta()