Searched refs:list (Results 1 - 25 of 785) sorted by relevance

1234567891011>>

/vbox/src/VBox/Devices/PC/ipxe/src/tests/
H A Dlist_test.c33 #include <ipxe/list.h>
36 /** A list test structure */
39 struct list_head list; member in struct:list_test
58 /** Test list */
62 * Check list contents are as expected
64 * @v list Test list
68 static int list_check_contents ( struct list_head *list, argument
73 /* Determine size of list */
74 list_for_each_entry ( entry, list, lis
161 struct list_head *list = &test_list; local
[all...]
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/main/
H A Dsimple_list.h5 * Intended to work with a list sentinal which is created as an empty
6 * list. Insert & delete are O(1).
41 * Remove an element from list.
52 * Insert an element to the list head.
54 * \param list list.
57 #define insert_at_head(list, elem) \
59 (elem)->prev = list; \
60 (elem)->next = (list)->next; \
61 (list)
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/libWineStub/include/wine/
H A Dlist.h38 struct list struct
40 struct list *next;
41 struct list *prev;
44 /* Define a list like so:
48 * struct list entry; <-- doesn't have to be the first item in the struct
52 * static struct list global_gadgets = LIST_INIT( global_gadgets );
58 * struct list gadgets;
80 static inline void list_add_after( struct list *elem, struct list *to_add )
89 static inline void list_add_before( struct list *ele
98 list_add_head( struct list *list, struct list *elem ) argument
104 list_add_tail( struct list *list, struct list *elem ) argument
117 list_next( const struct list *list, const struct list *elem ) argument
125 list_prev( const struct list *list, const struct list *elem ) argument
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dlist.h35 struct list struct
37 struct list *next;
38 struct list *prev;
41 /* Define a list like so:
45 * struct list entry; <-- doesn't have to be the first item in the struct
49 * static struct list global_gadgets = LIST_INIT( global_gadgets );
55 * struct list gadgets;
77 static inline void list_add_after( struct list *elem, struct list *to_add )
86 static inline void list_add_before( struct list *ele
95 list_add_head( struct list *list, struct list *elem ) argument
101 list_add_tail( struct list *list, struct list *elem ) argument
114 list_next( const struct list *list, const struct list *elem ) argument
122 list_prev( const struct list *list, const struct list *elem ) argument
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/vbox/libWineStub/include/wine/
H A Dlist.h38 struct list struct
40 struct list *next;
41 struct list *prev;
44 /* Define a list like so:
48 * struct list entry; <-- doesn't have to be the first item in the struct
52 * static struct list global_gadgets = LIST_INIT( global_gadgets );
58 * struct list gadgets;
80 static inline void list_add_after( struct list *elem, struct list *to_add )
89 static inline void list_add_before( struct list *ele
98 list_add_head( struct list *list, struct list *elem ) argument
104 list_add_tail( struct list *list, struct list *elem ) argument
117 list_next( const struct list *list, const struct list *elem ) argument
125 list_prev( const struct list *list, const struct list *elem ) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/vbox/libWineStub/include/wine/
H A Dlist.h35 struct list struct
37 struct list *next;
38 struct list *prev;
41 /* Define a list like so:
45 * struct list entry; <-- doesn't have to be the first item in the struct
49 * static struct list global_gadgets = LIST_INIT( global_gadgets );
55 * struct list gadgets;
77 static inline void list_add_after( struct list *elem, struct list *to_add )
86 static inline void list_add_before( struct list *ele
95 list_add_head( struct list *list, struct list *elem ) argument
101 list_add_tail( struct list *list, struct list *elem ) argument
114 list_next( const struct list *list, const struct list *elem ) argument
122 list_prev( const struct list *list, const struct list *elem ) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dlist.h33 struct list struct
35 struct list *next;
36 struct list *prev;
39 /* Define a list like so:
43 * struct list entry; <-- doesn't have to be the first item in the struct
47 * static struct list global_gadgets = LIST_INIT( global_gadgets );
53 * struct list gadgets;
75 static inline void list_add_after( struct list *elem, struct list *to_add )
84 static inline void list_add_before( struct list *ele
93 list_add_head( struct list *list, struct list *elem ) argument
99 list_add_tail( struct list *list, struct list *elem ) argument
112 list_next( const struct list *list, const struct list *elem ) argument
120 list_prev( const struct list *list, const struct list *elem ) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/vbox/libWineStub/include/wine/
H A Dlist.h38 struct list struct
40 struct list *next;
41 struct list *prev;
44 /* Define a list like so:
48 * struct list entry; <-- doesn't have to be the first item in the struct
52 * static struct list global_gadgets = LIST_INIT( global_gadgets );
58 * struct list gadgets;
80 static inline void list_add_after( struct list *elem, struct list *to_add )
89 static inline void list_add_before( struct list *ele
98 list_add_head( struct list *list, struct list *elem ) argument
104 list_add_tail( struct list *list, struct list *elem ) argument
117 list_next( const struct list *list, const struct list *elem ) argument
125 list_prev( const struct list *list, const struct list *elem ) argument
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/lib/libc/src/
H A Dstrpbrk.c42 PL_strpbrk(const char *s, const char *list) argument
44 if( ((const char *)0 == s) || ((const char *)0 == list) ) return (char *)0;
46 return strpbrk(s, list);
50 PL_strprbrk(const char *s, const char *list) argument
55 if( ((const char *)0 == s) || ((const char *)0 == list) ) return (char *)0;
61 for( p = list; *p; p++ )
69 PL_strnpbrk(const char *s, const char *list, PRUint32 max) argument
73 if( ((const char *)0 == s) || ((const char *)0 == list) ) return (char *)0;
76 for( p = list; *p; p++ )
84 PL_strnprbrk(const char *s, const char *list, PRUint3 argument
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dlist.h8 * This linked list handling code is based on the Linux kernel's
9 * list.h.
17 /** A doubly-linked list entry (or list head) */
19 /** Next list entry */
21 /** Previous list entry */
26 * Initialise a static list head
28 * @v list List head
30 #define LIST_HEAD_INIT( list ) { &(list),
166 list_is_last( const struct list_head *list, const struct list_head *head ) argument
186 list_cut_position( struct list_head *new, struct list_head *list, struct list_head *entry ) argument
218 list_splice( const struct list_head *list, struct list_head *entry ) argument
246 list_splice_tail( const struct list_head *list, struct list_head *entry ) argument
272 list_splice_init( struct list_head *list, struct list_head *entry ) argument
291 list_splice_tail_init( struct list_head *list, struct list_head *entry ) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dlist.h29 /* classic doubly-link circular list */
30 struct list { struct
31 struct list *next, *prev;
35 list_init(struct list *list) argument
37 list->next = list->prev = list;
41 __list_add(struct list *entry,
42 struct list *pre
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Doptionstr.h3 #include "list.h"
6 GenericListRec list; member in struct:_InputOption
H A Dxf86Optionstr.h27 #include "list.h"
33 GenericListRec list; member in struct:_XF86OptionRec
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Doptionstr.h3 #include "list.h"
6 GenericListRec list; member in struct:_InputOption
H A Dxf86Optionstr.h27 #include "list.h"
33 GenericListRec list; member in struct:_XF86OptionRec
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dlist.h29 /* classic doubly-link circular list */
30 struct list { struct
31 struct list *next, *prev;
35 list_init(struct list *list) argument
37 list->next = list->prev = list;
41 __list_add(struct list *entry,
42 struct list *pre
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dlist.h29 /* classic doubly-link circular list */
30 struct list { struct
31 struct list *next, *prev;
35 list_init(struct list *list) argument
37 list->next = list->prev = list;
41 __list_add(struct list *entry,
42 struct list *pre
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dlist.h30 * @file Classic doubly-link circular list implementation.
33 * We need to keep a list of struct foo in the parent struct bar, i.e. what
42 * We need one list head in bar and a list element in all foos (both are of
43 * data type 'struct list').
47 * struct list foos;
53 * struct list entry;
57 * Now we initialize the list head:
63 * Then we create the first element and add it to this list:
69 * Repeat the above for each element you want to add to the list
113 struct list { struct
126 list_init(struct list *list) argument
[all...]
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Doptionstr.h3 #include "list.h"
7 GenericListRec list; member in struct:_InputOption
H A Dxf86Optionstr.h27 #include "list.h"
34 GenericListRec list; member in struct:_XF86OptionRec
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.13.0/
H A Doptionstr.h3 #include "list.h"
6 GenericListRec list; member in struct:_InputOption
H A Dxf86Optionstr.h27 #include "list.h"
33 GenericListRec list; member in struct:_XF86OptionRec
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.14.0/
H A Doptionstr.h3 #include "list.h"
6 GenericListRec list; member in struct:_InputOption
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.15.0/
H A Doptionstr.h3 #include "list.h"
6 GenericListRec list; member in struct:_InputOption
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/shader/
H A Dprog_uniform.h75 _mesa_free_uniform_list(struct gl_uniform_list *list);
78 _mesa_append_uniform(struct gl_uniform_list *list,
82 _mesa_lookup_uniform(const struct gl_uniform_list *list, const char *name);
85 _mesa_longest_uniform_name(const struct gl_uniform_list *list);
88 _mesa_print_uniforms(const struct gl_uniform_list *list);

Completed in 281 milliseconds

1234567891011>>