Home
last modified time | relevance | path

Searched refs:List_t (Results 1 – 25 of 169) sorted by relevance

1234567

/dports/lang/micropython/micropython-1.17/ports/cc3200/FreeRTOS/Source/
H A Dcroutine.c87 static List_t pxReadyCoRoutineLists[ configMAX_CO_ROUTINE_PRIORITIES ]; /*< Prioritised ready co-ro…
88 static List_t xDelayedCoRoutineList1; /*< Delayed co-routines. */
90 static List_t * pxDelayedCoRoutineList; /*< Points to the delayed co-routine list currently…
201 void vCoRoutineAddToDelayedList( TickType_t xTicksToDelay, List_t *pxEventList ) in vCoRoutineAddToDelayedList()
275 List_t * pxTemp; in prvCheckDelayedList()
356 vListInitialise( ( List_t * ) &( pxReadyCoRoutineLists[ uxPriority ] ) ); in prvInitialiseCoRoutineLists()
359 vListInitialise( ( List_t * ) &xDelayedCoRoutineList1 ); in prvInitialiseCoRoutineLists()
360 vListInitialise( ( List_t * ) &xDelayedCoRoutineList2 ); in prvInitialiseCoRoutineLists()
361 vListInitialise( ( List_t * ) &xPendingReadyCoRoutineList ); in prvInitialiseCoRoutineLists()
370 BaseType_t xCoRoutineRemoveFromEventList( const List_t *pxEventList ) in xCoRoutineRemoveFromEventList()
[all …]
H A Dlist.c79 void vListInitialise( List_t * const pxList ) in vListInitialise()
116 void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) in vListInsertEnd()
145 void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) in vListInsert()
216 List_t * const pxList = ( List_t * ) pxItemToRemove->pvContainer; in uxListRemove()
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/sbml/util/
H A DList.h415 List_t *
457 List_free (List_t *lst);
486 List_add (List_t *lst, void *item);
509 List_countIf (const List_t *lst, ListItemPredicate predicate);
544 List_find ( const List_t *lst,
567 List_t *
568 List_findIf (const List_t *lst, ListItemPredicate predicate);
583 List_get (const List_t *lst, unsigned int n);
598 List_prepend (List_t *lst, void *item);
619 List_remove (List_t *lst, unsigned int n);
[all …]
H A DList.cpp420 List_t *
444 List_free (List_t *lst) in List_free()
467 List_add (List_t *lst, void *item) in List_add()
481 List_countIf (const List_t *lst, ListItemPredicate predicate) in List_countIf()
495 List_find ( const List_t *lst, in List_find()
510 List_t *
511 List_findIf (const List_t *lst, ListItemPredicate predicate) in List_findIf()
525 List_get (const List_t *lst, unsigned int n) in List_get()
539 List_prepend (List_t *lst, void *item) in List_prepend()
553 List_remove (List_t *lst, unsigned int n) in List_remove()
[all …]
/dports/biology/libsbml/libsbml-5.19.0/src/sbml/util/
H A DList.h415 List_t *
457 List_free (List_t *lst);
486 List_add (List_t *lst, void *item);
509 List_countIf (const List_t *lst, ListItemPredicate predicate);
544 List_find ( const List_t *lst,
567 List_t *
568 List_findIf (const List_t *lst, ListItemPredicate predicate);
583 List_get (const List_t *lst, unsigned int n);
598 List_prepend (List_t *lst, void *item);
619 List_remove (List_t *lst, unsigned int n);
[all …]
H A DList.cpp420 List_t *
444 List_free (List_t *lst) in List_free()
467 List_add (List_t *lst, void *item) in List_add()
481 List_countIf (const List_t *lst, ListItemPredicate predicate) in List_countIf()
495 List_find ( const List_t *lst, in List_find()
510 List_t *
511 List_findIf (const List_t *lst, ListItemPredicate predicate) in List_findIf()
525 List_get (const List_t *lst, unsigned int n) in List_get()
539 List_prepend (List_t *lst, void *item) in List_prepend()
553 List_remove (List_t *lst, unsigned int n) in List_remove()
[all …]
/dports/science/qmcpack/qmcpack-3.11.0/src/Utilities/
H A DDistributedIndex.h40 typedef std::list<int> List_t; typedef
44 std::map<int, List_t*> I;
51 std::map<int, List_t*>::iterator it = I.begin(); in ~DistributedIndex()
62 std::map<int, List_t*>::iterator it = I.begin(); in create()
109 std::map<int, List_t*>::const_iterator it = I.begin(); in capacity()
130 std::map<int, List_t*>::iterator it = I.begin(); in clear()
149 typedef std::list<int> List_t; typedef
163 std::vector<List_t*> I;
177 I.push_back(new List_t(*I[i])); in DistributedIndex()
/dports/shells/ksh93/ast-93u/src/cmd/nmake/
H A Dmisc.c138 List_t*
139 append(List_t* p, List_t* q) in append()
141 register List_t* t; in append()
161 List_t*
162 cons(Rule_t* r, List_t* p) in cons()
164 register List_t* q; in cons()
177 List_t*
178 listcopy(register List_t* p) in listcopy()
180 register List_t* q; in listcopy()
181 register List_t* r; in listcopy()
[all …]
H A Dmake.h464 List_t* prereqs; /* original prereqs */
500 List_t* prereqs; /* prerequisites */
899 List_t* next; /* next in list */
928 extern List_t* append(List_t*, List_t*);
948 extern List_t* cons(Rule_t*, List_t*);
983 extern List_t* joint(Rule_t*);
984 extern List_t* listcopy(List_t*);
1020 extern int prereqchange(Rule_t*, List_t*, Rule_t*, List_t*);
1029 extern void remdup(List_t*);
1036 extern List_t* scan(Rule_t*, Time_t*);
[all …]
H A Drule.c182 register List_t* p; in maprule()
294 List_t*
297 static List_t tmp; in joint()
313 register List_t* p; in addprereq()
314 register List_t* q; in addprereq()
396 register List_t* p; in associate()
399 List_t* u; in associate()
558 List_t* prereqs; in immediate()
880 List_t* p; in hasattribute()
1645 static List_t*
[all …]
/dports/shells/ksh93-devel/ast-cc1bca27/src/cmd/nmake/
H A Dmisc.c138 List_t*
139 append(List_t* p, List_t* q) in append()
141 register List_t* t; in append()
161 List_t*
162 cons(Rule_t* r, List_t* p) in cons()
164 register List_t* q; in cons()
177 List_t*
178 listcopy(register List_t* p) in listcopy()
180 register List_t* q; in listcopy()
181 register List_t* r; in listcopy()
[all …]
H A Dmake.h464 List_t* prereqs; /* original prereqs */
500 List_t* prereqs; /* prerequisites */
899 List_t* next; /* next in list */
928 extern List_t* append(List_t*, List_t*);
948 extern List_t* cons(Rule_t*, List_t*);
983 extern List_t* joint(Rule_t*);
984 extern List_t* listcopy(List_t*);
1020 extern int prereqchange(Rule_t*, List_t*, Rule_t*, List_t*);
1029 extern void remdup(List_t*);
1036 extern List_t* scan(Rule_t*, Time_t*);
[all …]
H A Drule.c182 register List_t* p; in maprule()
294 List_t*
297 static List_t tmp; in joint()
313 register List_t* p; in addprereq()
314 register List_t* q; in addprereq()
396 register List_t* p; in associate()
399 List_t* u; in associate()
558 List_t* prereqs; in immediate()
880 List_t* p; in hasattribute()
1645 static List_t*
[all …]
/dports/shells/ast-ksh/ast-ksh93v/src/cmd/nmake/
H A Dmisc.c138 List_t*
139 append(List_t* p, List_t* q) in append()
141 register List_t* t; in append()
161 List_t*
162 cons(Rule_t* r, List_t* p) in cons()
164 register List_t* q; in cons()
177 List_t*
178 listcopy(register List_t* p) in listcopy()
180 register List_t* q; in listcopy()
181 register List_t* r; in listcopy()
[all …]
H A Dmake.h464 List_t* prereqs; /* original prereqs */
500 List_t* prereqs; /* prerequisites */
900 List_t* next; /* next in list */
929 extern List_t* append(List_t*, List_t*);
949 extern List_t* cons(Rule_t*, List_t*);
984 extern List_t* joint(Rule_t*);
985 extern List_t* listcopy(List_t*);
1021 extern int prereqchange(Rule_t*, List_t*, Rule_t*, List_t*);
1030 extern void remdup(List_t*);
1037 extern List_t* scan(Rule_t*, Time_t*);
[all …]
H A Drule.c182 register List_t* p; in maprule()
294 List_t*
297 static List_t tmp; in joint()
313 register List_t* p; in addprereq()
314 register List_t* q; in addprereq()
396 register List_t* p; in associate()
399 List_t* u; in associate()
558 List_t* prereqs; in immediate()
880 List_t* p; in hasattribute()
1647 static List_t*
[all …]
/dports/devel/z88dk/z88dk/include/_DEVELOPMENT/sccz80/freertos/
H A Dlist.h177 } List_t; typedef
285 List_t * const pxConstList = ( pxList ); \
316 List_t * const pxList = ( pxItemToRemove )->pxContainer; \
434 extern void __LIB__ vListInitialise(List_t * const pxList) __smallc;
469 extern void __LIB__ vListInsert(List_t * const pxList,ListItem_t * const pxNewListItem) __smallc;
496 extern void __LIB__ vListInsertEnd(List_t * const pxList,ListItem_t * const pxNewListItem) __smallc;
/dports/devel/z88dk/z88dk/include/_DEVELOPMENT/sdcc/freertos/
H A Dlist.h177 } List_t; typedef
285 List_t * const pxConstList = ( pxList ); \
316 List_t * const pxList = ( pxItemToRemove )->pxContainer; \
434 extern void vListInitialise(List_t * const pxList);
467 extern void vListInsert(List_t * const pxList,ListItem_t * const pxNewListItem);
493 extern void vListInsertEnd(List_t * const pxList,ListItem_t * const pxNewListItem);
/dports/devel/z88dk/z88dk/include/_DEVELOPMENT/clang/freertos/
H A Dlist.h177 } List_t; typedef
285 List_t * const pxConstList = ( pxList ); \
316 List_t * const pxList = ( pxItemToRemove )->pxContainer; \
434 extern void vListInitialise(List_t * const pxList);
469 extern void vListInsert(List_t * const pxList,ListItem_t * const pxNewListItem);
496 extern void vListInsertEnd(List_t * const pxList,ListItem_t * const pxNewListItem);
/dports/devel/z88dk/z88dk/include/_DEVELOPMENT/proto/freertos/
H A Dlist.h175 } List_t; typedef
283 List_t * const pxConstList = ( pxList ); \
314 List_t * const pxList = ( pxItemToRemove )->pxContainer; \
432 __OPROTO(,,void,,vListInitialise,List_t * const pxList)
463 __OPROTO(,,void,,vListInsert,List_t * const pxList,ListItem_t * const pxNewListItem)
488 __OPROTO(,,void,,vListInsertEnd,List_t * const pxList,ListItem_t * const pxNewListItem)
/dports/lang/micropython/micropython-1.17/ports/cc3200/FreeRTOS/Source/include/
H A Dlist.h212 } List_t; typedef
320 List_t * const pxConstList = ( pxList ); \
386 void vListInitialise( List_t * const pxList ) PRIVILEGED_FUNCTION;
410 void vListInsert( List_t * const pxList, ListItem_t * const pxNewListItem ) PRIVILEGED_FUNCTION;
431 void vListInsertEnd( List_t * const pxList, ListItem_t * const pxNewListItem ) PRIVILEGED_FUNCTION;
/dports/shells/ksh93/ast-93u/src/cmd/std/
H A Dtsort.c62 } List_t; typedef
67 register List_t* p; in visit()
100 List_t* p; in tsort()
122 if (!(p = newof(0, List_t, 1, 0))) in tsort()
/dports/shells/ksh93-devel/ast-cc1bca27/src/cmd/std/
H A Dtsort.c62 } List_t; typedef
67 register List_t* p; in visit()
100 List_t* p; in tsort()
122 if (!(p = newof(0, List_t, 1, 0))) in tsort()
/dports/shells/ast-ksh/ast-ksh93v/src/cmd/std/
H A Dtsort.c62 } List_t; typedef
67 register List_t* p; in visit()
100 List_t* p; in tsort()
122 if (!(p = newof(0, List_t, 1, 0))) in tsort()
/dports/textproc/zorba/zorba-2.7.0/src/annotations/
H A Dannotations.h146 typedef std::vector<AnnotationInternal_t> List_t; typedef
148 typedef List_t::const_iterator ListConstIter_t;
151 List_t theAnnotationList;

1234567