Searched refs:items (Results 1 - 25 of 423) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dptrarray.c28 assert( p->items || !p->n_items );
33 tr_free( p->items );
45 assert( t->items || !t->n_items );
49 func( t->items[i] );
57 return t->items;
68 t->items = tr_renew( void*, t->items, t->n_alloc );
74 memmove( t->items + pos + 1,
75 t->items + pos,
78 t->items[po
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/macosx/Sparkle.framework/Headers/
H A DSUAppcast.h14 NSArray *items; variable
24 - (NSArray *)items;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/macosx/Sparkle.framework/Versions/A/Headers/
H A DSUAppcast.h14 NSArray *items; variable
24 - (NSArray *)items;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/macosx/Sparkle.framework/Versions/Current/Headers/
H A DSUAppcast.h14 NSArray *items; variable
24 - (NSArray *)items;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/pqueue/
H A Dpqueue.c65 pitem *items; member in struct:_pqueue
113 if (pq->items == NULL) {
114 pq->items = item;
118 for (curr = NULL, next = pq->items;
128 pq->items = item;
147 return pq->items;
152 pitem *item = pq->items;
154 if (pq->items != NULL)
155 pq->items = pq->items
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/pqueue/
H A Dpqueue.c65 pitem *items; member in struct:_pqueue
113 if (pq->items == NULL) {
114 pq->items = item;
118 for (curr = NULL, next = pq->items;
128 pq->items = item;
147 return pq->items;
152 pitem *item = pq->items;
154 if (pq->items != NULL)
155 pq->items = pq->items
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/pqueue/
H A Dpqueue.c66 pitem *items; member in struct:_pqueue
117 if (pq->items == NULL)
119 pq->items = item;
123 for(curr = NULL, next = pq->items;
132 pq->items = item;
152 return pq->items;
158 pitem *item = pq->items;
160 if (pq->items != NULL)
161 pq->items = pq->items
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dpng.c48 void *ff_png_zalloc(void *opaque, unsigned int items, unsigned int size) argument
50 if(items >= UINT_MAX / size)
52 return av_malloc(items * size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dlistbox.h54 void InsertItems(unsigned int nItems, const wxString *items, unsigned int pos);
55 void InsertItems(const wxArrayString& items, unsigned int pos) argument
56 { DoInsertItems(items, pos); }
58 void Set(int n, const wxString* items, void **clientData = NULL);
59 void Set(const wxArrayString& items, void **clientData = NULL) argument
60 { DoSetItems(items, clientData); }
122 virtual void DoInsertItems(const wxArrayString& items, unsigned int pos) = 0;
123 virtual void DoSetItems(const wxArrayString& items, void **clientData) = 0;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/
H A Dlboxcmn.cpp46 // adding items
49 void wxListBoxBase::InsertItems(unsigned int nItems, const wxString *items, unsigned int pos) argument
54 aItems.Add(items[n]);
61 void wxListBoxBase::Set(int nItems, const wxString* items, void **clientData) argument
66 aItems.Add(items[n]);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/samples/applet/
H A Dcombobox.h58 // Inserts: Used to insert items into the listbox
62 void InsertItems(int nItems, const wxString *items, int pos);
63 void InsertItems(const wxArrayString& items, int pos);
65 // Sets: Used to set items in the combo box
66 void Set(int n, const wxString* items, void **clientData );
67 void Set(const wxArrayString& items, void **clientData);
70 // Selections: Used to get/de/select items in the listbox
82 // Append items to the listbox
87 // Deleting items from the list box
H A Dcombobox.cpp100 void ComboBox::InsertItems(int nItems, const wxString *items, int pos) argument
102 m_ListBox->InsertItems(nItems, items, pos);
105 void ComboBox::InsertItems(const wxArrayString& items, int pos) argument
107 m_ListBox->InsertItems(items, pos);
110 void ComboBox::Set(int n, const wxString* items, void **clientData) argument
112 m_ListBox->Set(n, items, clientData);
116 void ComboBox::Set(const wxArrayString& items, void **clientData) argument
118 m_ListBox->Set(items, clientData);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/scripts/perl/Perf-Trace-Util/
H A DContext.c51 if (items != 1)
74 if (items != 1)
97 if (items != 1)
125 PERL_UNUSED_VAR(items); /* -W */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-python/avahi/
H A DServiceTypeDatabase.py.in69 def items(self):
71 items = []
76 items.append((key, localized_service_name))
78 return items
103 print b.items()
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-python/avahi/
H A DServiceTypeDatabase.py.in69 def items(self):
71 items = []
76 items.append((key, localized_service_name))
78 return items
103 print b.items()
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/zlib/
H A Dzutil.c216 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
219 ulg bsize = (ulg)items*size;
275 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
278 return _halloc((long)items, size);
296 extern voidp calloc OF((uInt items, uInt size));
300 voidpf zcalloc (opaque, items, size)
302 unsigned items;
305 if (opaque) items += size - size; /* make compiler happy */
306 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
307 (voidpf)calloc(items, siz
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/
H A Dzutil.c216 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
219 ulg bsize = (ulg)items*size;
275 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
278 return _halloc((long)items, size);
296 extern voidp calloc OF((uInt items, uInt size));
300 voidpf zcalloc (opaque, items, size)
302 unsigned items;
305 if (opaque) items += size - size; /* make compiler happy */
306 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
307 (voidpf)calloc(items, siz
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/zlib-1.2.3/
H A Dzutil.c216 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
219 ulg bsize = (ulg)items*size;
275 voidpf zcalloc (voidpf opaque, unsigned items, unsigned size) argument
278 return _halloc((long)items, size);
296 extern voidp calloc OF((uInt items, uInt size));
300 voidpf zcalloc (opaque, items, size)
302 unsigned items;
305 if (opaque) items += size - size; /* make compiler happy */
306 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
307 (voidpf)calloc(items, siz
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/config/
H A Dmenubox.c168 struct dialog_list_item ** items)
222 /* draw a box around the menu items */
232 item_x = MAX (item_x, MIN(menu_width, strlen (items[i]->name) + 2));
233 if (strcmp(current, items[i]->tag) == 0) choice = i;
263 print_item (menu, items[first_item + i]->name, i, i == choice,
264 (items[first_item + i]->tag[0] != ':'));
285 j = first_alpha(items[scroll + i]->name, "YyNnMm>");
286 if (key == tolower(items[scroll + i]->name[j]))
291 j = first_alpha(items[scroll + i]->name, "YyNnMm>");
292 if (key == tolower(items[scrol
166 dialog_menu(const char *title, const char *prompt, int height, int width, int menu_height, const char *current, int item_no, struct dialog_list_item ** items) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/bus/
H A Dexpirelist.c2 /* expirelist.c List of items that expire
33 DBusList *items; /**< List of BusExpireItem */ member in struct:BusExpireList
85 _dbus_assert (list->items == NULL);
137 link = _dbus_list_get_first_link (&list->items);
140 DBusList *next = _dbus_list_get_next_link (&list->items, link);
193 if (list->items != NULL)
222 _dbus_list_remove_link (&list->items, link);
229 return _dbus_list_remove (&list->items, item);
236 _dbus_list_unlink (&list->items, link);
245 ret = _dbus_list_prepend (&list->items, ite
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_overlay.c152 } items[SVGA_VIDEO_PITCH_3 + 1]; member in struct:__anon11472::__anon11473
177 cmds->body.items[i].registerId = i;
181 cmds->body.items[SVGA_VIDEO_ENABLED].value = true;
182 cmds->body.items[SVGA_VIDEO_FLAGS].value = arg->flags;
183 cmds->body.items[SVGA_VIDEO_DATA_OFFSET].value = offset;
184 cmds->body.items[SVGA_VIDEO_FORMAT].value = arg->format;
185 cmds->body.items[SVGA_VIDEO_COLORKEY].value = arg->color_key;
186 cmds->body.items[SVGA_VIDEO_SIZE].value = arg->size;
187 cmds->body.items[SVGA_VIDEO_WIDTH].value = arg->width;
188 cmds->body.items[SVGA_VIDEO_HEIGH
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dpng.c39 void *ff_png_zalloc(void *opaque, unsigned int items, unsigned int size) argument
41 return av_mallocz_array(items, size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/fl/
H A Dgcupdatesmgr.h99 // Internal function for repositioning items.
100 void DoRepositionItems( wxList& items );
102 // Internal function for repositioning items.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/conntrack-tools/conntrack-tools-1.4.0/include/
H A Dstack.h8 int items; member in struct:stack
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/scripts/kconfig/lxdialog/
H A Dchecklist.c113 const char *const *items)
129 status[i] = !strcasecmp(items[i * 3 + 2], "on");
131 || !strcasecmp(items[i * 3 + 2], "selected"))
171 /* draw a box around the list items */
178 check_x = MAX(check_x, +strlen(items[i * 3 + 1]) + 4);
190 print_item(list, items[(scroll + i) * 3 + 1],
208 toupper(items[(scroll + i) * 3 + 1][0]))
220 print_item(list, items[scroll * 3 + 1],
227 print_item(list, items[scroll * 3 + 1], status[scroll], 0, TRUE);
244 print_item(list, items[(scrol
111 dialog_checklist(const char *title, const char *prompt, int height, int width, int list_height, int item_no, const char *const *items) argument
[all...]

Completed in 340 milliseconds

1234567891011>>