Searched refs:list (Results 76 - 100 of 726) sorted by relevance

1234567891011>>

/haiku-fatelf/src/add-ons/accelerants/vmware/
H A DAcceleration.c17 SCREEN_TO_SCREEN_BLIT(engine_token *et, blit_params *list, uint32 count) argument
24 b = &list[i];
44 fill_rect_params *list, uint32 count)
50 f = &list[i];
61 INVERT_RECTANGLE(engine_token *et, fill_rect_params *list, uint32 count) argument
68 FILL_SPAN(engine_token * et, uint32 colorIndex, uint16 * list, uint32 count) argument
43 FILL_RECTANGLE(engine_token *et, uint32 colorIndex, fill_rect_params *list, uint32 count) argument
/haiku-fatelf/src/bin/gdb/gdb/
H A Dcompleter.c61 /* When completing on command names, we remove '-' from the list of
69 /* When completing on file names, we remove from the list of word
204 char ** list = NULL;
275 list = make_file_symbol_completion_list (symbol_start, word,
281 list = make_symbol_completion_list (symbol_start, word);
292 if (list)
293 for ( ; list[n_syms]; n_syms++)
296 /* Make list[] large enough to hold both lists, then catenate
297 fn_list[] onto the end of list[]. */
300 list
203 char ** list = NULL; local
381 char **list = NULL; local
628 static char **list = (char **) NULL; /* Cache of completions */ local
[all...]
/haiku-fatelf/src/tests/system/kernel/util/
H A DDoublyLinkedListTest.cpp85 //! Tests the given list
91 DoublyLinked::List<Item> list; local
99 list.Add(&items[i]);
102 // list must not be empty
104 CHK(!list.IsEmpty());
106 // count items in list
109 DoublyLinked::Iterator<Item> iterator = list.Iterator();
117 iterator = list.Iterator();
129 Item *first = list.RemoveHead();
135 iterator = list
[all...]
/haiku-fatelf/src/kits/support/
H A DList.cpp63 BList::operator=(const BList& list) argument
65 if (&list != this) {
66 fBlockSize = list.fBlockSize;
67 if (_ResizeArray(list.fItemCount)) {
68 fItemCount = list.fItemCount;
69 memcpy(fObjectList, list.fObjectList, fItemCount * sizeof(void*));
78 BList::operator==(const BList& list) const
80 if (&list == this)
83 if (list.fItemCount != fItemCount)
87 return memcmp(fObjectList, list
139 AddList(const BList* list, int32 index) argument
158 AddList(const BList* list) argument
452 AddList__5BListP5BListl(BList* self, BList* list, int32 index) argument
459 AddList__5BListP5BList(BList* self, BList* list) argument
[all...]
H A DPointerList.cpp46 of the item not in list.
48 int32 BinarySearchIndex(const void *key, const BList *list);
51 not be found in the list.
53 void* BinarySearch(const void *key, const BList *list);
55 Sorts the items in list.
57 void SortItems(BList *list);
59 Removes the first item in list and appends it at the bottom of
60 the list and sorts all items but the last item.
62 void HSortItems(BList *list);
68 // Use insertion sort if number of elements in list i
114 BinarySearchIndex(const void *key, const BList *list) argument
124 BinarySearch(const void *key, const BList *list) argument
133 SortItems(BList *list) argument
141 HSortItems(BList *list) argument
252 _PointerList_(const _PointerList_ &list) argument
[all...]
/haiku-fatelf/src/tests/kits/midi/patchbay/
H A DPatchView.h15 #include <list>
62 typedef list<EndpointInfo>::iterator endpoint_itor;
63 typedef list<EndpointInfo>::const_iterator const_endpoint_itor;
64 typedef list<PatchRow*>::iterator row_itor;
66 list<EndpointInfo> m_producers;
67 list<EndpointInfo> m_consumers;
68 list<PatchRow*> m_patchRows;
/haiku-fatelf/src/apps/aboutsystem/
H A DUtilities.cpp93 va_list list;
94 va_start(list, string);
95 SetTo(string, list);
96 va_end(list);
134 va_list list; local
135 va_start(list, string);
136 SetTo(string, list);
137 va_end(list);
151 va_list list;
152 va_copy(list, _lis
286 va_list list; local
305 va_list list; local
324 va_list list; local
[all...]
/haiku-fatelf/src/bin/bash/lib/sh/
H A Dstringvec.c180 strvec_from_word_list (list, alloc, starting_index, ip)
181 WORD_LIST *list;
187 count = list_length (list);
192 for (count = starting_index; list; count++, list = list->next)
193 array[count] = alloc ? savestring (list->word->word) : list->word->word;
203 list rather than copy the values in ARRAY. STARTING_INDEX says where
211 WORD_LIST *list; local
[all...]
/haiku-fatelf/src/add-ons/print/drivers/pdf/source/
H A DReport.cpp72 va_list list; local
74 va_start(list, fmt);
76 vfprintf(stderr, fmt, list);
79 vsprintf(b, fmt, list);
82 va_end(list);
/haiku-fatelf/src/add-ons/accelerants/radeon/
H A Dgeneric.h48 void SCREEN_TO_SCREEN_BLIT(engine_token *et, blit_params *list, uint32 count);
49 void FILL_RECTANGLE(engine_token *et, uint32 color, fill_rect_params *list, uint32 count);
50 void INVERT_RECTANGLE(engine_token *et, fill_rect_params *list, uint32 count);
52 void FILL_SPAN(engine_token *et, uint32 color, uint16 *list, uint32 count);
54 void SCREEN_TO_SCREEN_BLIT_DMA(engine_token *et, blit_params *list, uint32 count);
55 void FILL_RECTANGLE_DMA(engine_token *et, uint32 color, fill_rect_params *list, uint32 count);
56 void INVERT_RECTANGLE_DMA(engine_token *et, fill_rect_params *list, uint32 count);
58 void FILL_SPAN_DMA(engine_token *et, uint32 color, uint16 *list, uint32 count);
60 void SCREEN_TO_SCREEN_BLIT_PIO(engine_token *et, blit_params *list, uint32 count);
61 void FILL_RECTANGLE_PIO(engine_token *et, uint32 color, fill_rect_params *list, uint3
[all...]
/haiku-fatelf/src/bin/makeudfimage/
H A DPhysicalPartitionAllocator.h16 #include <list>
30 status_t GetNextExtents(off_t length, std::list<Udf::long_address> &extents,
31 std::list<Udf::extent_address> &physicalExtents);
/haiku-fatelf/src/servers/registrar/
H A DAppInfoListMessagingTargetSet.cpp14 AppInfoList &list, bool skipRegistrar)
15 : fList(list),
16 fIterator(list.It()),
13 AppInfoListMessagingTargetSet( AppInfoList &list, bool skipRegistrar) argument
H A DRecentApps.h24 // Description: Recently launched apps list
35 #include <list>
51 status_t Get(int32 maxCount, BMessage *list);
63 std::list<std::string> fAppList;
/haiku-fatelf/src/tests/system/boot/loader/
H A Dplatform_devices.cpp49 add_device(const char *path, NodeList *list) argument
56 printf("add \"%s\" to list of boot devices\n", path);
57 list->Add(device);
64 recursive_add_device(const char *path, NodeList *list) argument
83 && add_device(nextPath, list) == B_OK)
86 recursive_add_device(nextPath, list);
158 NodeList *list, boot::Partition **_partition)
160 NodeIterator iterator = list->GetIterator();
173 platform_add_block_devices(struct stage2_args *args, NodeList *list) argument
180 add_device(path, list);
157 platform_get_boot_partition(struct stage2_args *args, Node *device, NodeList *list, boot::Partition **_partition) argument
[all...]
/haiku-fatelf/headers/private/media/
H A DMediaRosterEx.h49 status_t GetAllOutputs(const media_node & node, List<media_output> *list);
50 status_t GetAllOutputs(BBufferProducer *node, List<media_output> *list);
51 status_t GetAllInputs(const media_node & node, List<media_input> *list);
52 status_t GetAllInputs(BBufferConsumer *node, List<media_input> *list);
53 status_t PublishOutputs(const media_node & node, List<media_output> *list);
54 status_t PublishInputs(const media_node & node, List<media_input> *list);
/haiku-fatelf/src/system/kernel/device_manager/
H A Dio_resources.cpp68 ResourceTypeList* list = NULL; local
72 list = &sMemoryList;
75 list = &sPortList;
78 list = &sDMAChannelList;
82 ResourceTypeList::Iterator iterator = list->GetIterator();
97 list->Add(this);
/haiku-fatelf/headers/private/storage/
H A DAddOnMonitorHandler.h9 #include <list>
78 typedef std::list<add_on_entry_info> EntryList;
85 typedef std::list<add_on_directory_info> DirectoryList;
88 const EntryList& list,
91 const EntryList& list,
95 EntryList& list) const;
97 EntryList& list) const;
114 void _AddNewEntry(EntryList& list,
/haiku-fatelf/src/libs/linprog/
H A DConstraint.cpp142 SummandList* list = new SummandList; local
143 list->AddItem(new(std::nothrow) Summand(coeff1, var1));
144 return SetLeftSide(list, true);
152 SummandList* list = new SummandList; local
153 list->AddItem(new(std::nothrow) Summand(coeff1, var1));
154 list->AddItem(new(std::nothrow) Summand(coeff2, var2));
155 return SetLeftSide(list, true);
164 SummandList* list = new SummandList; local
165 list->AddItem(new(std::nothrow) Summand(coeff1, var1));
166 list
178 SummandList* list = new SummandList; local
[all...]
/haiku-fatelf/src/tests/kits/net/preflet/InterfacesAddOn/
H A DInterfacesListView.cpp97 BListView* list = dynamic_cast<BListView*>(owner); local
99 if (!list)
104 BRect bounds = list->ItemFrame(list->IndexOf(this));
110 list->SetHighColor(tint_color(list->ViewColor(),
113 list->SetHighColor(list->LowColor());
116 list->FillRect(bounds);
156 list
[all...]
/haiku-fatelf/src/apps/cortex/support/
H A DMediaString.cpp10 * notice, this list of conditions, and the following disclaimer.
13 * notice, this list of conditions, and the following disclaimer in the
55 BString list, last; local
60 list = "Buffer producer";
66 list = "Buffer consumer";
71 list << ", " << last;
77 list = "Time source";
82 list << ", " << last;
88 list = "Controllable";
93 list << ", " << las
632 BString list, last; local
1221 BString list, last; local
[all...]
/haiku-fatelf/src/add-ons/input_server/methods/canna/lib/
H A Dlisp.h87 typedef POINTERINT list; typedef
119 list tail;
120 list head;
124 list plist;
125 list value;
128 list (*func)(...);
129 list (*valfunc)(...);
132 list hlink;
141 list tagfield;
147 list (*symfun
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/bluetooth/h2/h2generic/
H A Dh2upper.h8 #include <util/list.h>
/haiku-fatelf/src/bin/
H A Diroster.cpp14 BList list; local
22 if ((err = get_input_devices(&list))!=B_OK) {
27 n = list.CountItems();
33 device = (BInputDevice *) list.ItemAt(i);
/haiku-fatelf/src/libs/print/libgutenprint/include/gutenprint/
H A Dpath.h46 extern void stp_path_split(stp_list_t *list,
/haiku-fatelf/src/libs/print/libgutenprint/src/cups/
H A Di18n.h24 #include <gutenprint/string-list.h>

Completed in 201 milliseconds

1234567891011>>