Searched refs:ilist (Results 1 – 12 of 12) sorted by relevance
/linux-6.3-rc2/tools/perf/util/ |
A D | intlist.c | 31 free(ilist); in int_node__delete() 71 if (ilist == NULL) in __intlist__findnew() 92 return __intlist__findnew(ilist, i, true); in intlist__findnew() 105 err = intlist__add(ilist, value); in intlist__parse_list() 116 struct intlist *ilist = malloc(sizeof(*ilist)); in intlist__new() local 118 if (ilist != NULL) { in intlist__new() 119 rblist__init(&ilist->rblist); in intlist__new() 128 return ilist; in intlist__new() 130 intlist__delete(ilist); in intlist__new() 136 if (ilist != NULL) in intlist__delete() [all …]
|
A D | intlist.h | 21 void intlist__delete(struct intlist *ilist); 23 void intlist__remove(struct intlist *ilist, struct int_node *in); 24 int intlist__add(struct intlist *ilist, unsigned long i); 32 return intlist__find(ilist, i) != NULL; in intlist__has_entry() 35 static inline bool intlist__empty(const struct intlist *ilist) in intlist__empty() argument 37 return rblist__empty(&ilist->rblist); in intlist__empty() 42 return rblist__nr_entries(&ilist->rblist); in intlist__nr_entries() 48 struct rb_node *rn = rb_first_cached(&ilist->rblist.entries); in intlist__first() 65 #define intlist__for_each_entry(pos, ilist) \ argument 75 #define intlist__for_each_entry_safe(pos, n, ilist) \ argument [all …]
|
A D | srcline.c | 45 struct inline_list *ilist; in inline_list__append() local 47 ilist = zalloc(sizeof(*ilist)); in inline_list__append() 48 if (ilist == NULL) in inline_list__append() 51 ilist->symbol = symbol; in inline_list__append() 52 ilist->srcline = srcline; in inline_list__append() 57 list_add(&ilist->list, &node->val); in inline_list__append() 861 struct inline_list *ilist, *tmp; in inline_node__delete() local 864 list_del_init(&ilist->list); in inline_node__delete() 865 free_srcline(ilist->srcline); in inline_node__delete() 867 if (ilist->symbol && ilist->symbol->inlined) in inline_node__delete() [all …]
|
A D | machine.c | 3016 struct inline_list *ilist; in append_inlines() local 3034 list_for_each_entry(ilist, &inline_node->val, list) { in append_inlines() 3038 .sym = ilist->symbol, in append_inlines() 3041 NULL, 0, 0, 0, ilist->srcline); in append_inlines()
|
/linux-6.3-rc2/drivers/md/ |
A D | dm-cache-policy-smq.c | 112 struct ilist { struct 117 static void l_init(struct ilist *l) in l_init() argument 123 static struct entry *l_head(struct entry_space *es, struct ilist *l) in l_head() 128 static struct entry *l_tail(struct entry_space *es, struct ilist *l) in l_tail() 143 static bool l_empty(struct ilist *l) in l_empty() 180 static void l_add_before(struct entry_space *es, struct ilist *l, in l_add_before() 217 static struct entry *l_pop_head(struct entry_space *es, struct ilist *l) in l_pop_head() 230 static struct entry *l_pop_tail(struct entry_space *es, struct ilist *l) in l_pop_tail() 258 struct ilist qs[MAX_LEVELS]; 432 struct ilist *l, *l_above; in q_redistribute() [all …]
|
/linux-6.3-rc2/fs/9p/ |
A D | fid.c | 60 hlist_for_each_entry(fid, h, ilist) { in v9fs_fid_find_inode() 83 hlist_add_head(&fid->ilist, (struct hlist_head *)&inode->i_private); in v9fs_open_fid_add()
|
A D | vfs_dir.c | 219 hlist_del(&fid->ilist); in v9fs_dir_release()
|
/linux-6.3-rc2/drivers/scsi/ibmvscsi_tgt/ |
A D | libsrp.h | 100 struct list_head ilist; member
|
/linux-6.3-rc2/fs/f2fs/ |
A D | gc.h | 54 struct list_head ilist; member
|
A D | gc.c | 936 list_add_tail(&new_ie->list, &gc_list->ilist); in add_gc_inode() 943 list_for_each_entry_safe(ie, next_ie, &gc_list->ilist, list) { in put_gc_inode() 1778 .ilist = LIST_HEAD_INIT(gc_list.ilist), in f2fs_gc() 1978 .ilist = LIST_HEAD_INIT(gc_list.ilist), in free_segment_range()
|
/linux-6.3-rc2/include/net/9p/ |
A D | client.h | 160 struct hlist_node ilist; member
|
/linux-6.3-rc2/tools/power/pm-graph/ |
A D | sleepgraph.py | 6280 tp, ilist = False, [] 6300 ilist.append('%sx%d' % (i, elist[i]) if elist[i] > 1 else i) 6330 ilist.append(issue) 6371 'issues': ' '.join(ilist),
|
Completed in 34 milliseconds