Searched refs:newList (Results 1 – 4 of 4) sorted by relevance
300 static inline void UtilsListAddList(UTILS_DL_LIST *oldList, UTILS_DL_LIST *newList) in UtilsListAddList() argument304 UTILS_DL_LIST *newListHead = newList; in UtilsListAddList()305 UTILS_DL_LIST *newListTail = newList->pstPrev; in UtilsListAddList()332 static inline void UtilsListTailInsertList(UTILS_DL_LIST *oldList, UTILS_DL_LIST *newList) in UtilsListTailInsertList() argument334 UtilsListAddList(oldList->pstPrev, newList); in UtilsListTailInsertList()356 static inline void UtilsListHeadInsertList(UTILS_DL_LIST *oldList, UTILS_DL_LIST *newList) in UtilsListHeadInsertList() argument358 UtilsListAddList(oldList, newList); in UtilsListHeadInsertList()
45 List *newList = (List *)calloc(1, (sizeof(List))); in ListCreate() local46 if (newList != NULL) { in ListCreate()47 DL_ListInit(&newList->dlList); in ListCreate()48 newList->cb = cb; in ListCreate()50 return newList; in ListCreate()
51 …struct DATASLListParams *newList = (struct DATASLListParams*)malloc(sizeof(struct DATASLListParams… in PushListNode() local52 if (newList == NULL) { in PushListNode()57 UpdateListNode(newList, list->prev, list); in PushListNode()58 newList->callbackParams = callbackParams; in PushListNode()
86 let newList: number[] = [];87 newList = array1.filter((val) => {90 if (newList.length === array2.length) {