Home
last modified time | relevance | path

Searched refs:new_list (Results 1 – 13 of 13) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/gpu/arm/mali400/mali/common/
H A Dmali_osk_list.h176 …STATIC_INLINE void _mali_osk_list_move_list(_mali_osk_list_t *old_list, _mali_osk_list_t *new_list) in _mali_osk_list_move_list() argument
178 MALI_DEBUG_ASSERT(_mali_osk_list_empty(new_list)); in _mali_osk_list_move_list()
180 new_list->next = old_list->next; in _mali_osk_list_move_list()
181 new_list->prev = old_list->prev; in _mali_osk_list_move_list()
182 new_list->next->prev = new_list; in _mali_osk_list_move_list()
183 new_list->prev->next = new_list; in _mali_osk_list_move_list()
H A Dmali_executor.c141 _mali_osk_list_t *new_list,
155 _mali_osk_list_t *new_list,
2033 _mali_osk_list_t *new_list, in mali_executor_change_state_pp_physical() argument
2050 MALI_DEBUG_ASSERT_POINTER(new_list); in mali_executor_change_state_pp_physical()
2066 _MALI_OSK_LIST_FOREACHENTRY(group_iter, temp, new_list, in mali_executor_change_state_pp_physical()
2099 _mali_osk_list_move(&group->executor_list, new_list); in mali_executor_change_state_pp_physical()
2105 _mali_osk_list_t *new_list, in mali_executor_set_state_pp_physical() argument
2108 _mali_osk_list_add(&group->executor_list, new_list); in mali_executor_set_state_pp_physical()
/OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/qt5/qtwebengine/chromium/
H A D0008-chromium-Move-CharAllocator-definition-to-a-header-f.patch253 - std::unique_ptr<InnerList> new_list(new InnerList);
254 - new_list->capacity = list_size;
255 - new_list->size = 0;
256 - new_list->step = element_size_;
257 - new_list->data.reset(static_cast<char*>(
259 - storage_.push_back(std::move(new_list));
529 + std::unique_ptr<InnerList> new_list(new InnerList);
530 + new_list->capacity = list_size;
531 + new_list->size = 0;
532 + new_list->step = element_size_;
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/
H A Dcreate_buildsys_python.py467 new_list = []
471 new_list.append(new_value)
473 if value != new_list:
474 value[dkey] = new_list
476 new_list = []
480 new_list.append(new_value)
482 if value != new_list:
483 info[variable] = new_list
/OK3568_Linux_fs/kernel/drivers/gpu/drm/vc4/
H A Dvc4_bo.c199 struct list_head *new_list; in vc4_get_cache_list_for_size() local
202 new_list = kmalloc_array(new_size, sizeof(struct list_head), in vc4_get_cache_list_for_size()
204 if (!new_list) in vc4_get_cache_list_for_size()
215 INIT_LIST_HEAD(&new_list[i]); in vc4_get_cache_list_for_size()
217 list_replace(old_list, &new_list[i]); in vc4_get_cache_list_for_size()
221 INIT_LIST_HEAD(&new_list[i]); in vc4_get_cache_list_for_size()
224 vc4->bo_cache.size_list = new_list; in vc4_get_cache_list_for_size()
/OK3568_Linux_fs/kernel/tools/perf/
H A Dbuiltin-timechart.c966 struct per_pid *new_list, *p, *cursor, *prev; in sort_pids() local
969 new_list = NULL; in sort_pids()
976 if (new_list == NULL) { in sort_pids()
977 new_list = p; in sort_pids()
982 cursor = new_list; in sort_pids()
993 p->next = new_list; in sort_pids()
994 new_list = p; in sort_pids()
1006 tchart->all_data = new_list; in sort_pids()
/OK3568_Linux_fs/u-boot/fs/ubifs/
H A Dorphan.c92 list_add_tail(&orphan->new_list, &c->orph_new); in ubifs_add_orphan()
138 list_del(&o->new_list); in ubifs_delete_orphan()
164 list_for_each_entry(orphan, &c->orph_new, new_list) { in ubifs_orphan_start_commit()
H A Dubifs.h1522 struct list_head new_list; member
/OK3568_Linux_fs/kernel/fs/ubifs/
H A Dorphan.c84 list_add_tail(&orphan->new_list, &c->orph_new); in orphan_add()
122 list_del(&o->new_list); in __orphan_drop()
244 list_for_each_entry(orphan, &c->orph_new, new_list) { in ubifs_orphan_start_commit()
H A Dubifs.h929 struct list_head new_list; member
/OK3568_Linux_fs/kernel/drivers/usb/gadget/function/
H A Df_accessory.c1287 struct list_head new_list, dead_list; in acc_hid_work() local
1293 INIT_LIST_HEAD(&new_list); in acc_hid_work()
1301 list_move(&hid->list, &new_list); in acc_hid_work()
1318 list_for_each_safe(entry, temp, &new_list) { in acc_hid_work()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/orm/
H A Dmodels.py1226 new_list = []
1236 new_list.append(p.pk)
1243 packages_list = package_dependencies.filter(Q(pk__in=new_list))
/OK3568_Linux_fs/kernel/tools/lib/bpf/
H A Dbtf.c2894 __u32 *new_list; in btf_dedup_hypot_map_add() local
2897 new_list = libbpf_reallocarray(d->hypot_list, d->hypot_cap, sizeof(__u32)); in btf_dedup_hypot_map_add()
2898 if (!new_list) in btf_dedup_hypot_map_add()
2900 d->hypot_list = new_list; in btf_dedup_hypot_map_add()