| /bsp/allwinner/libraries/sunxi-hal/include/hal/ |
| A D | aw_list.h | 32 list->prev = list; in INIT_LIST_HEAD() 46 next->prev = new; in __list_add() 48 new->prev = prev; in __list_add() 49 prev->next = new; in __list_add() 93 next->prev = prev; in __list_del() 94 prev->next = next; in __list_del() 132 new->prev = old->prev; in list_replace() 285 first->prev = prev; in __list_splice() 289 next->prev = last; in __list_splice() 394 for (pos = (head)->prev; pos != (head); pos = pos->prev) [all …]
|
| /bsp/allwinner/libraries/sunxi-hal/include/hal/sdmmc/sys/ |
| A D | list.h | 32 list->prev = list; in INIT_LIST_HEAD() 45 next->prev = newl; in __list_add() 47 newl->prev = prev; in __list_add() 48 prev->next = newl; in __list_add() 87 next->prev = prev; in __list_del() 88 prev->next = next; in __list_del() 120 newl->prev = old->prev; in list_replace() 273 first->prev = prev; in __list_splice() 277 next->prev = last; in __list_splice() 409 for (pos = (head)->prev; pos != (head); pos = pos->prev) [all …]
|
| /bsp/stm32/stm32mp157a-st-discovery/board/ports/OpenAMP/libmetal/lib/include/metal/ |
| A D | list.h | 25 struct metal_list *next, *prev; member 42 list->next = list->prev = list; in metal_list_init() 48 new_node->prev = node->prev; in metal_list_add_before() 50 new_node->next->prev = new_node; in metal_list_add_before() 51 new_node->prev->next = new_node; in metal_list_add_before() 57 new_node->prev = node; in metal_list_add_after() 59 new_node->next->prev = new_node; in metal_list_add_after() 60 new_node->prev->next = new_node; in metal_list_add_after() 82 node->next->prev = node->prev; in metal_list_del() 83 node->prev->next = node->next; in metal_list_del() [all …]
|
| /bsp/stm32/stm32mp157a-st-ev1/board/ports/OpenAMP/libmetal/lib/include/metal/ |
| A D | list.h | 25 struct metal_list *next, *prev; member 42 list->next = list->prev = list; in metal_list_init() 48 new_node->prev = node->prev; in metal_list_add_before() 50 new_node->next->prev = new_node; in metal_list_add_before() 51 new_node->prev->next = new_node; in metal_list_add_before() 57 new_node->prev = node; in metal_list_add_after() 59 new_node->next->prev = new_node; in metal_list_add_after() 60 new_node->prev->next = new_node; in metal_list_add_after() 82 node->next->prev = node->prev; in metal_list_del() 83 node->prev->next = node->next; in metal_list_del() [all …]
|
| /bsp/bouffalo_lab/libraries/bl_mcu_sdk/drivers/lhal/include/ |
| A D | bflb_list.h | 55 l->next = l->prev = l; in bflb_dlist_init() 66 l->next->prev = n; in bflb_dlist_insert_after() 70 n->prev = l; in bflb_dlist_insert_after() 81 l->prev->next = n; in bflb_dlist_insert_before() 82 n->prev = l->prev; in bflb_dlist_insert_before() 84 l->prev = n; in bflb_dlist_insert_before() 94 n->next->prev = n->prev; in bflb_dlist_remove() 95 n->prev->next = n->next; in bflb_dlist_remove() 97 n->next = n->prev = n; in bflb_dlist_remove() 203 for (pos = (head)->prev; pos != (head); pos = pos->prev) [all …]
|
| /bsp/allwinner/libraries/sunxi-hal/hal/source/usb/include/ |
| A D | usb_list.h | 38 struct usb_list_head *prev; member 50 (ptr)->next = (ptr); (ptr)->prev = (ptr); \ 73 node->prev = prev; in __usb_list_add() 74 prev->next = node; in __usb_list_add() 75 next->prev = node; in __usb_list_add() 87 __usb_list_add(node, head->prev, head); in usb_list_add_tail() 95 next->prev = prev; in __usb_list_del() 96 prev->next = next; in __usb_list_del() 102 __usb_list_del(entry->prev, entry->next); in usb_list_del() 106 entry->prev = entry; in usb_list_del() [all …]
|
| /bsp/rockchip/common/rk_hal/lib/hal/inc/ |
| A D | hal_list.h | 14 struct HAL_LIST_NODE *prev; member 50 l->next = l->prev = l; in HAL_LIST_Init() 60 l->next->prev = n; in HAL_LIST_InsertAfter() 64 n->prev = l; in HAL_LIST_InsertAfter() 74 l->prev->next = n; in HAL_LIST_InsertBefore() 75 n->prev = l->prev; in HAL_LIST_InsertBefore() 77 l->prev = n; in HAL_LIST_InsertBefore() 87 n->next->prev = n->prev; in HAL_LIST_Remove() 88 n->prev->next = n->next; in HAL_LIST_Remove() 90 n->next = n->prev = n; in HAL_LIST_Remove()
|
| /bsp/xuantie/libraries/xuantie_libraries/csi/csi2/include/drv/ |
| A D | list.h | 28 struct dlist_s *prev; member 35 node->prev = prev; in __dlist_add() 37 prev->next = node; in __dlist_add() 38 next->prev = node; in __dlist_add() 59 __dlist_add(node, queue->prev, queue); in dlist_add_tail() 64 dlist_t *prev = node->prev; in dlist_del() local 67 prev->next = next; in dlist_del() 68 next->prev = prev; in dlist_del() 73 node->next = node->prev = node; in dlist_init() 79 list->prev = list; in INIT_AOS_DLIST_HEAD() [all …]
|
| /bsp/nxp/imx/imxrt/libraries/drivers/vglite/VGLiteKernel/rtos/ |
| A D | vg_lite_hal.c | 68 struct list_head *prev; member 73 (entry)->prev = (entry); 80 to_add->prev = head->prev; in add_list() 83 head->prev = to_add; in add_list() 84 if (to_add->prev != NULL) { in add_list() 85 to_add->prev->next = to_add; in add_list() 92 if (entry->prev != NULL) { in delete_list() 93 entry->prev->next = entry->next; in delete_list() 96 entry->next->prev = entry->prev; in delete_list() 312 for (pos = (heap_node_t *)pos->list.prev; in vg_lite_hal_free_contiguous() [all …]
|
| /bsp/allwinner/libraries/sunxi-hal/hal/source/usb/host/ |
| A D | ohci-mem.c | 107 struct td **prev = &hc->td_hash [TD_HASH_FUNC (td->td_dma)]; 109 while (*prev && *prev != td) 110 prev = &(*prev)->td_hash; 111 if (*prev) 112 *prev = td->td_hash;
|
| A D | ohci-q.c | 155 struct ed *here = *prev; 164 prev = &here->ed_next; 166 here = *prev; 173 *prev = ed; 280 while (*prev && (temp = *prev) != ed) { 282 prev = &temp->ed_next; 284 if (*prev) { 286 *prev = ed->ed_next; 985 __hc32 *prev; 1037 prev = &ed->hwHeadP; [all …]
|
| A D | ehci-q.c | 553 if (stopped && qtd->qtd_list.prev != &qh->qtd_list) { in qh_completions() 555 last = list_entry (qtd->qtd_list.prev, in qh_completions() 1211 qtd = list_entry (qh->qtd_list.prev, in qh_append_tds() 1273 struct ehci_qh *prev; in single_unlink_async() local 1280 prev = ehci->async; in single_unlink_async() 1281 while (prev->qh_next.qh != qh) in single_unlink_async() 1282 prev = prev->qh_next.qh; in single_unlink_async() 1284 prev->hw->hw_next = qh->hw->hw_next; in single_unlink_async() 1285 prev->qh_next = qh->qh_next; in single_unlink_async()
|
| A D | ehci-sched.c | 559 union ehci_shadow *prev = &ehci->pshadow[i]; in qh_link_periodic() local 561 union ehci_shadow here = *prev; in qh_link_periodic() 569 prev = periodic_next_shadow(ehci, prev, type); in qh_link_periodic() 571 here = *prev; in qh_link_periodic() 580 prev = &here.qh->qh_next; in qh_link_periodic() 582 here = *prev; in qh_link_periodic() 590 prev->qh = qh; in qh_link_periodic() 1739 union ehci_shadow here = *prev; in itd_link() 1747 prev = periodic_next_shadow(ehci, prev, type); in itd_link() 1749 here = *prev; in itd_link() [all …]
|
| A D | ehci-timer.c | 324 ehci->cached_itd_list.prev, in start_free_itds() 327 ehci->cached_sitd_list.prev, in start_free_itds()
|
| /bsp/allwinner/libraries/sunxi-hal/hal/source/dma/ |
| A D | hal_dma.c | 195 if ((!prev && !chan) || !next) in sunxi_lli_list() 199 if (!prev) in sunxi_lli_list() 207 prev->p_lln = __va_to_pa((unsigned long)next); in sunxi_lli_list() 208 prev->vlln = next; in sunxi_lli_list() 490 struct sunxi_dma_lli *l_item = NULL, *prev = NULL; in hal_dma_prep_cyclic() local 558 prev = sunxi_lli_list(prev, l_item, chan); in hal_dma_prep_cyclic() 563 for (prev = chan->desc; prev != NULL; prev = prev->vlln) in hal_dma_prep_cyclic() 565 sunxi_dump_lli(chan, prev); in hal_dma_prep_cyclic() 702 struct sunxi_dma_lli *prev = NULL; in hal_dma_start() local 726 for (prev = chan->desc; prev != NULL; prev = prev->vlln) in hal_dma_start() [all …]
|
| /bsp/airm2m/air105/libraries/HAL_Driver/Src/ |
| A D | bsp_common.c | 1117 llist_head *prev, in __llist_add() argument 1120 next->prev = p; in __llist_add() 1122 p->prev = prev; in __llist_add() 1123 prev->next = p; in __llist_add() 1149 __llist_add(p, head->prev, head); in llist_add_tail() 1161 next->prev = prev; in __llist_del() 1162 prev->next = next; in __llist_del() 1173 if (entry->prev && entry->next) in llist_del() 1175 __llist_del(entry->prev, entry->next); in llist_del() 1178 entry->prev = LLIST_POISON2; in llist_del() [all …]
|
| /bsp/nxp/imx/imxrt/libraries/drivers/vglite/font/mcufont/decoder/ |
| A D | mf_wordwrap.c | 25 mf_str prev = *text; in get_wordlen() local 37 prev = *text; in get_wordlen() 51 prev = *text; in get_wordlen() 55 prev = *text; in get_wordlen() 61 *text = prev; in get_wordlen()
|
| /bsp/efm32/Libraries/emlib/src/ |
| A D | em_aes.c | 169 uint32_t prev[4]; in AES_CBC128() local 228 prev[i] = _iv[i]; in AES_CBC128() 248 AES->XORDATA = __REV(prev[i]); in AES_CBC128() 249 prev[i] = _in[i]; in AES_CBC128() 309 uint32_t prev[4]; in AES_CBC256() local 361 prev[i] = _iv[i]; in AES_CBC256() 383 AES->XORDATA = __REV(prev[i]); in AES_CBC256() 384 prev[i] = _in[i]; in AES_CBC256()
|
| /bsp/nxp/lpc/lpc5410x/drivers/ |
| A D | drv_uart.c | 21 static int32_t _CalcErr(uint32_t n, uint32_t d, uint32_t *prev); 241 static int32_t _CalcErr(uint32_t n, uint32_t d, uint32_t *prev) in _CalcErr() argument 249 if (*prev <= err) { in _CalcErr() 252 *prev = err; in _CalcErr()
|
| /bsp/hpmicro/libraries/hpm_sdk/components/usb/host/ |
| A D | hpm_usb_host.c | 62 for (hcd_link_t *prev = list_head; in usb_host_list_remove_qhd_by_addr() local 63 …!prev->terminate && (sys_address_to_core_local_mem(USB_HOST_MCU_CORE, usb_host_align32(prev->addre… in usb_host_list_remove_qhd_by_addr() 64 …prev = (hcd_link_t *)sys_address_to_core_local_mem(USB_HOST_MCU_CORE, (uint32_t)usb_host_list_next… in usb_host_list_remove_qhd_by_addr() 67 … (hcd_qhd_t *)sys_address_to_core_local_mem(USB_HOST_MCU_CORE, (uint32_t)usb_host_list_next(prev)); in usb_host_list_remove_qhd_by_addr() 71 prev->address = qhd->next.address; in usb_host_list_remove_qhd_by_addr()
|
| /bsp/airm2m/air105/libraries/HAL_Driver/Inc/ |
| A D | bsp_common.h | 263 struct llist_head_t *next, *prev; member 272 (ptr)->next = (ptr); (ptr)->prev = (ptr); \ 282 llist_head *prev, 313 void __llist_del(llist_head * prev, llist_head * next);
|
| /bsp/samd21/sam_d2x_asflib/common2/services/gfx_mono/ |
| A D | gfx_mono_spinctrl.h | 205 struct gfx_mono_spinctrl *prev; member
|
| A D | gfx_mono_spinctrl.c | 353 spinner->prev = lastspinner; in gfx_mono_spinctrl_spincollection_add_spinner() 660 gfx_mono_spinctrl_draw_indicator(iterator->prev, in gfx_mono_spinctrl_spincollection_process_key()
|
| /bsp/allwinner/libraries/sunxi-hal/hal/source/sdmmc/ |
| A D | sdio.c | 279 struct sdio_func_tuple *this, **prev; in sdio_read_cis() local 302 prev = &func->tuples; in sdio_read_cis() 304 prev = &card->tuples; in sdio_read_cis() 306 if (*prev) { in sdio_read_cis() 360 *prev = this; in sdio_read_cis() 361 prev = &this->next; in sdio_read_cis() 382 *prev = card->tuples; in sdio_read_cis()
|
| /bsp/nxp/imx/imxrt/libraries/drivers/vglite/VGLite/ |
| A D | vg_lite.c | 628 if (Point->prev) in _set_point_tangent() 743 point->prev = last_point; in _add_point_to_point_list_wdelta() 779 point->prev = NULL; in _add_point_to_point_list() 1120 point->prev = NULL; in _add_point_to_left_stroke_point_list_head() 1523 new_point->prev = NULL; in _start_new_stroke_sub_path() 1647 prev_point = point->prev; in _draw_swing_pie_area() 1653 start_point->prev->prev = end_point; in _draw_swing_pie_area() 1654 start_point->prev = NULL; in _draw_swing_pie_area() 1663 end_point->prev->x, end_point->prev->y)); in _draw_swing_pie_area() 1699 point->prev = next_point; in _draw_swing_pie_area() [all …]
|