Home
last modified time | relevance | path

Searched refs:newlist (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/u-boot/lib/efi_loader/
H A Defi_memory.c154 struct efi_mem_list *newlist; in efi_add_memory_map() local
164 newlist = calloc(1, sizeof(*newlist)); in efi_add_memory_map()
165 newlist->desc.type = memory_type; in efi_add_memory_map()
166 newlist->desc.physical_start = start; in efi_add_memory_map()
167 newlist->desc.virtual_start = start; in efi_add_memory_map()
168 newlist->desc.num_pages = pages; in efi_add_memory_map()
173 newlist->desc.attribute = (1 << EFI_MEMORY_WB_SHIFT) | in efi_add_memory_map()
177 newlist->desc.attribute = 1ULL << EFI_MEMORY_RUNTIME_SHIFT; in efi_add_memory_map()
180 newlist->desc.attribute = 1 << EFI_MEMORY_WB_SHIFT; in efi_add_memory_map()
192 r = efi_mem_carve_out(lmem, &newlist->desc, in efi_add_memory_map()
[all …]
/OK3568_Linux_fs/kernel/fs/dlm/
H A Dmember.c294 struct list_head *newlist = &new->list; in add_ordered_member() local
304 list_add_tail(newlist, head); in add_ordered_member()
307 newlist->prev = tmp->prev; in add_ordered_member()
308 newlist->next = tmp; in add_ordered_member()
309 tmp->prev->next = newlist; in add_ordered_member()
310 tmp->prev = newlist; in add_ordered_member()
/OK3568_Linux_fs/external/xserver/Xext/
H A DpanoramiX.c369 XineramaConnectionCallbackList *newlist; in XineramaRegisterConnectionBlockCallback() local
371 if (!(newlist = malloc(sizeof(XineramaConnectionCallbackList)))) in XineramaRegisterConnectionBlockCallback()
374 newlist->next = ConnectionCallbackList; in XineramaRegisterConnectionBlockCallback()
375 newlist->func = func; in XineramaRegisterConnectionBlockCallback()
376 ConnectionCallbackList = newlist; in XineramaRegisterConnectionBlockCallback()
/OK3568_Linux_fs/kernel/tools/testing/selftests/tc-testing/
H A Dtdc.py595 newlist = list()
600 newlist = list(filter(lambda x: x['id'] in target_ids, testlist))
601 return newlist
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/
H A Dutils.py1470 newlist = []
1474 newlist.append(res)
1477 newlist.append(layer)
1478 bblayers = newlist
H A Dsiggen.py764 def list_inline_diff(oldlist, newlist, colors=None): argument
767 diff = simplediff.diff(oldlist, newlist)
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/
H A Dviews.py532 newlist = _find_task_revdep_list(covered_list)
534 revlist = list(set(revlist + newlist))