Searched refs:first (Results 1 – 10 of 10) sorted by relevance
/lib/ |
D | llist.c | 41 struct llist_node *first; in llist_add_batch() local 44 new_last->next = first = ACCESS_ONCE(head->first); in llist_add_batch() 45 } while (cmpxchg(&head->first, first, new_first) != first); in llist_add_batch() 47 return !first; in llist_add_batch() 69 entry = smp_load_acquire(&head->first); in llist_del_first() 75 entry = cmpxchg(&head->first, old_entry, next); in llist_del_first()
|
D | siphash.c | 123 u64 siphash_1u64(const u64 first, const siphash_key_t *key) in siphash_1u64() argument 126 v3 ^= first; in siphash_1u64() 129 v0 ^= first; in siphash_1u64() 140 u64 siphash_2u64(const u64 first, const u64 second, const siphash_key_t *key) in siphash_2u64() argument 143 v3 ^= first; in siphash_2u64() 146 v0 ^= first; in siphash_2u64() 162 u64 siphash_3u64(const u64 first, const u64 second, const u64 third, in siphash_3u64() argument 166 v3 ^= first; in siphash_3u64() 169 v0 ^= first; in siphash_3u64() 190 u64 siphash_4u64(const u64 first, const u64 second, const u64 third, in siphash_4u64() argument [all …]
|
D | extable.c | 104 search_extable(const struct exception_table_entry *first, in search_extable() argument 108 while (first <= last) { in search_extable() 111 mid = ((last - first) >> 1) + first; in search_extable() 117 first = mid + 1; in search_extable()
|
D | plist.c | 76 struct plist_node *first, *iter, *prev = NULL; in plist_add() local 86 first = iter = plist_first(head); in plist_add() 97 } while (iter != first); in plist_add() 185 struct plist_node *first, *prio_pos, *node_pos; in plist_test_check() local 192 prio_pos = first = plist_first(&test_head); in plist_test_check() 196 if (node_pos == first) in plist_test_check() 209 BUG_ON(prio_pos->prio_list.next != &first->prio_list); in plist_test_check()
|
D | debugobjects.c | 139 if (obj_pool.first) { in alloc_object() 140 obj = hlist_entry(obj_pool.first, typeof(*obj), node); in alloc_object() 173 obj = hlist_entry(obj_pool.first, typeof(*obj), node); in free_obj_work() 1057 new = hlist_entry(obj_pool.first, typeof(*obj), node); in debug_objects_replace_static_objects()
|
D | dynamic_debug.c | 340 char *first = words[i+1]; in ddebug_parse_query() local 341 char *last = strchr(first, '-'); in ddebug_parse_query() 348 if (parse_lineno(first, &query->first_lineno) < 0) in ddebug_parse_query()
|
D | vsprintf.c | 814 bool first = true; in bitmap_string() local 833 if (!first) { in bitmap_string() 838 first = false; in bitmap_string() 855 bool first = true; in bitmap_list_string() local 867 if (!first) { in bitmap_list_string() 872 first = false; in bitmap_list_string()
|
D | Kconfig.kmemcheck | 47 In one-shot mode, only the first error detected is reported before
|
D | Kconfig.kgdb | 117 CONFIG_KDB_CONTINUE_CATASTROPHIC == 0 (default). The first time
|
D | Kconfig.debug | 43 I.e., processors other than the first one may not boot up. 70 filesystem must first be mounted before making use of this feature. 1250 bool "RCU debugging: don't disable PROVE_RCU on first splat" 1255 first warning (or "splat"). This feature prevents such
|